cls function WriteStatus($path,$valueName,$desiredValue) { (Get-ItemProperty $path).$valueName } $User_ExplorerAdvanced = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\ $User_ExplorerAdvanced2 = "HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced\" $User_Search = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Search $User_Personalise = Get-ItemProperty HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\Themes\Personalize $User_AdInfo = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo $User_Privacy = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Privacy $User_ContentDelivery = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager $User_Mobility = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Mobility $User_Notifications = Get-ItemProperty HKCU:\Software\Microsoft\Windows\CurrentVersion\Notifications\Settings\Windows.SystemToast.Suggested $User_Engagement = Get-ItemProperty HKCU:\SOFTWARE\Microsoft\Windows\CurrentVersion\UserProfileEngagement $User_Speech = if(Test-Path HKCU:\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy) { Get-ItemProperty HKCU:\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy } else { $null } $User_InputPersonalisation = Get-ItemProperty HKCU:\Software\Microsoft\InputPersonalization $User_InputTrainedData = Get-ItemProperty HKCU:\Software\Microsoft\InputPersonalization\TrainedDataStore $User_PersonalisationSettings = Get-ItemProperty HKCU:\Software\Microsoft\Personalization\Settings $User_TIPC = Get-ItemProperty HKCU:\Software\Microsoft\Input\TIPC $User_AppLaunch = Get-ItemProperty HKCU:\Software\Policies\Microsoft\Windows\EdgeUI $User_Copilot = if (Test-Path HKCU:\Software\Policies\Microsoft\Windows\WindowsCopilot) { Get-ItemProperty HKCU:\Software\Policies\Microsoft\Windows\WindowsCopilot } else { $null } $User_Explorer = if (Test-Path HKCU:\Software\Policies\Microsoft\Windows\Explorer) { Get-ItemProperty HKCU:\Software\Policies\Microsoft\Windows\Explorer } else { $null } $System_DataCollection = Get-ItemProperty HKLM:\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection $System_Copilot = Get-ItemProperty HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot $System_AppLaunch = Get-ItemProperty HKLM:\Software\Policies\Microsoft\Windows\EdgeUI $System_WinSearch = Get-ItemProperty 'HKLM:\SOFTWARE\Policies\Microsoft\Windows\Windows Search' Write-Host "[Explorer advanced options - User]" -ForegroundColor Magenta WriteStatus($User_ExplorerAdvanced2,"LaunchTo",1) "Explorer window launch to: "+($User_ExplorerAdvanced.LaunchTo -eq 1 ? "This PC" : "?") "File extensions: "+($User_ExplorerAdvanced.HideFileExt -eq 0 ? "Show" : "Hide") "Taskbar chat icon: "+($User_ExplorerAdvanced.TaskbarMn -eq 0 ? "Hide" : "Show") "Taskbar widgets: "+($User_ExplorerAdvanced.TaskbarDa -eq 0 ? "Hide" : "Show") "Taskbar copilot icon: "+($User_ExplorerAdvanced.ShowCopilotButton -eq 0 ? "Hide" : "Show") "Telemetry Start_TrackProgs: "+($User_ExplorerAdvanced.Start_TrackProgs -eq 0 ? "Disabled" : "Enabled") "Tips+Suggestions Start_IrisRecommendations: "+($User_ExplorerAdvanced.Start_IrisRecommendations -eq 0 ? "Disabled" : "Enabled") "Tips+Suggestions ShowSyncProviderNotifications: "+($User_ExplorerAdvanced.ShowSyncProviderNotifications -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Windows search - User]" -ForegroundColor Magenta "Windows search BingSearchEnabled: "+($User_Search.BingSearchEnabled -eq 0 ? "Disabled" : "Enabled") "Windows search SearchboxTaskbarMode: "+($User_Search.SearchboxTaskbarMode -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Windows explorer - User]" -ForegroundColor Magenta "Explorer DisableSearchBoxSuggestions: "+($null -ne $User_Explorer ? ($User_Explorer.DisableSearchBoxSuggestions -eq 1 ? "Disabled" : "Enabled") : "-") "" Write-Host "[Personalisation - User]" -ForegroundColor Magenta "Apps theme: "+($User_Personalise.AppsUseLightTheme -eq 0 ? "Dark" : "Light") "System theme: "+($User_Personalise.SystemUsesLightTheme -eq 0 ? "Dark" : "Light") "" Write-Host "[Personalisation settings - User]" -ForegroundColor Magenta "AcceptedPrivacyPolicy: "+($User_PersonalisationSettings.AcceptedPrivacyPolicy -eq 0 ? "No" : "Yes") "" Write-Host "[AdvertisingInfo - User]" -ForegroundColor Magenta "AdvertisingInfo: "+($User_AdInfo.Enabled -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Privacy - User]" -ForegroundColor Magenta "TailoredExperiencesWithDiagnosticDataEnabled: "+($User_Privacy.TailoredExperiencesWithDiagnosticDataEnabled -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[ContentDeliveryManager - User]" -ForegroundColor Magenta "SubscribedContent-338388Enabled: "+($User_ContentDelivery.'SubscribedContent-338388Enabled' -eq 0 ? "Disabled" : "Enabled") "SubscribedContent-338389Enabled: "+($User_ContentDelivery.'SubscribedContent-338389Enabled' -eq 0 ? "Disabled" : "Enabled") "SubscribedContent-338393Enabled: "+($User_ContentDelivery.'SubscribedContent-338393Enabled' -eq 0 ? "Disabled" : "Enabled") "SubscribedContent-353694Enabled: "+($User_ContentDelivery.'SubscribedContent-353694Enabled' -eq 0 ? "Disabled" : "Enabled") "SubscribedContent-353696Enabled: "+($User_ContentDelivery.'SubscribedContent-353696Enabled' -eq 0 ? "Disabled" : "Enabled") "SubscribedContent-353696Enabled: "+($User_ContentDelivery.'SubscribedContent-353696Enabled' -eq 0 ? "Disabled" : "Enabled") "SystemPaneSuggestionsEnabled: "+($User_ContentDelivery.SystemPaneSuggestionsEnabled -eq 0 ? "Disabled" : "Enabled") "SoftLandingEnabled: "+($User_ContentDelivery.SoftLandingEnabled -eq 0 ? "Disabled" : "Enabled") "SilentInstalledAppsEnabled: "+($User_ContentDelivery.SilentInstalledAppsEnabled -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Mobility - User]" -ForegroundColor Magenta "OptedIn: "+($User_Mobility.OptedIn -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Notifications - User]" -ForegroundColor Magenta "Windows.SystemToast.Suggested: "+($User_Notifications.Enabled -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Engagement - User]" -ForegroundColor Magenta "ScoobeSystemSettingEnabled: "+($User_Engagement.ScoobeSystemSettingEnabled -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[Speech - User]" -ForegroundColor Magenta "HasAccepted: "+($null -ne $User_Speech ? ($User_Speech.HasAccepted -eq 0 ? "No" : "Yes") : "-") "" Write-Host "[Input TIPC - User]" -ForegroundColor Magenta "Enabled: "+($User_TIPC.Enabled -eq 0 ? "No" : "Yes") "" Write-Host "[Input Personalisation - User]" -ForegroundColor Magenta "RestrictImplicitInkCollection: "+($User_InputPersonalisation.RestrictImplicitInkCollection -eq 1 ? "Restricted" : "Unrestricted") "RestrictImplicitTextCollection: "+($User_InputPersonalisation.RestrictImplicitTextCollection -eq 1 ? "Restricted" : "Unrestricted") "" Write-Host "[Input trained data - User]" -ForegroundColor Magenta "HarvestContacts: "+($User_InputTrainedData.HarvestContacts -eq 0 ? "Disabled" : "Enabled") "" Write-Host "[App launch tracking - User]" -ForegroundColor Magenta "DisableMFUTracking: "+($User_AppLaunch.DisableMFUTracking -eq 1 ? "Disabled" : "Enabled") "" Write-Host "[Copilot - User]" -ForegroundColor Magenta "TurnOffWindowsCopilot: "+($null -ne $User_Copilot ? ($User_Copilot.TurnOffWindowsCopilot -eq 1 ? "Off" : "On") : "-") "" Write-Host "[Data collection - System]" -ForegroundColor Magenta "AllowTelemetry: "+($System_DataCollection.AllowTelemetry -eq 0 ? "Disabled" : $System_DataCollection.AllowTelemetry) "" Write-Host "[Copilot - System]" -ForegroundColor Magenta "TurnOffWindowsCopilot: "+($null -ne $System_Copilot ? ($System_Copilot.TurnOffWindowsCopilot -eq 1 ? "Off" : "On") : "-") "" Write-Host "[App launch tracking - System]" -ForegroundColor Magenta "DisableMFUTracking: "+($System_AppLaunch.DisableMFUTracking -eq 1 ? "Disabled" : "Enabled") "" Write-Host "[Windows search - System]" -ForegroundColor Magenta "AllowCortana: "+($System_WinSearch.AllowCortana -eq 0 ? "No" : "Yes") "CortanaConsent: "+($System_WinSearch.CortanaConsent -eq 0 ? "No" : "Yes")