tacksupport / Remotely Fetch Installed Programs
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | # Fill in the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | Get-WmiObject win32_product -ComputerName $ComputerName | Sort-Object | select Vendor, Name, version |
tacksupport / Remotely Fetch a Computer's UUID
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | # Enter the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | (Get-CimInstance -Class Win32_ComputerSystemProduct -ComputerName $ComputerName).UUID |
Newer
Older