Home  >  Article  >  How to use wmic to run commands on a remote computer

How to use wmic to run commands on a remote computer

WBOY
WBOYforward
2023-05-19 19:25:041594browse

The wmic tool can be used for a variety of purposes, and luckily, executing commands on a remote device is also one of its many capabilities.

Although it may look like it to some, it's far from rocket science and it all comes down to knowing and entering the correct commands.

You will see that running commands on a remote computer using the wmic tool is a piece of cake, as we will show you in this article.

We will guide you through the entire process and share the necessary commands with you for your future reference.

How to use wmic to run commands on a remote computer?

Before we begin, it is important to know that to use this feature, you must have administrative rights.

Also, if you are also talking about sharing between remote computers, the files/folders you want to share must already exist on the target computer.

We'll use an example of the GPU update command on the target remote machine to make sure you get the gist of the idea.

So, in order to successfully complete such a task, you need to do the following:

  1. Press the Windows key, search for Command Prompt, and choose to run as administrator Run as . 如何使用 wmic 在远程计算机上运行命令
  2. At the command prompt, type wmic, and then press Enter. 如何使用 wmic 在远程计算机上运行命令
  3. Enter the following command: WMIC /node:ComputerName process call create “cmd.exe /c GPUpdate.exe”如何使用 wmic 在远程计算机上运行命令
Notes As we said Say, this is just an example, you can run any command you want. Simply replace the computer name with the name of the remote device you are trying to access, and replace the update GPU command with the desired command.

Also, just to be on the safe side, leave the " around the computer name because without quotes, certain characters seem to cause problems with this command.

Needless to say, using this There is a drawback to this approach in that you won't be able to see the execution of the command or the results of the process if an error or unexpected result occurs.

Don't let this discourage you though, as many Windows users over the years have Run such commands remotely and problems are few and far between.

Since we are talking about wmic, other Windows users have reported dealing with access is denied and alias not found errors, so we have prepared some for you Fix.

Also, be sure to review the list of commands for accessing all system information on your Windows device, just in case.

The above is the detailed content of How to use wmic to run commands on a remote computer. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:yundongfang.com. If there is any infringement, please contact admin@php.cn delete