如何通过Windows命令提示符或Power Shell命令在具有Windows操作系统的远程计算机上找到os
根驱动器的字母(例如C或D等)。
在本地PC中,“ set systemroot ”命令可以获取Windows根驱动器,但我希望此等效命令适用于远程计算机...
答案 0 :(得分:0)
查询WMI,Win32_OperatingSystem类;
操作系统驱动器号
Get-CimInstance -Class Win32_OperatingSystem -ComputerName localhost -Property SystemDrive | Select-Object -ExpandProperty SystemDrive
或
Get-WmiObject -Class Win32_OperatingSystem -ComputerName localhost -Property SystemDrive | Select-Object -ExpandProperty SystemDrive
Windows目录
Get-CimInstance -Class Win32_OperatingSystem -ComputerName localhost -Property WindowsDirectory | Select-Object -ExpandProperty WindowsDirectory
或
Get-WmiObject -Class Win32_OperatingSystem -ComputerName localhost -Property WindowsDirectory | Select-Object -ExpandProperty WindowsDirectory