|
本帖最後由 maodou 於 2024-9-15 00:19 編輯
找到方法可以改TaskbarDa了,但是不知道可以用多久
Microsoft Store、Copilot、Widget 三個分開寫 (分三個PowerShell執行)- @echo off
- reg load HKLM\DEFAULT %SystemDrive%\Users\Default\ntuser.dat
- reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v "UnpinMsStore" /t REG_SZ /d "powershell -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -Command \"(((New-Object -ComObject Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() ^| ?{$_.Name -eq 'Microsoft Store'}).Verbs() ^| ?{$_.Name -match '^&K'}).DoIt()\"" /f
- reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v "UnpinCopilot" /t REG_SZ /d "powershell -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -Command \"(((New-Object -ComObject Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() ^| ?{$_.Name -eq 'Copilot'}).Verbs() ^| ?{$_.Name -match '^&K'}).DoIt()\"" /f
- reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v "TaskbarDa" /t REG_SZ /d "powershell -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -Command \"Copy-Item $env:windir\System32\reg.exe $env:TEMP\reg1.exe ; ^& $env:TEMP\reg1.exe add 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced' /v TaskbarDa /t REG_DWORD /d 0 /f ; Remove-Item $env:TEMP\reg1.exe -Force\"" /f
- reg unload HKLM\DEFAULT
複製代碼 Microsoft Store、Copilot、Widget 三個一起寫 (同一個PowerShell執行)- @echo off
- reg load HKLM\DEFAULT %SystemDrive%\Users\Default\ntuser.dat
- reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\RunOnce" /v "TaskbarJobs" /t REG_SZ /d "powershell -WindowStyle Hidden -NoProfile -ExecutionPolicy Bypass -Command \"(((New-Object -ComObject Shell.Application).NameSpace('shell:::{4234d49b-0245-4df3-b780-3893943456e1}').Items() ^| ?{($_.Name -eq 'Microsoft Store') -or ($_.Name -eq 'Copilot')}).Verbs() ^| ?{$_.Name -match '^&K'}).DoIt() ; Copy-Item $env:windir\System32\reg.exe $env:TEMP\reg1.exe ; ^& $env:TEMP\reg1.exe add 'HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced' /v TaskbarDa /t REG_DWORD /d 0 /f ; Remove-Item $env:TEMP\reg1.exe -Force\"" /f
- reg unload HKLM\DEFAULT
複製代碼 Windows 11 24H2 專業版 26100.1742
測試過可以 |
-
|