For example, if you wanted to resume printing
on a networked printer named HP LaserJet 5 located on WinServer, you??™d type WMIC Printer
Where Caption="\\\\WinServer\\HP LaserJet 5" CALL Resume and press Enter. Notice that
you must use four backslashes to begin the UNC location of the printer.
PrinterConfig Provides information about the physical characteristics of both local and networked
printers. The statistics include the printer resolution, any driver information, and
whether the printer prints in color (along with other useful information).
PrintJob Manages individual print jobs for the local machine. You can also use methods to
pause and resume individual jobs.
Process Manages processes on the local machine. You can obtain a wealth of information
about each process, including memory statistics. The methods associated with this alias let you
attach a debugger to a process, create a new process, obtain process owner information, set the
process priority, and even terminate the process. Normally, you??™ll want to perform all tasks
using the ProcessID property. To obtain a list of Process Identifiers (PIDs) and their associated
application names, type WMIC Process GET Name,ProcessID and press Enter.
Pages:
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193