Start-Job with Azure resources

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

Jobs runs under, essentially, a new PowerShell thread. I wonder if it’s having some problems with context - perhaps authentication, perhaps actually finding the function?