# Copyright © 2008, Microsoft Corporation. All rights reserved. # :: ======================================================= :: <# DESCRIPTION: TS_CheckDriversOnInstall checks for a registry key and if it is not present then the rootcause will be detected ARGUMENTS: RETURNS: Updates the Diagreport #> #================================================================================== # Initialize #================================================================================== $wuBlocked = $false #*================================================================================= # Main #*================================================================================= $gpSetting = Get-ItemProperty -Path "HKLM:\SOFTWARE\Policies\Microsoft\Windows\DriverSearching" -ErrorAction SilentlyContinue if(($gpSetting -eq $null) -or ($gpSetting.SearchOrderConfig -eq 0)) { $wuBlocked = $true } $setting = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\DriverSearching" -ErrorAction SilentlyContinue if(($setting -eq $null) -or ($setting.SearchOrderConfig -eq 0)) { $wuBlocked = $true } Update-DiagRootCause -ID RC_CheckDriversOnInstall -Detected $wuBlocked