$postscript = New-VBRjobscriptOptions -PostScriptEnabled -PostCommand "Powershell.exe -File C:\*****"
$job = Get-VBRJob
When I print the value of postscript all of the values are correct. However, I cannot figure out how to apply this setting to the backup jobs I though it could be set by using the Set-VBRJobOptions command however I get the following message when I try this: Set-VBRJobOptions -Job $job -Options $postscript
Set-VBRJobOptions : Cannot bind parameter 'Options'. Cannot convert the
"Veeam.Backup.PowerShell.Infos.VBRJobScriptOptions" value of type "Veeam.Backup.PowerShell.Infos.VBRJobScriptOptions"
to type "Veeam.Backup.Model.CJobOptions".
Do i need to convert this object to a CJobOptions object? If so how can i do that?
Has anyone had any better luck setting a post job script? Is there a different set of commands I can use to set these parameters? from the PowerShell reference there doesn't appear to be a set command for the VBRJobScriptOptions object....

http://helpcenter.veeam.com/backup/powe ... tions.html
Any help would be appreciated.