Remote Control

  • [100% Working] How to Fix "AnyDesk Not Connected to Server" Error
  • Most Common-used Remote Desktop Shortcut Keys You Should Know in 2024
  • 4 Methods for Screen Sharing with Sound
  • [No Root] Control Android from PC in 6 Ways
  • How to Call Someone on Do Not Disturb Mode [Android & iOS]
sider-adv-logo AirDroid Remote Support

Connect Securely Anywhere, Support Everywhere.


Try It Free

[100% Working] How to Install/uninstall Software Using Cmd?

Elsa Updated on Aug 21, 2024 Filed to: Remote Control

The fast-paced technological landscape we are living in makes managing software efficiently a necessity. That's why, there might come a moment when will need to install or uninstall software using the Command Prompt, or Cmd, in Windows. In fact, this method proves to be particularly useful for automating processes, managing remote computers, and handling installations on systems without a GUI. Luckily, it is easy to install software using Cmd in just a few simple steps.

In this guide, we will walk you through the steps to install program with Cmd, as well as to uninstall software the Command Prompt.

install software using cmd

  • Part 1: How to Install/Uninstall Software with Cmd?
  • Part 2: How to Install Software with Cmd on a Remote PC?
  • Part 3: Better Way to Install/Uninstall Software on Remote PC
  • Part 4: FAQs about Installing Software Using Cmd

Part 1. How to Install/Uninstall Software with Cmd?

At first, you might feel intimidated by the task as you might think that it requires deep technological knowledge. However, you can learn to install software using Cmd even when you aren’t tech-savvy. Simply follow the steps that you will find in this section to uninstall and install program with Cmd.

But before we get into the guides, it’s essential to explore the prerequisites that ensure a smooth and efficient process. Before diving into the installation process, make sure that:

  • You have the administrative rights on your device, and.
  • The software installer is available. .

Steps to Install Software Using Cmd

  1. Step 1.Open Command Prompt with administrative rights – To do that, type Command Prompt on the search bar, and click the Run as administrator option. On the popup window, click Yes to launch Command Prompt.
  2. Open command prompt

  3. Step 2.Type cd c:\users\username\downloads, or the full path to the installer that is already accessible on the device.
  4. type command to find installer on PC

  5. Step 3.Run the installer. If it is a .exe installer, type installer.exe /install. If it is a .msi installer, type: msiexec /i installer.msi. Where you see “installer” type the name of the installer you wish to install.
  6. command to run the installer

Steps to Uninstall Software Using Cmd

  1. Step 1.Launch Command Prompt with administrative rights. You can follow step 1 from the previous guide or press Windows + X and click Command Prompt (Admin) or Windows PowerShell (Admin).
  2. launch Windows PowerShell

  3. Step 2.First, type wmic.
  4. type wmie

  5. Step 3.To find the specific program you wish to uninstall, type product get name. This will list all installed software. Locate the one you are looking for.
  6. type product get name

  7. Step 4.Run the uninstaller by typing the command product where name=“Program” call uninstall. Don’t forget to change “Program” with the name you have found in the previous step. Once you do that, Command Prompt will ask for confirmation. Type Y to continue and complete the uninstall.

Part 2. How to Install Software with Cmd on a Remote PC?

Now that we have covered local installations, it’s time to see how you can manage software on remote computers using Cmd. Before you continue though, ensure that the firewall settings on the remote device allow “File and Printer sharing” traffic on port TCP 445.

Steps to Install Software with Cmd on a Remote Computer

  1. Step 1.Launch Command Prompt on the local computer with administrative rights.
  2. Step 2.Type the command copy c:\users\username\downloads\installer.msi \\REMOTE-PC\C$ to copy the installer to the remote device. In this command, you can either use the remote device’s name or its IP address.
  3. install software on remote PC using cmd

  4. Step 3.Type cd c:\SysInternals to change the directory. If you haven’t already, you might need to get Windows Sysinternals Tools before using this command.
  5. Step 4.Finally, type PsExec.exe \\REMOTE-PC\ -i -s msiexec.exe /i “c:\installer.msi” /qn /norestart to execute the installer on the remote PC.

Steps to Uninstall Software with Cmd on a Remote Computer

  1. Step 1.Run Command Prompt as an administrator and type wmic.
  2. Step 2.Then, type /node: “REMOTE-PC” product get name to get a list of all installed programs in the remote device.
  3. Step 3.Uninstall the program. Type /node: “REMOTE-PC” product where name = “program name” call uninstall and tap Enter to uninstall it.

Part 3. Better Way to Install/Uninstall Software on Remote PC

While learning how to install software using Cmd is possible, it is still a bit intimidating for non-tech-savvy users. If you are looking for a more efficient and user-friendly way to manage software on remote PCs, we recommend AirDroid Remote Support. This tool gives you access to a robust set of features that simplify and facilitate remote management tasks, such as installing and uninstalling programs. And now, it is free to use.

AirDroid Remote Support

Request Free Trial

With AirDroid Remote Support, you gain access to all the functions you might need for efficient remote management and support of your devices. In more detail, the key features of the app are the following:

  • Remote Control: Take full control of your remote devices, both attended and unattended.
  • File Transfer: Easily transfer files between local and remote systems as needed.
  • Screen Sharing: View the remote screen in real-time to provide better support.
  • Black Screen Mode: Keep your privacy with black screen mode while remotely accessing your unattended device.
  • Multi-Platform Support: The app is available on Windows, macOS, Android, and iOS.
  • Permission & Device Management: You can easily assign permissions to your team or individuals.

Steps to Install/Uninstall Software on Remote PC with AirDroid Remote Support

  1. Step 1.Install AirDroid Remote Support on the remote computer. Secondly, install AirDroid Business on the host computer.
  2. Step 2.From the remote computer, launch the AirDroid Remote Support app and note the 9-digit unique ID.
  3. Step 3.From the host computer, launch the AirDroid Business app, paste the 9-digit ID, and click Connect.
  4. Enter Connection Code

  5. Step 4.Click Accept from the pop-up that appears on the remote computer.
  6. Accept Connection

  7. Step 5.Select the remote computer from the left sidebar on the AirDroid Business app and click Connect. After the connection is finalized, you can transfer file and install/uninstall apps on the rmeote PC.
  8. connect to remote PC via AirDroid Remote Support

Wrapping Up

Knowing how to install program with Cmd is a powerful skill for IT professionals and advanced users. However, if you don’t feel confident in your IT skills, you can find an easier and more user-friendly way to install and uninstall programs remotely. Download AirDroid Remote Support today to explore its innovative features that allow you to efficiently manage your remote devices to enhance your productivity.

Request Free Trial

FAQs about Installing Software Using Cmd

How to install .exe from cmd?
Elsa
Elsa
To install an .exe file from Cmd, simply navigate to the directory containing the .exe file with the command “cd c:\users\username\downloads” and then run the command “installer.exe /silent /install”.
How to update software using cmd?
Elsa
Elsa
To update a program using Cmd you should run the installer for the newer version. Therefore, type the commands “cd c:\users\username\downloads” and “installer.exe /silent /install”, where the installer is the update.
How to install software silently using cmd?
Elsa
Elsa
You can do a silent installation by adding the appropriate silent parameters in your commands. For a .exe file, type “installer.exe /silent /install” and for a .msi file, type “msiexec /i installer.msi /quiet”.
How to get all installed programs in cmd?
Elsa
Elsa
You can list all installed programs with the “wmic” and “product get name” commands.
Click a star to vote
1346 views , 6 mins read
Was This Page Helpful?
Elsa
Elsa
Elsa has worked on a number of iOS & Android solutions, she can always find her way around almost any application. She is an accomplished, skilled and versatile writer with more than 7 years of technical article writing experience.
You Might Also Like
AirDroid Parental Control Social Content Detection
AirDroid Parental Control Launches Social Content Detection New Feature for Enhanced Child Safety Online
Anita R.
Anita R.
Apr 10, 2025
Introducing the New Launch of AirDroid Parental Control Web Version
Anita R.
Anita R.
Aug 28, 2024
Android Zero-Touch Enrollment with AirDroid Business for Streamlined Android Device Management
Anita R.
Anita R.
Nov 9, 2023
10 Best AI Telegram Chatbots & How to Create It
Isabella
Isabella
Jan 17, 2024
Exploring 10 Free Online Chatbots to Enhance Your Business
Isabella
Isabella
Mar 8, 2024
AirDroid Business Is Now A Google Certified Enterprise Mobility Management Solution Provider
Anita R.
Anita R.
May 31, 2023
AirDroid Parental Control Social Content Detection
AirDroid Parental Control Launches Social Content Detection New Feature for Enhanced Child Safety Online
Anita R.
Anita R.
Apr 10, 2025
Introducing the New Launch of AirDroid Parental Control Web Version
Anita R.
Anita R.
Aug 28, 2024
Android Zero-Touch Enrollment with AirDroid Business for Streamlined Android Device Management
Anita R.
Anita R.
Nov 9, 2023
10 Best AI Telegram Chatbots & How to Create It
Isabella
Isabella
Jan 17, 2024
Exploring 10 Free Online Chatbots to Enhance Your Business
Isabella
Isabella
Mar 8, 2024
AirDroid Business Is Now A Google Certified Enterprise Mobility Management Solution Provider
Anita R.
Anita R.
May 31, 2023
Discussion
The discussion and share your voice here.

Leave a Reply. Cancel reply

Your email address will not be published. Required fields are marked*

*

Product-related questions?Contact Our Support Team to Get a Quick Solution>
Home > Remote Control > [100% Working] How to Install/uninstall Software Using Cmd?
Like
Dislike
Airdroid remote support logo
AirDroid Remote Support
Remote Access Anywhere
Try for Free