Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision |
windows:notes:edge_tweaks [2025/05/03 00:50] – [Edge Tamer Batch] Sean Rhone | windows:notes:edge_tweaks [2025/05/16 21:39] (current) – external edit 127.0.0.1 |
---|
====== Edge Tamer Batch ====== | ====== Edge Tamer Batch ====== |
| |
* TODO: Way to quietly open Edge after tame and delete auto-created desktop/start links; or stop the creation of them (policy?) | |
| |
"notepad.exe" "%UserProfile%\Downloads\Edge Tamer.bat" | "notepad.exe" "%UserProfile%\Downloads\Edge Tamer.bat" |
| |
<code> | <code> |
:: Settings | |
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "EfficiencyModeEnabled" /t REG_DWORD /d "0" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "EfficiencyModeEnabled" /t REG_DWORD /d "0" /f |
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "SleepingTabsEnabled" /t REG_DWORD /d "0" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "SleepingTabsEnabled" /t REG_DWORD /d "0" /f |
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "QuickViewOfficeFilesEnabled" /t REG_DWORD /d "0" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "QuickViewOfficeFilesEnabled" /t REG_DWORD /d "0" /f |
REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "AutoImportAtFirstRun" /t REG_DWORD /d "4" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Edge" /v "AutoImportAtFirstRun" /t REG_DWORD /d "4" /f |
| REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\EdgeUpdate" /v "RemoveDesktopShortcutDefault" /t REG_DWORD /d "2" /f |
:: Profile Reset | |
TASKKILL /F /IM "msedge.exe" | |
RMDIR /S /Q "%LocalAppData%\Microsoft\Edge" | |
| |
:: End</code> | :: End</code> |