3
votes
3answers
2k views
How do I make Powershell run a batch file and then stay open?
For example; with the old command prompt it would be:
cmd.exe /k mybatchfile.bat
Thanks.
John.
…
4
votes
How do I make Powershell run a batch file and then stay open?
Thanks, Matt, that's just the job. It also needs you to specify the directory of the batch file so the exact conversion is:
powershell.exe -noexit .\mybatchfile.bat
…
