Private/Get-CmSiteInstallPath.ps1
|
function Get-CmSiteInstallPath { Write-Log -Message "(Get-CmSiteInstallPath)" -Logfile $logfile try { $x = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\SMS\setup" Write-Output $x.'Installation Directory' } catch { Write-Log -Message "Unable to read ConfigMgr installation directory: $($_.Exception.Message)" -Severity 3 -LogFile $logfile return $null } } |