Hi,I am new to VBScript, I am trying to get all the printers status on a network. Is there a script to do that? thank youRead more
Hi, Go to SYSTEM => SYSTEM Variables => CELL_GRP => CELL_GRP_T : you can change the values of XYZ WPR to adjust the mounting in the 4D graphics. It only adjust the view. but please, if you have a inverted mounted robot, You must controlled start => maintenace “mount angle setting” you haRead more
Hi,
Go to SYSTEM => SYSTEM Variables => CELL_GRP => CELL_GRP_T :
you can change the values of XYZ WPR to adjust the mounting in the 4D graphics. It only adjust the view.
but please, if you have a inverted mounted robot, You must controlled start => maintenace
“mount angle setting” you have to choose 180 (Upside down)
Have a nice day
See less
here is the code if you need to check if a printer is connected to nework: Set objWMIService = GetObject("winmgmts:\\.\root\cimv2") Set colItems = objWMIService.ExecQuery("SELECT * FROM Win32_Printer WHERE Name = 'HP DeskJet 2720E'") For Each objItem in colItems If objItem.Network = True Then WScripRead more
here is the code if you need to check if a printer is connected to nework:
[crayon-6764253252b4a677133816/]
This script uses the Windows Management Instrumentation (WMI) service to query for printers with the name “HP DeskJet”. It then checks the value of the
Network
property for each printer to determine whether it is connected to the network. If theNetwork
property isTrue
, the script outputs a message indicating that the printer is connected to the network. If theNetwork
property isFalse
, the script outputs a message indicating that the printer is not connected to the network.I hope this helps!
See less