远程Windows计算机操作系统根驱动器号

时间:2018-09-04 15:08:03

标签: windows powershell networking command-prompt

如何通过Windows命令提示符或Power Shell命令在具有Windows操作系统的远程计算机上找到os根驱动器的字母(例如C或D等)。

在本地PC中,“ set systemroot ”命令可以获取Windows根驱动器,但我希望此等效命令适用于远程计算机...

1 个答案:

答案 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