The instructions look pretty straight forward where I just have to add a couple of lines to my config.ini file to point to my pre and post scripts so I updated my config.ini to this:
Config.ini
[installControl]
installedVersion=6.6.02-rel
buildNumber=300004
[configuration]
preExecuteScript=C:\Scripts\Backup-StartScript.bat
postExecuteScript=C\:Scripts\Backup-EndScript.bat
And my backup scripts are this:
[installControl]
installedVersion=6.6.02-rel
buildNumber=300004
[configuration]
preExecuteScript=C:\Scripts\Backup-StartScript.bat
postExecuteScript=C\:Scripts\Backup-EndScript.bat
And my backup scripts are this:
Backup-StartScript.bat
powershell.exe Stop-VM -Name K1000
powershell.exe Stop-VM -Name K2000
Backup-EndScript.bat
powershell.exe Start-VM -Name K1000
powershell.exe Start-VM -Name K2000
powershell.exe Stop-VM -Name K1000
powershell.exe Stop-VM -Name K2000
Backup-EndScript.bat
powershell.exe Start-VM -Name K1000
powershell.exe Start-VM -Name K2000
But nothing appears to be running. I even looked in the bbtrace.txt file and there does not appear to be any indication that these scripts are being called.
Is anyone using pre and post backup scripts with barracuda? The only reason I am not turning the VMs on and...