WMIC stands for Windows Management Instrumentation Command-line
2
votes
2answers
57 views
Why is my entire batch script running as a SETLOCAL command?
I don't understand what I'm doing wrong, the output is always the entire script, with an Invalid parameter to setlocal error! This is probably just a silly mistake, but it's making me crazy.
SETLOCAL ...
0
votes
1answer
23 views
php error handling within a while loop
im having following code to get the battary status using WMIC commands.im getting our network all IP addreses from mysql database.when code runs..if there is remote computer which RPC server not ...
0
votes
1answer
14 views
WMI query to get remote IP info using PHP
$obj = new COM ( 'winmgmts://localhost/root/CIMV2' );
$fso = new COM ( "Scripting.FileSystemObject" );
$wmi_computersystem = $obj->ExecQuery("Select * from Win32_ComputerSystem");
...
0
votes
0answers
11 views
nmap to check battery installed or not
im working on a project which scan the LAN and display reslut in html/PHP/mysql using NMAP Commands.similar application to spiceworks.
in spiceworks they said they categorized their nmap output ...
1
vote
4answers
55 views
Can a wmic processes table (within the command prompt window) be sorted by a value?
I've been exploring various options, such as the /format flag, however it appears that sorting is only possible in XML or HTML output. I would like to sort within command prompt itself. It seems that ...
0
votes
3answers
32 views
Else command in batch running all at once?
I'm not sure why this is happening, but it seems like the else command in this batch script I'm working on is running all at once, instead of one line at a time. Any suggestions?
set ...
1
vote
1answer
37 views
Syntax error in a batch script when asking for user input (/P)
I've asked a couple of people what the issue is, and have walked away twice without a solution. I haven't played with batch much before, so it may be a simple mistake. The code is currently supposed ...
0
votes
0answers
43 views
Using Java to Launch a Batch File Which Runs WMIC
First let's start with the code:
import java.io.*;
import java.io.IOException;
import java.net.URL;
public class InfoFileReader{
public static void main(String args[]) throws IOException{
...
0
votes
0answers
23 views
WMIC: Correlate drive letter with USB VID/PID
On Windows, I want to use WMIC or any other builtin tool to find out:
For a given drive letter, what are its USB VID/PID, if any
For a given USB VID/PID, what is the drive letter, if any
How can I ...
0
votes
2answers
53 views
Get-WmiObject without PowerShell
I am writing a Windows python program that needs to query WMI. I am planning to do this by using the subprocess module to call WMIC with the arguments I need.
I see a lot of examples online of using ...
2
votes
1answer
29 views
How do I call a WMI method with an object reference parameter from wmic?
How do I call a WMI method (e.g. RemoveVirtualSystemSnapshot where the first parameter is a reference to a CIM_VirtualSystemSettingData) with an object reference parameter from wmic?
I haven't found ...
0
votes
0answers
21 views
I want to get last user of files in directory
I have tried to use wmic datafile to get information about a ton of files I have. It looks like there is no get attribute to see who was the last person to accessed the file and who created it. Is ...
0
votes
0answers
11 views
How to disable a driver (wmic or similar)
i just got a new Fujitsu t902 and want do disable the multitouch driver so i can relax my hand against the touchscreen, while i still be able to use the pen input?
Is there a way to do this with wmic ...
0
votes
2answers
152 views
How to get total physical memory (ram) information in GB by WMI query?
I know how to get total physical memory from win32_computersystem class. but that comes in bytes or kb. I want this information in MB or GB. in wmi (wql) query. wmic also work. thanks in advance.
0
votes
1answer
69 views
How can I remove empty lines from wmic output?
This is my string to obtain the position of TeamViewer (any version) service executable:
for /f "skip=1 delims=" %A in ('wmic path win32_service where "name like 'TeamViewer%'" get pathname') do set ...
0
votes
2answers
43 views
Perl: How To capture WMIC output into variable
I am using below code to get drivename, freespace and total space of drive.
my @pnames = `wmic /node:"IP" /user:"UserName" /password:"password" LogicalDisk Where "DeviceID='H:'" Get ...
0
votes
1answer
144 views
WMIC Command Not Working in For Loop of Batch File
I have a batch file that I am trying to run, but I keep getting an error. I think that this question is similar to I can't get the right syntax to use WMIC in batch file, but dbenham's answer ...
1
vote
0answers
50 views
WMIC uninstall using name and version
I have two applications (old and new) which use an identical product name (this cannot be changed). I need to uninstall only the old one but am having trouble including the version with:
wmic ...
0
votes
0answers
170 views
Monitoring completed status of a remote cmd.exe process
I am running a .bat file in computer A from computer B by using my form application using WMI to publish dash boards. The .bat file calls a command line utility tabcmd.exe multiple times and utility ...
1
vote
1answer
25 views
Prompt hostname change command line
The code:
wmic computersystem where name="%COMPUTERNAME%" call rename name="NEW-NAME"
How do I change it to allow user input for the new name?
0
votes
1answer
80 views
WMIC error: desciption = exception occured when searching for hotfix
I have a wmic command I want to run that would query a list of machines and return a csv file if a hotfix is installed. In my case the hotfix ID is 2617858. It starts to process and then comes up with ...
0
votes
0answers
97 views
Output multiple WMIC commands to the same file
I was wondering if there is a way to output multiple WMIC commands to the same file. I want to run these commands below but want to output the results in the same file.
wmic /node:"pcname" ...
0
votes
1answer
279 views
WMI query runs fine when typed, but fails when scripted
I'm trying to use various WMI queries to gather data needed for daily reports on some of my servers. The only piece of my script that fails is the final step, which queries for the status of certain ...
0
votes
1answer
164 views
There is no column for User Name in the 'WMIC process' output
The Processes tab of the Windows Task Manager shows several columns with information, one of which being User Name of the user that owns the process.
Using the command WMIC process (from an ...
0
votes
0answers
58 views
access denied in copying files
The situation is, at first I had the error Invalid XSL format (or) filename by issuing WMIC. I tried searching for some solutions and a site gave me this code
copy /y ...
0
votes
0answers
78 views
invalid Xsl format (or) file name
what i wanted to do is to get all the installed applications in a computer and ihave decided to use the /output command of the command prompt using java. my code was working properly with this line of ...
0
votes
0answers
80 views
Multiple account actions to remote comptuer
I am trying to accomplish a few remote account management tasks programmatically using VBScript or WMI or whatever language I can to accomplish the task. This would then be run against a list of ...
0
votes
1answer
146 views
I can't get the right syntax to use WMIC in batch file
Here's the command I'm trying to run. I wanted to get the service name for my SQL Server 2008 instance
FOR /F "delims==" %%G IN ('wmic service where (displayname like ^"%%sqlserver2008%%^")') DO ...
1
vote
1answer
172 views
AWK/SEDManipulate text file, Create a CSV file using a feeding file
I need to manipulate a text file, I created it using wmic scripts.
Original file:
Node,Manufacturer,Model
NAKAMA,Dell Computer Corporation,PowerEdge 6650
Node,Name,Version
...
0
votes
1answer
606 views
Command to get Hard disk & processor spec remotely
What is the command(s) helps to get information of the Hard disk & processor in a remote windows machine ?
0
votes
1answer
593 views
wmic space in file path, results in No Instance(s) Available
I'm using wmic to get information on a service using the full path to a file.
wmic service where PathName="C:\\Windows\\system32\\CxAudMsg64.exe"
Which works fine. However, when I use a path with ...
0
votes
1answer
211 views
VBS uninstall application
I am trying to get a VBS script together to use as a startup script to uninstall Silverlight if it is a version under 5, but my code keeps giving me a type mismatch when trying to compare the value.
...
1
vote
2answers
154 views
Call WMIC commands in c++ code
I am trying to re-write a logic that i had written in batch script into a c++ code and a DLL consequently.
In my batch script i was checking for command line arguments of all java processes using ...
2
votes
1answer
392 views
How to run WMI command on local system with elevated privileges from GPO login script?
I want to run WMI queries from a GPO deployed user login script to gather user information.
Problem is that users must be a member of the administrators group to be able to run WMIC and I can't give ...
0
votes
0answers
30 views
QFE Header-Data Mapping behaves differently
I am trying to retrieve QFE information by querying Win32_QuickFixEngineering WMI class through C++.
I have observed that the result set column headers are same but the values are not under the same ...
1
vote
1answer
2k views
Batch WMIC redirecting output and wrapping into variable
I'm trying to use WMIC to remove some old printers on our older print servers
if I use the below syntax from the command line it works
WMIC PRINTER WHERE "SERVERNAME LIKE '%%OLDSERVERNAME%%'" DELETE
...
0
votes
0answers
129 views
System Settings for WUA API to Work
In order to leverage the WUA API in any windows machine, Could someone please let me know what are the settings that should be enabled or disabled on a windows box, so that any code written using WUA ...
1
vote
0answers
84 views
Whats the difference between “IsPresent=1” and “IsInstalled=1” in search criteria of IUpdateSearcher
I was trying to retrieve Windows Update with WUA API of IUpdateSearcher interface's search method.
The search criteria I have passed as "IsInstalled=1 or IsPresent=1". Please find below is the sample ...
0
votes
1answer
163 views
What exactly IUpdate::BundledUpdates retreives?
When we try to retrieve the Windows Update Information with WUA API, the following is the process I have followed. But I am bit confused with IUpdate::BundledUpdates propertly.
Create an ...
-1
votes
1answer
466 views
Windows Update Agents Vs WMIC QFE GET [closed]
I am exploring the reliability of the following two ways to get the Windows Patch Information.
Using Windows Update Agent - IUpdateSearcher Interface with COM.
Using WMIC QFE GET (Either through ...
1
vote
0answers
465 views
WMI access on a remote server (different domain)
I have been trying to make MySQL Workbench's Remote Server Administration to work with my WMI service installed on a Windows 2008 R2 server.
I would like to know if the following syntax is correct ...
0
votes
0answers
83 views
How to Change DCOM user Password With CMD
MY WEB application hosted on my Desktop and my .net Client(Windows Service) is running on the another Desktop,i want to send cmd command to the client through Socket connection ,once client receive ...
2
votes
1answer
514 views
Prevent wmic.exe from writing TempWmicBatchFile.bat
I want to check within my Java application whether the windows virtual keyboard is already running or not.
I searched for it and found, that I can use wmic.exe to search for a process.
This is ...
0
votes
3answers
222 views
wmic command how to use negative number for search
In wmic, '-' is special characters.
how can use negative number for search?
just like
wmic volume where serialnumber=-1874012763
because '-' is sepcial character, this command is not work.
how ...
0
votes
2answers
402 views
How can I use a delimiter in wmic output, separating columns?
I want to fetch Windows Hotfix listing with some format, whose output can be separated with some delimiter. so far I found a wmic command which gives me a desired output but the problem is the \s ...
0
votes
1answer
1k views
Getting Process list using WMI from a system using >90% CPU usage
We are working on a remote management software using WMI. I have a problem in getting process list from a remote device which is running with >90% CPU usage. Most of the time my WMIC command gets ...
1
vote
1answer
179 views
Is it possible to use TWO spaces as a single Delimiter in CMD?
I don't think this is possible, but I'd like to be able to do this, or possibly use an alternative method...
I have a batch file;
for /f "usebackq tokens=*" %%a in (`wmic process get description, ...
0
votes
1answer
261 views
wmic delete startup item
I want to delete an entry with wmic but i always get an error, i saw DELETE command is a valid verb of STARTUP. what i am doing wrong?
thnx
wmic:root\cli>/node:'pc-test' startup where ...
0
votes
0answers
668 views
retrieve remote machine details using c# , wmi
I'm retrieving machine details using c# and wmi. I'm using the following code to retrieve information:
ManagementScope scope =new ManagementScope(@"\\"+strIPAddress+@"\root\cimv2");
...
0
votes
2answers
325 views
Using remote WMI to monitor win32_battery
My ultimate goal here is to remotely monitor the EstimatedChargeRemaining on a tablet PC. I have it mostly working, and it seems I can query almost anything BUT the battery!
On the tablet I can ...
