Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Facebook Twitter Instagram
Tech News Today
  • Hardware
    • Motherboards
    • CPUs
    • Graphic Cards
    • RAM
    • SSDs
    • Computer Cases
    • Monitors
    • Peripherals
    • Power Supply Unit
    • PC Builds
    • Computer Tips
  • Software
  • Operating System
    • Windows
    • Mac
    • Linux
  • Gaming
  • Mobile
  • Console
  • More
    • Internet
    • Networking
    • Security
    • Buyer’s Guide
    • Gadgets
    • Laptops
    • Reviews
    • How To
    • News
Tech News Today
Home»Windows»How To Install Software Without Admin Rights

How To Install Software Without Admin Rights

nishantBy nishantNovember 18, 2022
how-to-install-software-without-admin-rights
how-to-install-software-without-admin-rights

User Access Control (UAC) is a critical security feature on Windows that protects the system from malicious software and viruses. When you attempt to install new software or make any significant changes to the system configuration, UAC will prompt you to confirm for assigning the admin rights.

However, there are some workarounds that users can use to avoid the UAC elevation prompts. We will discuss these escapes in detail in today’s article and suggest how you can install software without Admin rights. 

Table of Contents

  • Ways to Install Software Without Admin Rights
    • Install Application from Windows Store 
    • Enable the Built-in Administrator Accounts
    • Creating a Batch File 
    • Disable UAC
    • Install Software in Sandbox Mode
    • Modify SAM file

Ways to Install Software Without Admin Rights

For a normal user, Windows will provide a standard user access token if they need administrative access to perform a task. Such tokens are temporary in nature and will be needed each time you need admin rights (For instance, while installing software). 

You can enable the Administrator account to get away with this access token requirement. This will grant you the Full administrator access token, giving you full control over the system without getting the UAC prompts. There are other methods as well that are available for installing software without Admin Rights. 

Note: Bypassing the UAC prompts is not advised, as it can cause harm to your system by letting software from unknown sources make changes to your system.

Install Application from Windows Store 

Microsoft Store has a decent amount of apps in its library for you to install. If you find a relevant application in the store, you can install it without any requirement of administrative rights. Since the apps in the Microsoft store are certified by Microsoft, they are quite safe to install too. 

Microsoft Store 1

Enable the Built-in Administrator Accounts

As already discussed, Windows operating system has an admin account that lets the user have elevated privileges and gain full control over the system. If you enable the Administrator accounts, you can install the software without the UAC prompt.

Here’s how to do it. 

  1. Press the Windows key + R to open the Run.
  2. Type cmd and press Ctrl + Shift + Enter to open the command prompt with elevated privileges.
  3. Now, enter this command to enable the admin accounts.
    Net user Administrator /active:yesNet user active command
  4. Now, try installing the software. 
Note: Enabling the Administrator account can seriously threaten the system. It is advised to use this very account very less often and disable it once the job is done.

To disable the administrator account, use this command.
Net user Administrator /active:nodisable netuser command

You can do the same using Windows PowerShell. Just use this command and hit enter on PowerShell. 
Enable-LocalUser -Name “Administrator”enable local user command

To disable it, 
Disable-LocalUser -Name “Administrator”disable local usr command

Creating a Batch File 

Invoker, a penetration-testing utility, is the most convenient way to bypass the UAC. This makes the software installation possible without any administrator access. You can use the invoker as a batch file to run when the installation file is launched. 

  1. Create a new folder anywhere and copy the desired software’s installation file (.exe) to the folder. 
  2. Open the folder and create a new text file in the location.create a new text doc
  3. Open the .txt file and copy this command to the notepad. 
    set _COMPAT_LAYER=RunAsInvoker
    Start <Software_name>Invoker for VLC
  4. In the Software_name field, enter the exact software name that you have copied to the folder. 
  5. Go to the File tab and select Save as.
  6. Save the file under the name BypassUAC.bat and ensure the Save as type is on All Files.
    Save .bat file
  7. Finally, open the installation file; you will not see any UAC prompts now. 

Disable UAC

UAC is responsible for notifying the users when they try to install something on their computer or make any modification to the system. You can reconfigure the UAC settings not to notify you while you are trying to install any software over your Windows device.

  1. Press Windows Key + R, type control, and hit enter.
  2. Go to Security and Maintenance.system and security settings
  3. Click on Change User Account Control Settings. Change UAC settings
  4. Drag the Slider to Never Notify.Never notify UAC control settings
  5. Click on OK to save changes. 

Install Software in Sandbox Mode

Windows sandbox is a desktop environment that lets you run different software on it without exposing the main Operating system to the risks associated with such applications. On Sandbox, you don’t need Administrator rights to install any software. 

Here’s how to use this Virtual Machine to install software without any UAC prompts. 

  1.  Press Windows Key + R, type control, and hit enter. 
  2. Search for Turn Windows features on or off and open it. 
  3. In the list of features, search for Windows Sandbox and check on it. enable windows sandbox
  4. Click on OK to enable the feature. 
  5. Click on the Start button.
  6. Search for Windows Sandbox and open it. The desktop environment will launch. 
     Windows sandbox
  7. Copy the executable file of the desired into the Sandbox Window.
  8. Finally, open the file and install the software. You won’t get any UAC prompts during the installation. However, this installation will only be a temporary one. Once you close the VM, the installed files will be gone as well.

Note: Sandbox is only available on Pro and Enterprise Windows Versions.

Modify SAM file

Windows OS records all the usernames and passwords registered in the system in a database known as the SAM file. As a last resort, users can also modify this file, clear the credentials, and install their desired software without requiring admin rights. 

You need a Bootable Linux USB drive to perform this step. We’ve used Linux Mint as a reference here. However, the procedure is the same across all Linux distributions.

Note: This method will not work if the system volume on Windows is encrypted.

  1. Connect the Bootable media in your Windows device and change the Boot priority from the BIOS. 
  2. Boot from the USB media and enter the Linux environment. 
  3. Open the File explorer, and change the location path to computer:///.You will now see the system volume where Windows is installed. 
  4. Right-click on a black space of the directory and select Open in terminal
  5. Execute this command to install chntpw. It is a password reset utility on Linux. 
     sudo apt-get install chntpwsudo apt install chntpw
  6. Use this command to get the list of Windows users from the SAM file.
    sudo chntpw -l SAMsudo chntpw -l SAM
  7. Now, use this command to run the password utility on the SAM file. Enter the desired username in the <User_Name> field. 
     chntpw -u <User_Name> SAMchntpw -u Windows SAM
  8. Type 1 when you are prompted. This will remove any password set by the respective Windows user. 
  9.  Enter q to exit from the terminal and y to save the changes you made to the SAM file. 
  10.  Finally, restart the computer and boot into the Windows OS. 
  11. Log in to the respective Windows user. You will find that the password set by the user has been cleared out. 
  12. You may now install any software without the need for admin rights. 

Disclaimer: This method is only recommended for educational purposes for users who want to install software without requiring administrative privileges. It is not to be used with malevolent intent.

how-to
nishant

Nishant is an enthusiast who loves writing about technology. He also is heavily invested in keeping himself updated about the latest happenings in the tech world. At Tech News Today, he covers Operating Systems, how-to-topics, and Fixes.

Related Posts

how to delete win backup files

How to Delete Backup Files on Windows

January 29, 2023
how to reset password on hp laptop

How to Reset Password on HP Laptop

January 29, 2023
Reset BIOS password

4 Ways to Reset BIOS Password

January 28, 2023
how to make windows 11 look like windows 10

How to Make Windows 11 Look Like Windows 10

January 25, 2023
how to find hidden folder in laptop

How to Find Hidden Folder in Laptop

January 24, 2023
mouse not showing in chrome

Mouse Not Showing in Chrome? Here’s How to Fix It

January 25, 2023
Add A Comment

Leave A Reply Cancel Reply

Latest Posts
how long does a cmos battery last

How Long Does a CMOS Battery Last

January 25, 2023
thunderbolt vs usb c

Thunderbolt Vs USB C: What’s the Difference

January 25, 2023
how to find hidden folder in laptop

How to Find Hidden Folder in Laptop

January 24, 2023
You may also like
how-to-connect-headphones-to-tv

5 Ways to Connect Headphones to TV

January 29, 2023
connect-airpods-to-samsung-tv

How to Connect AirPods to Samsung TV? (Step-by-Step Guide)

January 29, 2023
AIO Pump Not Working

AIO Pump Not Working? Here’s How to Fix It

January 29, 2023
Recommended
Cookie Clicker Garden Guide

Cookie Clicker Garden Guide to Unlocking Every Seed

September 26, 2021
monitor no signal

Computer Turns On But Monitor Says No Signal (9 Ways To Fix)

November 10, 2022
Facebook Twitter Pinterest
  • Home
  • About Us
  • Our Team
  • Editorial Guidelines
  • Privacy Policy
  • Affiliate Disclosure
© 2023 TechNewsToday.

Type above and press Enter to search. Press Esc to cancel.