Powershell/Private/SystemInfo/Get-WindowsDrive.ps1

function Get-WindowsDrive {
    $drive = (Get-CimInstance Win32_OperatingSystem).SystemDrive
    return $drive
}