Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Command prompt on Windows 10 Creators update

Command prompt on Windows 10 Creators update

Scheduled Pinned Locked Moved The Lounge
windows-adminquestionannouncement
22 Posts 13 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • R Richard Lund

    Mine doesn't. I installed the Creators Update yesterday and my right-click menu still has the "Command Prompt" and "Command Prompt (Admin)" the same as before. Maybe it's different for a fresh install versus an upgrade? Rich.

    M Offline
    M Offline
    monglung
    wrote on last edited by
    #5

    Same here.... Same Command Prompt and Command Prompt(Admin)...

    T 1 Reply Last reply
    0
    • M monglung

      Same here.... Same Command Prompt and Command Prompt(Admin)...

      T Offline
      T Offline
      TheGreatAndPowerfulOz
      wrote on last edited by
      #6

      Mine has PowerShell... What version does your system say in System (right-click Start, choose "System")? If it's not Version 1703 and OS Build 15063, then it's not the Creator's Update.

      #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

      M 1 Reply Last reply
      0
      • H H Brydon

        For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

        I'm retired. There's a nap for that... - Harvey

        T Offline
        T Offline
        TheGreatAndPowerfulOz
        wrote on last edited by
        #7

        Command Prompt is still there and available. It's being discouraged in favor of Powershell. Powershell has all the same capabilities as Command Prompt and lots of new functionality, too. Provecho!

        #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

        1 Reply Last reply
        0
        • H H Brydon

          For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

          I'm retired. There's a nap for that... - Harvey

          J Offline
          J Offline
          Joan M
          wrote on last edited by
          #8

          Just tried it by myself (finished installing the creators update now) and pressing Win+R and writing CMD launches the normal command prompt. Hope this helps.

          www.robotecnik.com[^] - robots, CNC and PLC programming

          1 Reply Last reply
          0
          • S Super Lloyd

            Both still exists. You can also execute normal dos command in powershell btw. The "significant" difference is, when you right click on starts menu it offers powershell instead of command prompt.

            A new .NET Serializer All in one Menu-Ribbon Bar Taking over the world since 1371!

            P Offline
            P Offline
            Peter Adam
            wrote on last edited by
            #9

            Start settings, search for PowerShell. Personalization->Taskbar: there is a switch: Replace Command Prompt ....

            1 Reply Last reply
            0
            • H H Brydon

              For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

              I'm retired. There's a nap for that... - Harvey

              P Offline
              P Offline
              Peter Adam
              wrote on last edited by
              #10

              Windows 10 Creators Update: What’s new in Bash/WSL & Windows Console[^] from yesterday's CodeProject newsletter

              1 Reply Last reply
              0
              • H H Brydon

                For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

                I'm retired. There's a nap for that... - Harvey

                A Offline
                A Offline
                Afzaal Ahmad Zeeshan
                wrote on last edited by
                #11

                Whatever happens, you will still be able to run all of your commands, batch files etc. Microsoft is not crazy enough to remove one of the most important pieces from the OS — I use cmd, and I have never used PowerShell. Plus, if you pay attention to what was being done previously, you will see that Microsoft is investing more in the terminals, and less on PowerShell (comparatively). They introduced Bash on Windows as well, if they were going to force everyone to use PowerShell, then they would have never done that. Also, PowerShell is capable of running managed scripts, as well as some other native scripts — either by the use of alias etc, but that is possible. For example, execute the following commands to see for yourself!

                C:\Users\Username\Desktop> echo echo Hi > script.bat
                C:\Users\Username\Desktop> powershell
                Windows PowerShell Copyright (C) 2016 Microsoft Corporation. All rights reserved.
                PS C:\Users\Username\Desktop> .\script.bat

                C:\Users\afzaa\Desktop>echo Hi Hi

                This shows, that you can still execute the scripts that you write in your batch — the commands need to be there, or recognizable by the Windows. Nonetheless, it would be a very stupid move to remove cmd, many IT, developer and noob guys use it; even I use it.

                The shit I complain about It's like there ain't a cloud in the sky and it's raining out - Eminem ~! Firewall !~

                1 Reply Last reply
                0
                • H H Brydon

                  For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

                  I'm retired. There's a nap for that... - Harvey

                  D Offline
                  D Offline
                  David Crow
                  wrote on last edited by
                  #12

                  Whether it stays or goes, this will only affect you if you actually apply the update. If you stay on the version you are currently using, you'll be fine.

                  "One man's wage rise is another man's price increase." - Harold Wilson

                  "Fireproof doesn't mean the fire will never come. It means when the fire comes that you will be able to withstand it." - Michael Simmons

                  "You can easily judge the character of a man by how he treats those who can do nothing for him." - James D. Miles

                  1 Reply Last reply
                  0
                  • H H Brydon

                    For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

                    I'm retired. There's a nap for that... - Harvey

                    L Offline
                    L Offline
                    Lost User
                    wrote on last edited by
                    #13

                    They have also made it the default for the Terminal Window in VS Code.

                    1 Reply Last reply
                    0
                    • H H Brydon

                      For those of you who have stepped up to the Creators update... My wife just went to a seminar on W10 and one of the bullet points on the creators update is that the command window will go away and is replaced with PowerShell. Is this true? I have a lot of effort invested in batch files, including how I backup my machine. If the command window goes away, can I still run commands or batch files interactively or with taskmgr etc? Inquiring minds want to know.

                      I'm retired. There's a nap for that... - Harvey

                      T Offline
                      T Offline
                      Tim Deveaux
                      wrote on last edited by
                      #14

                      Now that's :cool: - just noticed you can open powershell from the File Explorer | File menu - sort of a 'drop to dos' - in the current open folder. Always wanted that. :thumbsup:

                      T D 2 Replies Last reply
                      0
                      • T TheGreatAndPowerfulOz

                        Mine has PowerShell... What version does your system say in System (right-click Start, choose "System")? If it's not Version 1703 and OS Build 15063, then it's not the Creator's Update.

                        #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                        M Offline
                        M Offline
                        monglung
                        wrote on last edited by
                        #15

                        Version 1703 OS Build 15063.138

                        T 1 Reply Last reply
                        0
                        • M monglung

                          Version 1703 OS Build 15063.138

                          T Offline
                          T Offline
                          TheGreatAndPowerfulOz
                          wrote on last edited by
                          #16

                          Yup, CU with some additional updates (.138) Maybe those additional updates put the command prompt back.

                          #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                          1 Reply Last reply
                          0
                          • T Tim Deveaux

                            Now that's :cool: - just noticed you can open powershell from the File Explorer | File menu - sort of a 'drop to dos' - in the current open folder. Always wanted that. :thumbsup:

                            T Offline
                            T Offline
                            TheGreatAndPowerfulOz
                            wrote on last edited by
                            #17

                            Shift-right-click on the directory will also display "open powershell from here" :-D

                            #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                            T 1 Reply Last reply
                            0
                            • T TheGreatAndPowerfulOz

                              Shift-right-click on the directory will also display "open powershell from here" :-D

                              #SupportHeForShe Government can give you nothing but what it takes from somebody else. A government big enough to give you everything you want is big enough to take everything you've got, including your freedom.-Ezra Taft Benson You must accept 1 of 2 basic premises: Either we are alone in the universe or we are not alone. Either way, the implications are staggering!-Wernher von Braun

                              T Offline
                              T Offline
                              Tim Deveaux
                              wrote on last edited by
                              #18

                              Also :cool: :thumbsup:

                              1 Reply Last reply
                              0
                              • T Tim Deveaux

                                Now that's :cool: - just noticed you can open powershell from the File Explorer | File menu - sort of a 'drop to dos' - in the current open folder. Always wanted that. :thumbsup:

                                D Offline
                                D Offline
                                David ONeil
                                wrote on last edited by
                                #19

                                You can also type 'powershell' in the explorer bar, and it will open a session in the current folder.

                                Sudden Sun Death Syndrome (SSDS) is a very real concern which we should be raising awareness of. 156 billion suns die every year before they're just 1 billion years old. While the military are doing their part, it simply isn't enough to make the amount of nukes needed to save those poor stars. - TWI2T3D (Reddit)

                                T 1 Reply Last reply
                                0
                                • D David ONeil

                                  You can also type 'powershell' in the explorer bar, and it will open a session in the current folder.

                                  Sudden Sun Death Syndrome (SSDS) is a very real concern which we should be raising awareness of. 156 billion suns die every year before they're just 1 billion years old. While the military are doing their part, it simply isn't enough to make the amount of nukes needed to save those poor stars. - TWI2T3D (Reddit)

                                  T Offline
                                  T Offline
                                  Tim Deveaux
                                  wrote on last edited by
                                  #20

                                  Neat - cmd works too! Golly gee whiz! :)

                                  D 1 Reply Last reply
                                  0
                                  • T Tim Deveaux

                                    Neat - cmd works too! Golly gee whiz! :)

                                    D Offline
                                    D Offline
                                    David ONeil
                                    wrote on last edited by
                                    #21

                                    :thumbsup: :)

                                    Sudden Sun Death Syndrome (SSDS) is a very real concern which we should be raising awareness of. 156 billion suns die every year before they're just 1 billion years old. While the military are doing their part, it simply isn't enough to make the amount of nukes needed to save those poor stars. - TWI2T3D (Reddit)

                                    T 1 Reply Last reply
                                    0
                                    • D David ONeil

                                      :thumbsup: :)

                                      Sudden Sun Death Syndrome (SSDS) is a very real concern which we should be raising awareness of. 156 billion suns die every year before they're just 1 billion years old. While the military are doing their part, it simply isn't enough to make the amount of nukes needed to save those poor stars. - TWI2T3D (Reddit)

                                      T Offline
                                      T Offline
                                      Tim Deveaux
                                      wrote on last edited by
                                      #22

                                      ...and this just in from the 'Geez I Wish I'd Known That' dept: Both work in Win 7 Windows Explorer as well... :doh:

                                      1 Reply Last reply
                                      0
                                      Reply
                                      • Reply as topic
                                      Log in to reply
                                      • Oldest to Newest
                                      • Newest to Oldest
                                      • Most Votes


                                      • Login

                                      • Don't have an account? Register

                                      • Login or register to search.
                                      • First post
                                        Last post
                                      0
                                      • Categories
                                      • Recent
                                      • Tags
                                      • Popular
                                      • World
                                      • Users
                                      • Groups