Two ways to launch a Windows Command Prompt as user SYSTEM

Home > Blogs > Windows 8 > Two ways to launch a Windows Command Prompt as user SYSTEM

Two ways to launch a Windows Command Prompt as user SYSTEM

1 5 Mark Jacob
Added by August 12, 2015

This blog explores two ways to launch a command prompt as user SYSTEM in Windows. It applies to Windows 7/8 and Server 2008/2012 (Windows 10 has a slightly different method). That is not to say you can’t do this in previous versions of Windows, but in earlier versions it was much easier to accomplish what you are about to see.

Why would I need this? you may ask. “I am already an administrator and I have all the power.” Dismayingly this is not true – the SYSTEM account is even more powerful than the Administrator account. It is much like ROOT in Linux. You have enough power to actually damage the OS, which also means one should take great care when exercising this power. Typing commands that may cause you to drop out of your support plan with Microsoft is not a career-extending activity, so I suggest trying this out in a test environment where collateral damage is minimized. Warning aside, with this power you can debug scripts that aren’t functioning correctly, stop unstoppable services (sound like a Superman reference), and many other tasks which are not ordinarily available to the Administrator account. Let’s begin.

The first method requires the installation of PsExec, which is a component of the PsTools download provided by Mark Russinovich PsExec v2.11. Once you have downloaded this and extracted it to a folder, you can proceed to the next step. Launch CMD as an administrator and navigate to the folder where you unzipped PsTools.zip. If you want to take a look at your options, type psexec /?. The output is shown in figure 1.

001-launch-Windows-Command-Prompt-as-SYSTEM

Figure 1

Type the following command:

psexec –i –s CMD (not case-sensitive)

This will open a new command prompt window which doesn’t look all that impressive on the surface. However, note which user account holds sway within this window (Figure 2 below):

002-launch-Windows-Command-Prompt-as-SYSTEM

Figure 2

Notice that you now can type commands as if you are SYSTEM! Feel the power! For example, using the sc command, check for a service that is listed as UNSTOPPABLE and disable it (it will likely still not allow you to stop it directly, but disabling it and rebooting accomplishes the same task). My current box has no services running that are unstoppable, but figure 3 demonstrates where you to look to see it.

003-STOPPABLE-launch-Windows-Command-Prompt-as-SYSTEM

Figure 3

The second method may be to your liking as well. It involves creating a test service (to be used just for the purpose of creating the CMD window with the SYSTEM credentials) and then starting this service. Create the service with this command:

sc create cmdsvc binpath= “cmd /K start” type= own type= interact

The word after ‘create’ is what you have named your new service – feel free to give it any (unused) name you desire. In this command, the service name is cmdsvc.

Now to start the service: sc start cmdsvc

If you are running Windows 7, this will cause an icon to appear on your taskbar demanding your attention. If you click on it, this window appears:

004-sc-start-cmdsvc-Windows-Command-Prompt-as-SYSTEM

Figure 4

Select ‘View the message’ and your desktop briefly disappears and the screen is blank except for your new command prompt window. Once again, verify your status with the whoami command and see that you are once again wielding the awesome power of the SYSTEM account.

If you leave this window up for several minutes, you will end up getting logged off. To prevent this, do what you need to do in this window and then exit to get back to your familiar desktop.

If you are running an OS higher than Windows 7, you will NOT see the above message, rather you will see an error message. To complete this same process in that situation involves a registry modification. Proceed with caution if you are not one to regularly change the registry as system damage can occur. Otherwise, take a deep breath a perform the following. Type regedit or regedt32 to get to the registry. then navigate to this location:

HKLM\System\CurrentControlSet\Control\Windows

Once there, look for DWORD titled NoInteractiveServices, and change its value from ‘1’ to ‘0’ and then close the registry.

Now to start the service you just enabled, which is the Interactive Detection Service.

sc start ui0detect

Now you can return to the command above with which you created your sample service and start it, because now it will work.

sc start cmdsvc

Now that the Interactive Detection Service is running, the behavior will match the behavior I described above for Windows 7.

I once again suggest using this in a test environment or on lab-type computers as serious damage can be done – unintentionally, of course – when you are typing with SYSTEM authority.

If you have any comments or questions, please feel free to post them….

Until next time.

Mark Jacob
Cisco and CompTIA Network + Instructor – Interface Technical Training
Phoenix, AZ

Videos You May Like

A Simple Introduction to Cisco CML2

0 3877 0

Mark Jacob, Cisco Instructor, presents an introduction to Cisco Modeling Labs 2.0 or CML2.0, an upgrade to Cisco’s VIRL Personal Edition. Mark demonstrates Terminal Emulator access to console, as well as console access from within the CML2.0 product. Hello, I’m Mark Jacob, a Cisco Instructor and Network Instructor at Interface Technical Training. I’ve been using … Continue reading A Simple Introduction to Cisco CML2

Creating Dynamic DNS in Network Environments

0 641 1

This content is from our CompTIA Network + Video Certification Training Course. Start training today! In this video, CompTIA Network + instructor Rick Trader teaches how to create Dynamic DNS zones in Network Environments. Video Transcription: Now that we’ve installed DNS, we’ve created our DNS zones, the next step is now, how do we produce those … Continue reading Creating Dynamic DNS in Network Environments

Cable Testers and How to Use them in Network Environments

0 724 1

This content is from our CompTIA Network + Video Certification Training Course. Start training today! In this video, CompTIA Network + instructor Rick Trader demonstrates how to use cable testers in network environments. Let’s look at some tools that we can use to test our different cables in our environment. Cable Testers Properly Wired Connectivity … Continue reading Cable Testers and How to Use them in Network Environments

Write a Comment

See what people are saying...

  1. Pingback: How to launch a Command Prompt as SYSTEM In Windows 10

Share your thoughts...

Please fill out the comment form below to post a reply.