Invoke PoSH
I was recently integrating Veeam Backups with HP Data Protector for a backup project when I found a great Powershell command that I didn’t know about. Invoke-Command -comp [computername] –scriptblock {script} If you’re familiar with PSExec.exe this is an equivalent powershell command, but if you’re not, this command will allow you to execute something on another machine. Veeam has the ability to call a script when a backup job completes, but I needed a different server to execute that script. ...