vote up 2 vote down star

I'm sure this must be possible, but I can't find out how to do it.

Any clues?

flag

40% accept rate

5 Answers

vote up 4 vote down check

You have a few options:

  • Powershell looks for executables in your path, just as cmd.exe does. So you can just type explorer on the powershell prompt. Using this method, you can also pass cmd-line arguments (see http://support.microsoft.com/kb/314853)
  • The Invoke-Item cmdlet provides a way to run an executable file or to open a file (or set of files) from within Windows PowerShell. Alias: ii
  • use system.diagnostics.process

Examples:

PS C:\> explorer
PS C:\> explorer .
PS C:\> explorer /n
PS C:\> Invoke-Item c:\windows\explorer.exe
PS C:\> ii c:\windows\explorer.exe
PS C:\> [diagnostics.process]::start("explorer.exe")

link|flag
vote up 2 vote down
$startinfo = new-object System.Diagnostics.ProcessStartInfo 
$startinfo.FileName = "explorer.exe"
$startinfo.WorkingDirectory = 'D:\foldername'

[System.Diagnostics.Process]::Start($startinfo)

Hope this helps
link|flag
I don't know why this is getting voted down -- I can see not voting it up for the lack of elegance, but it's still a good (though wordy) answer :) You get my UP. – slipsec Nov 26 '08 at 16:52
I agree. It's a lot more code, but it allows some flexibility. – Mike Shepard Nov 28 '08 at 6:23
vote up 3 vote down

Just use the invoke-item cmdlet. For example, if you want to open a explorer window on the current directory you can do:

invoke-item .
link|flag
vote up 3 vote down
explorer .
link|flag
vote up 6 vote down

ii .

Is one of the most common things I type at the PS command line.

link|flag
It's funny that nobody answered this most simple answer but you. :) – halr9000 Nov 29 '08 at 15:57
I'm a very simple person. – EBGreen Dec 1 '08 at 23:12

Your Answer

Get an OpenID
or

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