up vote 6 down vote favorite
share [g+] share [fb]

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

cmd.exe /k mybatchfile.bat

Thanks.

John.

link|improve this question

feedback

2 Answers

up vote 14 down vote accepted

Drop into a cmd instance (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|improve this answer
feedback

I am sure that you already figure this out but I just post it

$CreateDate = (Get-Date -format 'yyyy-MM-dd hh-mm-ss')

$RemoteServerName ="server name"
$process = [WMICLASS]"\\$RemoteServerName\ROOT\CIMV2:win32_process"  
$result = $process.Create("C:\path to a script\test.bat") 
$result | out-file -file "C:\some path \Log-$CreatedDate.txt"

John.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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