vote up 3 vote down star

For example; with the old command prompt it would be:

cmd.exe /k mybatchfile.bat

Thanks.

John.

flag

3 Answers

vote up 9 vote down check

Drop into DOS (or indeed PowerShell itself) and type this:

powershell -?

You'll see that powershell.exe has a "-noexit" parameter which tells it not to exit after executing a "startup command".

link|flag
vote up 4 vote down

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

John.

link|flag
vote up -1 vote down

how do I execute a batch file on remote machines using powershell. I want to update the windows GAC (assembly) folder with some assemblies on multiple machines. I can update the GAC using a batch file but I want to run this batch file on all the machines.

Thanks,

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.