I have one script file that has multiple calls of this code:
Start-Process -NoNewWindow -FilePath $fullExeLocation -ArgumentList $argument
Start-Process -NoNewWindow -FilePath $fullExeLocation -ArgumentList $argument
Start-Process -NoNewWindow -FilePath $fullExeLocation -ArgumentList $argument
Each call of the process has a different location(filepath). I would like to pause between each of the processes for about 30 seconds or so.
How can I do that please?