Difference between revisions of "Command Line"

From Max's Wiki
Jump to navigation Jump to search
 
(12 intermediate revisions by 2 users not shown)
Line 4: Line 4:
 
===Remove:===
 
===Remove:===
  
runas /user:admin@DOMAIN cmd
+
runas /user:admin@DOMAIN cmd
 +
wmic
 +
/node:"%COMPUTERNAME%" product get name,version,vendor
 +
/node:"%COMPUTERNAME%" product where name="Adobe Acrobat XI Pro"
 +
/node:'%COMPUTERNAME%' product where name="Adobe Acrobat XI Pro" call uninstall /nointeractive
  
wmic
+
==Install:==
 +
copy %COMPUTERNAME% "\\servername\software\AdbeRdr11000_mui_Std" "C:\IT-DATA"
 +
psexec %COMPUTERNAME% msiexec /i "C:\IT-DATA\AdbeRdr11000_mui_Std\AcroRead.msi" EULA_ACCEPT=YES REMOVE_PREVIOUS=YES /quiet /norestart
 +
''[http://community.spiceworks.com/how_to/179-using-a-command-line-to-uninstall-software-on-remote-pcs Source]''
  
/node:"%COMPUTERNAME%" product get name,version,vendor
+
==Install MSI Remotely==
 +
psexec -s \\COMPUTERNAME msiexec /i \\PATHTOMSI.msi /qn
  
/node:"%COMPUTERNAME%" product where name="Adobe Acrobat XI Pro"
+
==WMIC==
 +
===View Security Identifier (SID)===
 +
wmic useraccount get name,sid
  
/node:'%COMPUTERNAME%' product where name="Adobe Acrobat XI Pro" call uninstall /nointeractive
+
===View Current Logged On User===
 +
wmic /node:"COMPUTERNAME" computersystem get username
  
==Install:==
+
===View Serial Number===
 +
wmic /node: "COMPUTERNAME" SystemEnclosure get SerialNumber
 +
wmic /node: "WOMPUTERNAME" BIOS get SerialNumber
  
copy %COMPUTERNAME% "\\servername\software\AdbeRdr11000_mui_Std" "C:\IT-DATA"
+
==View Motherboard Manufacturer, Product, Serial Number==
 +
wmic baseboard get product,Manufacturer,version,serialnumber
  
psexec %COMPUTERNAME% msiexec /i "C:\IT-DATA\AdbeRdr11000_mui_Std\AcroRead.msi" EULA_ACCEPT=YES REMOVE_PREVIOUS=YES /quiet /norestart
+
==View BIOS Version==
 +
wmic bios get smbiosbiosversion
  
http://community.spiceworks.com/how_to/179-using-a-command-line-to-uninstall-software-on-remote-pcs
+
===View Installed RAM===
  
==Install MSI Remotely==
+
wmic MEMORYCHIP get BankLabel,DeviceLocator,Capacity,Speed
psexec -s \\COMPUTERNAME msiexec /i \\PATHTOMSI.msi /qn
 
  
==View Security Identifier (SID)==
+
===View Remote Registry===
wmic useraccount get name,sid
+
sc \\computername start remoteregistry start= auto
 +
copy and paste it into notepad
 +
save it as .bat
  
==View Remote Registry==
+
===View System Uptime===
* sc \\computername start remoteregistry start= auto
+
systeminfo | find "Time"
* copy and paste it into notepad
 
* save it as .bat
 

Latest revision as of 16:48, 14 August 2017

Uninstall an Application or Program Remotely

Remove:

runas /user:admin@DOMAIN cmd
wmic
/node:"%COMPUTERNAME%" product get name,version,vendor
/node:"%COMPUTERNAME%" product where name="Adobe Acrobat XI Pro"
/node:'%COMPUTERNAME%' product where name="Adobe Acrobat XI Pro" call uninstall /nointeractive

Install:

copy %COMPUTERNAME% "\\servername\software\AdbeRdr11000_mui_Std" "C:\IT-DATA"
psexec %COMPUTERNAME% msiexec /i "C:\IT-DATA\AdbeRdr11000_mui_Std\AcroRead.msi" EULA_ACCEPT=YES REMOVE_PREVIOUS=YES /quiet /norestart

Source

Install MSI Remotely

psexec -s \\COMPUTERNAME msiexec /i \\PATHTOMSI.msi /qn

WMIC

View Security Identifier (SID)

wmic useraccount get name,sid

View Current Logged On User

wmic /node:"COMPUTERNAME" computersystem get username

View Serial Number

wmic /node: "COMPUTERNAME" SystemEnclosure get SerialNumber 
wmic /node: "WOMPUTERNAME" BIOS get SerialNumber

View Motherboard Manufacturer, Product, Serial Number

wmic baseboard get product,Manufacturer,version,serialnumber

View BIOS Version

wmic bios get smbiosbiosversion

View Installed RAM

wmic MEMORYCHIP get BankLabel,DeviceLocator,Capacity,Speed

View Remote Registry

sc \\computername start remoteregistry start= auto
copy and paste it into notepad
save it as .bat

View System Uptime

systeminfo | find "Time"