Hey,
Did anyone has a chance to work with PShell background jobs with Azure resources?
I am trying to initiate custom script extension on the VMs with Start-Job function. It doesnt give me error message, but it finishes in few seconds. If I do without start-job, everything is running fine.
The code line I am having problem:
Start-Job -ScriptBlock {RemoveCustomExt $VM.Name $Resource $VM.Location} -Name $VM.Name
RemoveCustomExt is a function and Start-Job is in ForEach loop.
Any help is much appreciated.
Thanks,
Marty