Hi,
Did anyone managed to use the above script?
I am finding some troubles running this script, i have changed the job name and the backup exec file path but when i run the backup then backup complete fine but thats it, no backup exec job running.
i have modified the script as follow
Code: Select all
Add-PSSnapin VeeamPSSnapIn
$jobName = "DMZ-test"
if ((Get-VBRJob | where {$_.Name -eq $jobName}).GetLastResult() -eq "Success")
{
$latestOib = Get-VBRBackup | where {$_.JobName -eq $jobName} | Get-VBRRestorePoint | sort CreationTime -Descending | select -First 1
$latestOib
$storage = $latestOib.GetStorage()
$storage.FilePath
$file = get-item $storage.FilePath
if ($file.Attributes -band ([System.IO.FileAttributes]::Archive))
{
"d:\Program Files\Symantec\Backup Exec\bemcmd" -o1 -jdmztest $storage.FilePath
$file.Attributes = ($file.Attributes -bxor [System.IO.FileAttributes]::Archive)
}
}
this script was saved as powershell .ps1
i have tested the following line from the command line and the backup exec job starts fine
"d:\Program Files\Symantec\Backup Exec\bemcmd" -o1 -jdmztest
but if i open the Windows Powershell Module window and type the full path to the script file then i have the following error
"
You must provide a value expression on the right-hand side of the '-' operator.
At D:\copytotape.ps1:18 char:58
+ "d:\Program Files\Symantec\Backup Exec\bemcmd" - <<<< o1 -jdmztest $storage.FilePath
+ CategoryInfo : ParserError: (:) [], ParseException
+ FullyQualifiedErrorId : ExpectedValueExpression
"
i don't understand why it is complaining about the arguments whereas if i run it through the DOS CMD then it is fine.
can anyone help?
Thanks