22

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?

3 Answers 3

21
  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 Win + Position to start. Or just press Winkey, type powershell ( mostly it is even shorter) in the start menu and hit enter. Win + 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.

2
  • 3
    2) press Winkey, type ise to quickly start the powershell_ise.
    – jon Z
    Commented Dec 21, 2011 at 18:08
  • @jonZ I tried that at first and it didn't work. Then I realized I had opened the run window out of natural habit, and that you said "press the Winkey". I keep forgetting they're different, and that you get different results with each.
    – IT Bear
    Commented Jul 8, 2014 at 17:39
8

Also, in Windows 8, 8.1 and 10

  1. Right click the task bar and click properties,
  2. Go to the navigation tab,
  3. The third check box replaces the command prompt option from the right click menu with Powershell.

(Yes I know this is an old post, thought it might be useful)

5

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.

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

1
  • 3
    There may be no cmdlet, but you can do this: start cmd "/C mklink C:\file M:\file" from powershell and it will still work. Commented Apr 24, 2013 at 9:49

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged .