[파워쉘]veeam 백업결과 텔레그램 푸시 스크립트
# Script/Powershell2020. 3. 2. 13:57[파워쉘]veeam 백업결과 텔레그램 푸시 스크립트

Add-PSSnapin VeeamPSSnapin $vmjobname = "test" $vmjob = get-vbrjob -name $vmjobname while ($vmjob.isrunning -eq "true") { start-sleep -s 60 } $vmresult = $vmjob.findlastsession().result [Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12 $token = "######################" $chatId = "#####################" $message = $vmjobname + " 백업결과 " + $vmresult Invoke-RestMethod -..

veeam 화면짤림현상 패치(레지스트리 수정)
# Virtualation/Private Cloud2017. 4. 28. 15:37veeam 화면짤림현상 패치(레지스트리 수정)

Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\GRE_Initialize] "DisableRemoteFontBootCache"=dword:00000000 "ServicingStackModifiedFonts"=dword:00000002 "GUIFont.Facename"="Tahoma" "GUIFont.Height"=dword:00000008 "GUIFont.CharSet"=dword:00000080 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\GRE_Initialize\LargeFont] "FIXEDF..

veeam 백업 호스트 변경시 조치 방법
# Virtualation/Private Cloud2015. 12. 3. 10:41veeam 백업 호스트 변경시 조치 방법

기존에 쓰던 veeam서버를 클론뜬후 호스트네임 변경을 하였더니 구동이 되지 않아 구글링해보니 아래와 같이 레지스터를 수정해야 구동이 되었습니다. Backup and Recovery Server 7 R2 1. Rename the server in the Windows Operating System using the usual method. 3. Change registry items \\HKLM\Software\VeeaM\Veeam Backup and Replication\SqlServerName \\HKLM\Software\VeeaM\Veeam Backup Catalog\CatalogSharedFolderPath \\HKLM\Software\VeeaM\Veeam Backup Catalog\SqlServ..

image