Signed in as:
filler@godaddy.com
Signed in as:
filler@godaddy.com
This is what we believe a Windows "11 pro Golden Image" should be. Of course, feel free to refer to the following Tweaks we made and customize the Image even More to suit your needs
· Removed TPM and secure Boot Check, install unto any Hardware
· Disabled Windows Automatic Restart after an Update (No More annoying Random uncontrolled Restarts for OS Updates)
· Changed the Default Explorer Window from Home to This PC
· Enabled Windows Firewall and blocked all inbound connections by default for Security Purposes
· Bypassed End User License Agreement and OOBE Meaning the OS will Boot straight to a localadmin account after Deployment, you will be asked to create a Password for the account
· Debloated the Image Further
# by removing the following applications
· Microsoft.UI.Xaml.CBS
· MicrosoftWindows.LKG.Search
· NcsiUwpApp
· Microsoft.VCLibs.140.00.UWPDesktop
· Microsoft.VCLibs.140.00
· Microsoft.MPEG2VideoExtension
· Microsoft.Windows.DevHome
· Microsoft.XboxSpeechToTextOverlay
· MicrosoftCorporationII.QuickAssist
· MSTeams
· Microsoft.OutlookForWindows
· Microsoft.Paint
· MicrosoftWindows.Client.WebExperience
· Microsoft.ScreenSketch
· Microsoft.WindowsAppRuntime.CBS.1.6
· Microsoft.WindowsAppRuntime.CBS
· Microsoft.WindowsAppRuntime.1.5
· Microsoft.NET.Native.Runtime.2.2
· Microsoft.NET.Native.Framework.2.2
· Microsoft.Xbox.TCUI
· Microsoft.Todos
· Microsoft.BingWeather
· Microsoft.XboxGamingOverlay
· Microsoft.AVCEncoderVideoExtension
· Microsoft.HEVCVideoExtension
· Microsoft.StorePurchaseApp
· Microsoft.YourPhone
· Microsoft.GetHelp
· MicrosoftWindows.CrossDevice
· Microsoft.MicrosoftStickyNotes
· Microsoft.RawImageExtension
· Microsoft.MicrosoftSolitaireCollection
· Microsoft.PowerAutomateDesktop
· Microsoft.MicrosoftOfficeHub
· Microsoft.XboxIdentityProvider
· Microsoft.BingNews
· Microsoft.AV1VideoExtension
· Microsoft.ZuneMusic
· Microsoft.BingSearch
· Microsoft.ApplicationCompatibilityEnhancements
· Microsoft.WindowsAppRuntime.1.3
· Microsoft.DesktopAppInstaller
· Microsoft.GamingApp
· Microsoft.WidgetsPlatformRuntime
· Microsoft.Services.Store.Engagement
· Clipchamp.Clipchamp
· Microsoft.Copilot
# Disabled Privacy Experience for All Users
reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OOBE" /v "DisablePrivacyExperience" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OOBE" /f
reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\OOBE" /v "DisablePrivacyExperience" /t REG_DWORD /d "1" /f
# Disabled Online Speech Recognition
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy" /v "HasAccepted" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Speech_OneCore" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Speech_OneCore\Settings" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Speech_OneCore\Settings\OnlineSpeechPrivacy" /v "HasAccepted" /t REG_DWORD /d "0" /f
}
# Restricted Location Access
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /v "Value" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\CapabilityAccessManager\ConsentStore\location" /v "Value" /t REG_SZ /d "Deny" /f
}
# Disabled Diagnostic and Data Collection Toasts
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" /v "ShowedToastAtLevel" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Diagnostics" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Diagnostics\DiagTrack" /v "ShowedToastAtLevel" /t REG_DWORD /d "1" /f
}
# Set AllowTelemetry to Minimal
#reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /f
#reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies" /f
#reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /f
#reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "AllowTelemetry" /t REG_DWORD /d "0" /f
#reg delete "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "MaxTelemetryAllowed" /f
#reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\DataCollection" /v "MaxTelemetryAllowed" /t REG_DWORD /d "1" /f
# Disabled Input Data Collection
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Input\TIPC" /v "Enabled" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Input" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Input\TIPC" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Input\TIPC" /v "Enabled" /t REG_DWORD /d "0" /f
}
# Disabled Tailored Experiences
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Privacy" /v "TailoredExperiencesWithDiagnosticDataEnabled" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Privacy" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\Privacy" /v "TailoredExperiencesWithDiagnosticDataEnabled" /t REG_DWORD /d "0" /f
}
# Disable Advertising ID
foreach ($user in @('.DEFAULT', 'HKCU')) {
reg delete "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /f
reg add "HKEY_USERS\$user\Software\Microsoft\Windows\CurrentVersion\AdvertisingInfo" /v "Enabled" /t REG_DWORD /d "0" /f
}
# stopped and disabled telemetry services ...
Our expertise in Windows imaging ensures that your systems are secure, optimized, and perfectly aligned with your organizational needs. By leveraging our solutions, you can achieve faster deployments, reduced IT overhead, and enhanced system performance.
Contact Us today to get a custom windows Image tailored to your Company's Needs For a seamless windows deployment
gpservices.ca
We use cookies to analyze website traffic and optimize your website experience. By accepting our use of cookies, your data will be aggregated with all other user data.