mirror of
https://github.com/JDM170/show_comp_uptime
synced 2024-10-25 13:44:29 +07:00
8 lines
205 B
PowerShell
8 lines
205 B
PowerShell
|
|
write-host "Введите имя ПК (пр. R54-630300IT04):"
|
|
$pc_name = read-host
|
|
|
|
Get-CimInstance -ClassName win32_operatingsystem -ComputerName $pc_name | select csname, lastbootuptime
|
|
|
|
Pause
|