HRESULT
Unpause(LONG pauseOptions,
IVixHandle* propertyList,
ICallback* jobDoneCallback,
IJob** unpauseJob);
This function continues execution of a paused virtual machine.
VBScript:
Set job = vm.Pause(0, Nothing, Nothing) ' WaitWithoutResults is just like Wait, except it does not get any properties. err = job.WaitWithoutResults() QuitIfError(err) ' Do something... Set job = vm.Unpause(0, Nothing, Nothing) ' WaitWithoutResults is just like Wait, except it does not get any properties. err = job.WaitWithoutResults() QuitIfError(err)