goo blog サービス終了のお知らせ 

Ekrino書簡

頭の整理&ひまつぶしに適当なことを書く

Windows11 インストールしたらやること

2025年02月02日 | PC
Win11 24H2が強制されて、設定その他諸々に半日潰れました。

やったこと
①PowerShellでプリインストールのゴミAppを消す
Get-AppxPackage Clipchamp.Clipchamp | Remove-AppxPackage #Clipchamp
Get-AppxPackage Microsoft.549981C3F5F10 | Remove-AppxPackage #Cortana
Get-AppxPackage Microsoft.BingNews | Remove-AppxPackage #ニュース
Get-AppxPackage Microsoft.BingWeather | Remove-AppxPackage #天気
Get-AppxPackage Microsoft.Copilot | Remove-AppxPackage #Copilot
Get-AppxPackage Microsoft.GamingApp | Remove-AppxPackage #Xbox
Get-AppxPackage Microsoft.GetHelp | Remove-AppxPackage #問い合わせ
Get-AppxPackage Microsoft.Getstarted | Remove-AppxPackage #ヒント
Get-AppxPackage Microsoft.MicrosoftOfficeHub | Remove-AppxPackage #Microsoft365(Office)
Get-AppxPackage Microsoft.MicrosoftSolitaireCollection | Remove-AppxPackage #Solitaire & Casual Games
Get-AppxPackage Microsoft.OutlookForWindows | Remove-AppxPackage #Outlook
Get-AppxPackage Microsoft.People | Remove-AppxPackage #隠れアプリ「アドレス帳」
Get-AppxPackage Microsoft.PowerAutomateDesktop | Remove-AppxPackage #Power Automate
Get-AppxPackage Microsoft.WindowsFeedbackHub | Remove-AppxPackage #Feedback Hub
Get-AppxPackage Microsoft.WindowsMaps | Remove-AppxPackage #マップ
Get-AppxPackage Microsoft.Xbox.TCUI | Remove-AppxPackage #Xbox
Get-AppxPackage Microsoft.XboxGameOverlay | Remove-AppxPackage #Xbox
Get-AppxPackage Microsoft.XboxGamingOverlay | Remove-AppxPackage #Game Bar
Get-AppxPackage Microsoft.XboxIdentityProvider | Remove-AppxPackage #Xbox
Get-AppxPackage Microsoft.XboxSpeechToTextOverlay | Remove-AppxPackage #Xbox
Get-AppxPackage Microsoft.YourPhone | Remove-AppxPackage #スマホ同期
Get-AppxPackage Microsoft.ZuneMusic | Remove-AppxPackage #メディアプレイヤー
Get-AppxPackage Microsoft.ZuneVideo | Remove-AppxPackage #映画&テレビ
Get-AppxPackage MicrosoftCorporationII.MicrosoftFamily | Remove-AppxPackage #Family
Get-AppxPackage MicrosoftCorporationII.QuickAssist | Remove-AppxPackage #クイックアシスト
Get-AppxPackage MicrosoftTeams | Remove-AppxPackage #Microsoft Teams

他は右クリックでも消せるはず。
「はじめに」ないし「使い始める」は何故か消せない。

②不要なサービスを停止にする
sc.exe config AxInstSV start=disabled #ActiveX Installer
sc.exe config BDESVC start=disabled #BitLocker Drive Enctyption Service
sc.exe config wbengine start=disabled #Block Level Backup Engine Service
sc.exe config CertPropSvc start=disabled #Certificate Propagation
sc.exe config DiagTrack start=disabled #Connected User Experiences and Telemetry
sc.exe config DPS start=disabled #Diagnostic Policy Service
sc.exe config WdiServiceHost start=disabled #Diagnostic Service Host
sc.exe config WdiSystemHost start=disabled #Diagnostic System Host
sc.exe config TrkWks start=disabled #Distributed Link Tracking Client
sc.exe config MSDTC start=disabled #Distributed Transaction Coordinator
sc.exe config MapsBroker start=disabled #Downloaded Maps Manager
sc.exe config Fax start=disabled #Fax
sc.exe config fdPHost start=disabled #Function Discovery Provider Host
sc.exe config FDResPub start=disabled #Function Discovery Resource Publication
sc.exe config lfsvc start=disabled #Geolocation Service
sc.exe config SharedAccess start=disabled #Internet Connection Sharing
sc.exe config MSiSCSI start=disabled #Microsoft iSCSI Initiator Service
sc.exe config WPDBusEnum start=disabled #Portable Device Enumerator Service
sc.exe config SensorDataService start=disabled #SensorDataService
sc.exe config SensrSvc start=disabled #Sensor Monitoring Service
sc.exe config SensorService start=disabled #Sensor Service
sc.exe config SNMPTrap start=disabled #SNMP Trap
sc.exe config SSDPSRV start=disabled #SSDP Discovery
sc.exe config SysMain start=disabled #SysMain
sc.exe config TapiSrv start=disabled #Telephony
sc.exe config upnphost start=disabled #UPnP Device Host
sc.exe config WerSvc start=disabled #Windows Error Reporting Service
sc.exe config WMPNetworkSvc start=disabled #Windows Media Player Network Sharing Service
sc.exe config WinRM start=disabled #Windows Remote Management
sc.exe config WSearch start=disabled #Windows Search
sc.exe config XblAuthManager start=disabled #Xbox Live Auth Manager
sc.exe config XblGameSave start=disabled #Xbox Live セーブ データ
sc.exe config XboxNetApiSvc start=disabled #Xbox Live ネットワーキング サービス
sc.exe config RetailDemo start=disabled #市販デモ サービス

③タスクを止める(タスクマネージャ)
  • \Microsoft\Windows\Maintenance
    WinSAT
  • \Microsoft\Windows\Application Experience
    Microsoft Compatibility Appraiser
    Microsoft Compatibility Appraiser Exp
    PcaPatchDbTask
schtasks /Change /TN "Microsoft\Windows\Maintenance\WinSAT" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser Exp" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\Microsoft Compatibility Appraiser" /Disable
schtasks /Change /TN "Microsoft\Windows\Application Experience\PcaPatchDbTask" /Disable

④有用なアプリを入れる
7zip

⑤PowerShellで右クリックメニューを戻す
・Win10以前の仕様にする
reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve 

・Win11の仕様に戻す
reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f 

おしまい\(^o^)/

コメントを投稿