Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
windows:optimisation [2020/09/19 15:21] minimiwindows:optimisation [2026/07/15 10:12] (Version actuelle) minimi
Ligne 1: Ligne 1:
- 
 =====  Optimisation/Installation Windows ===== =====  Optimisation/Installation Windows =====
  
-https://sebsauvage.net/wiki/doku.php?id=windows+<code>reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\OOBE /v BypassNRO /t REG_DWORD /d 1 /f 
 +shutdown /r /t 0</code> 
 + 
 +[[https://github.com/Sycnex/Windows10Debloater]] 
 + 
 +[[https://sebsauvage.net/wiki/doku.php?id=windows]] 
 + 
 +=== Clean IA === 
 +<file reg clean.reg> 
 +Windows Registry Editor Version 5.00 
 + 
 +; Created by: Sudeep James on May 2024 
 + 
 + 
 +[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\WindowsCopilot] 
 +"TurnOffWindowsCopilot"=dword:00000001 
 + 
 +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsCopilot] 
 +"TurnOffWindowsCopilot"=dword:00000001 
 + 
 +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge] 
 +"HubsSidebarEnabled"=dword:00000000 
 + 
 +[HKEY_CURRENT_USER\Software\Policies\Microsoft\Windows\Explorer] 
 +"DisableSearchBoxSuggestions"=dword:00000001 
 + 
 +[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Explorer] 
 +"DisableSearchBoxSuggestions"=dword:00000001 
 +</file> 
 + 
 +=== Widget === 
 +Supprimer 
 +<code>Get-AppxPackage *WebExperience* | Remove-AppxPackage</code> 
 +Remettre 
 +<code>winget install --id 9MSSGKG348SP</code> 
 +source https://www.pcastuces.com/desinstaller-totalement-les-widgets-windows-11.htm 
 + 
 +=== Nettoyages applications non indispensables === 
 + 
 +<code> 
 +Get-AppxPackage *YourPhone* | Remove-AppxPackage 
 +Get-AppxPackage *QuickAssist* | Remove-AppxPackage 
 +Get-AppxPackage *PowerAutomateDesktop* | Remove-AppxPackage 
 +Get-AppxPackage *MSTeams* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Todos* | Remove-AppxPackage 
 +Get-AppxPackage *Clipchamp* | Remove-AppxPackage 
 +Get-AppxPackage *MicrosoftFamily* | Remove-AppxPackage 
 +Get-AppxPackage *BingSearch* | Remove-AppxPackage 
 +Get-AppxPackage *BingWeather* | Remove-AppxPackage 
 +Get-AppxPackage *BingNews* | Remove-AppxPackage 
 +Get-AppxPackage *StartExperiencesApp* | Remove-AppxPackage 
 +Get-AppxPackage *WindowsFeedbackHub* | Remove-AppxPackage 
 +</code> 
 + 
 +<code> 
 +$packagePrefixes = 'AppUp.IntelManagementandSecurityStatus', 
 +'Clipchamp.Clipchamp',  
 +'DolbyLaboratories.DolbyAccess', 
 +'DolbyLaboratories.DolbyDigitalPlusDecoderOEM', 
 +'Microsoft.BingNews', 
 +'Microsoft.BingSearch', 
 +'Microsoft.BingWeather', 
 +'Microsoft.Copilot', 
 +'Microsoft.Windows.CrossDevice', 
 +'Microsoft.GamingApp', 
 +'Microsoft.GetHelp', 
 +'Microsoft.Getstarted', 
 +'Microsoft.Microsoft3DViewer', 
 +'Microsoft.MicrosoftOfficeHub', 
 +'Microsoft.MicrosoftSolitaireCollection', 
 +'Microsoft.MicrosoftStickyNotes', 
 +'Microsoft.MixedReality.Portal', 
 +'Microsoft.MSPaint', 
 +'Microsoft.Office.OneNote', 
 +'Microsoft.OfficePushNotificationUtility', 
 +'Microsoft.OutlookForWindows', 
 +'Microsoft.Paint', 
 +'Microsoft.People', 
 +'Microsoft.PowerAutomateDesktop', 
 +'Microsoft.SkypeApp', 
 +'Microsoft.StartExperiencesApp', 
 +'Microsoft.Todos', 
 +'Microsoft.Wallet', 
 +'Microsoft.Windows.DevHome', 
 +'Microsoft.Windows.Copilot', 
 +'Microsoft.Windows.Teams', 
 +'Microsoft.WindowsAlarms', 
 +'Microsoft.WindowsCamera', 
 +'microsoft.windowscommunicationsapps', 
 +'Microsoft.WindowsFeedbackHub', 
 +'Microsoft.WindowsMaps', 
 +'Microsoft.WindowsSoundRecorder', 
 +'Microsoft.WindowsTerminal', 
 +'Microsoft.Xbox.TCUI', 
 +'Microsoft.XboxApp', 
 +'Microsoft.XboxGameOverlay', 
 +'Microsoft.XboxGamingOverlay', 
 +'Microsoft.XboxIdentityProvider', 
 +'Microsoft.XboxSpeechToTextOverlay', 
 +'Microsoft.YourPhone', 
 +'Microsoft.ZuneMusic', 
 +'Microsoft.ZuneVideo', 
 +'MicrosoftCorporationII.MicrosoftFamily', 
 +'MicrosoftCorporationII.QuickAssist', 
 +'MSTeams', 
 +'MicrosoftTeams',  
 +'Microsoft.WindowsTerminal', 
 +'Microsoft.549981C3F5F10' 
 + 
 +$packagesToRemove = $packages | Where-Object { 
 +    $packageName = $_ 
 +    $packagePrefixes -contains ($packagePrefixes | Where-Object { $packageName -like "*$_*" }) 
 +
 +foreach ($package in $packagesToRemove) { 
 +    Get-AppxPackage $package* | Remove-AppxPackage 
 +
 +</code> 
 + 
 +& 'dism' '/English' "/image:$($ScratchDisk)\scratchdir" '/Remove-ProvisionedAppxPackage' "/PackageName:$package" 
 +=== Suppression OneDrive === 
 + 
 +<code> 
 +taskill /f /im /OneDrive.exe 
 +C:\Windows\System32\OneDriveSetup.exe /uninstall 
 +</code> 
 + 
 + 
 +Brute 
 +<code> 
 +Get-AppxPackage *WebExperience* | Remove-AppxPackage 
 +Get-AppxPackage *Clipchamp.Clipchamp* | Remove-AppxPackage  
 +Get-AppxPackage *DolbyLaboratories.DolbyAccess* | Remove-AppxPackage 
 +Get-AppxPackage *DolbyLaboratories.DolbyDigitalPlusDecoderOEM* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.BingNews* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.BingSearch* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.BingWeather* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Copilot* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Windows.CrossDevice* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.GamingApp* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.GetHelp* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Getstarted* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Microsoft3DViewer* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.MicrosoftOfficeHub* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.MicrosoftSolitaireCollection* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.MicrosoftStickyNotes* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.MixedReality.Portal* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Office.OneNote* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.OfficePushNotificationUtility* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.People* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.PowerAutomateDesktop* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.SkypeApp* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.StartExperiencesApp* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Todos* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Wallet* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Windows.DevHome* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Windows.Copilot* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Windows.Teams* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.WindowsAlarms* | Remove-AppxPackage 
 +Get-AppxPackage *microsoft.windowscommunicationsapps* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.WindowsFeedbackHub* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.WindowsMaps* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.Xbox.TCUI* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.XboxApp* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.XboxGameOverlay* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.XboxGamingOverlay* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.XboxIdentityProvider* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.XboxSpeechToTextOverlay* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.YourPhone* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.ZuneMusic* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.ZuneVideo* | Remove-AppxPackage 
 +Get-AppxPackage *MicrosoftCorporationII.QuickAssist* | Remove-AppxPackage 
 +Get-AppxPackage *MSTeams* | Remove-AppxPackage 
 +Get-AppxPackage *MicrosoftTeams* | Remove-AppxPackage  
 +</code> 
 + 
 +Autres à la main si besoin 
 +<code> 
 +Get-AppxPackage *AppUp.IntelManagementandSecurityStatus* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.OutlookForWindows* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.WindowsCamera* | Remove-AppxPackage 
 +Get-AppxPackage *Microsoft.WindowsTerminal* | Remove-AppxPackage 
 +Get-AppxPackage *MicrosoftCorporationII.MicrosoftFamily* | Remove-AppxPackage 
 +</code> 
 + 
 +Si besoin de réinstaller 
 +<code> 
 +C:\Windows\System32\OneDriveSetup.exe /install 
 +</code>
  
  ===  Services ====  ===  Services ====
-    * msconfig : tout ce qui n'est pas antivirus, pad, vidéo, etc pouvant normalement être viré sans problèmes {br} Note : préférer l'utilisation d' AUTORUN via WSCC ou dans les essentiels Sysinternals. +    * msconfig : tout ce qui n'est pas antivirus, pad, vidéo, etc pouvant normalement être viré sans problèmes {br} Note : préférer l'utilisation d' **AUTORUN** via **WSCC** ou dans les essentiels **Sysinternals**
-    *  services.msc+    *  services.msc est à éviter
  
  === Logiciels ====  === Logiciels ====