Exit after running a batch file
Hi all,
I've managed to run Delprof through PDQ Deploy however the Run Time goes on until Delprof has finished, which can be a long time.
Is there any way I can exit out of the deployment and move on to the next machine once it's started off Delprof.exe?
the contents of the batch file are as follows.
start /wait C:\IT\delprof2.exe /Q /i
I've also tried.
C:\IT\delprof2.exe /Q /i
Both work, however PDQ Deploy will wait til they are finished and then move on.
Anyone know of a solution for this?
Much appreciated.
Kind regards,
Comments
start "" C:\IT\delprof2.exe /Q /I
Without the /wait it won't wait for it to finish. It will move to the next line in the package. If nothing is coded past that then it will stop the deployment.