Right now I'm using the Windows console (cmd.exe) for some easy tasks (as checking my ip configuration or running some applications). But now I heard that there is PowerShell which actually is way more powerful while also keeping the old commands sothat there is no re-learning necessary.

My questions:

  1. Does powershell support all commands as cmd.exe does?
  2. How do I quickly start PowerShell? (something like Windows-Key + R -> cmd)
  3. Is there any case where I would favor cmd over powershell?
link|improve this question
feedback

migrated from stackoverflow.com Dec 21 '11 at 19:37

This question came from our site for professional and enthusiast programmers.

2 Answers

1) Yes, you can mostly use all the external commands that you would use in cmd much the same way in Powershell and Powershell has equivalents for cmd internal commands like dir. And of course Powershell comes with whole lot of cmdlets and the power of the .Net framework.

2) If you are on Windows 7, pin it to your taskbar and use WinKey + Position to start. Or just press Winkey, type powershell ( mostly it is even shorter) in the start menu and hit enter. Winkey + R -> powershell would work as well.

3) You might have to prefer cmd when running some batch / cmd files which may not run fine in Powershell ( but I would say, better write a powershell script to do the same.). Since I have started using powershell, I have never had the need to use cmd. And of course, you can always do cmd /c command from Powershell.

link|improve this answer
2) press Winkey, type ise to quickly start the powershell_ise. – jon Z Dec 21 '11 at 18:08
feedback

A notable absent command is mklink, which is an internal command.

Other internal CMD commands have either aliases or CMDLETS.

For a replacement to mklink, I'd download the Powershell Community Extensions. It provides CMDLets to replace mklink.

Also look at the answer here.

http://stackoverflow.com/questions/894430/powershell-hard-and-soft-links.

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.