Запрос 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