How to Install Software Without Admin Privileges on Windows

This is a request we have had a few times now, due to people wanting to install software, drivers and actions that typically only administrator accounts have. These steps are not guaranteed to work, nor are they meant for any nefarious purposes.

Method 1: Install Portable Versions

Some software providers offer portable versions that don’t require installation. These versions can be run directly without admin rights.

  1. Visit the official website of the software you want.
  2. Look for a “portable” version (e.g., PortableApps.com).
  3. Download and extract the portable software to a folder where you have permissions (like Desktop or Documents).
  4. Run the executable file (.exe) to start using the software.

Method 2: Install in User Profile Folder

Some applications allow installation in user-specific directories, bypassing the need for admin rights.

  1. Download the installer (.exe or .msi file).
  2. Run the installer and check if it allows selecting an installation path.
  3. Choose a location inside your user profile, such as:
    • C:\Users\YourUsername\AppData\Local
    • C:\Users\YourUsername\Documents
  4. Proceed with installation and try running the program.

Method 3: Use the Windows Command Prompt

For some installers, you can bypass admin prompts using the runas command.

  1. Press Win + R, type cmd, and press Enter.
  2. Navigate to the installer’s location using the cd command. Example:

    cd C:\Users\YourUsername\Downloads

Try launching the installer with:

runas /user:YourUsername installer.exe

(Replace YourUsername with your actual username and installer.exe with the software’s name.)

Method 4: Extract Installer Files Manually

Some installers are self-extracting archives and can be extracted manually.

  1. Download 7-Zip or WinRAR (portable versions).
  2. Right-click on the installer file and choose “Extract Here” (if supported).
  3. Look for the main executable file inside the extracted folder.
  4. Run the application directly without installation.

Method 5: Use a Virtual Machine or Sandbox

If you have restrictions, running a portable virtual machine (VM) or sandbox environment might help.

  1. Download VirtualBox Portable or Windows Sandbox (if available).
  2. Set up a temporary Windows environment inside the VM.
  3. Install software inside the virtual machine without affecting the main system.

Method 6: Ask for Temporary Admin Access

If you need a specific application for work or school:

  1. Contact your IT administrator and explain why you need it.
  2. Some organizations provide temporary elevation via Admin Approval Mode.
  3. If it’s a personal device, consider creating another admin account (if allowed).