Updated: Just use qutebrowser (and disable javascript). The web is done for.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Function Start-WindowsCleanup | |
| { | |
| <# | |
| .SYNOPSIS | |
| `Start-WindowsCleanup` cleans-up a system clutter and reclaims disk space. | |
| .DESCRIPTION | |
| The `Start-WindowsCleanup` cmdlet performs the following clean-up tasks to reclaim disk space: | |
| Clears the contents of common directories of the Windows file system for both the current running user and the global system that are used to store temporary, logging, backup, cache and dump files. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ;USE AT YOUR OWN RISK! | |
| ;USE AT YOUR OWN RISK! | |
| ;USE AT YOUR OWN RISK! | |
| ;Improves system responsiveness and network speed. | |
| [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Multimedia\SystemProfile] | |
| "SystemResponsiveness"=dword:00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\PeerDistSvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\diagsvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Dnscache] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\GraphicsPerfSvc] | |
| "Start"=dword:00000004 | |
| [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\AppVClient] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo off | |
| Title w10onARM Setup batch | |
| echo Blocking junk apps & echo. | |
| reg load HKLM\DEFAULT c:\users\default\ntuser.dat | |
| reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v PreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
| reg add "HKLM\DEFAULT\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v OemPreInstalledAppsEnabled /t REG_DWORD /d 0 /f | |
| reg unload HKLM\DEFAULT | |
| echo Removing useless windows components & echo. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| ;Remove 'Give access to' Context Menu in Windows 10 | |
| [-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\Sharing] | |
| [-HKEY_CLASSES_ROOT\*\shellex\ContextMenuHandlers\ModernSharing] | |
| [-HKEY_CLASSES_ROOT\Directory\Background\shellex\ContextMenuHandlers\Sharing] | |
| [-HKEY_CLASSES_ROOT\Directory\shellex\ContextMenuHandlers\Sharing] | |
| [-HKEY_CLASSES_ROOT\Directory\shellex\CopyHookHandlers\Sharing] | |
| [-HKEY_CLASSES_ROOT\Directory\shellex\PropertySheetHandlers\Sharing] | |
| [-HKEY_CLASSES_ROOT\Drive\shellex\ContextMenuHandlers\Sharing] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| rem Or even better, create a system image! | |
| rem http://www.aomeitech.com/ab/standard.html | |
| rem https://www.macrium.com/reflectfree | |
| rem Things, that will get broken, that will get noticed ASAP or after restart, like Start or WiFi for sure! | |
| rem Disabling network services (Dhcp/NlaSvc/netprofm/nsi/RmSvc) will prevent you from managing network settings! | |
| rem Windows Defender Firewall is set to block all inbound/outbound except allowed apps, which have to be added first! | |
| rem Terminating "ShellExperienceHost.exe" will restart it and Start's functionality | |
| rem You can create a task, which runs after logon with one minute delay. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @echo on | |
| REM checked for Windows 10 | |
| REM fork from https://gist.github.com/theultramage/cbdfdbb733d4a5b7d2669a6255b4b94b | |
| REM you may want full list https://gist.github.com/raspi/203aef3694e34fefebf772c78c37ec2c | |
| REM SET attrib=+ATTRIB_HIDE | |
| SET attrib=-ATTRIB_HIDE | |
| REM Hard disk burst ignore time | |
| powercfg -attributes 0012ee47-9041-4b5d-9b77-535fba8b1442 80e3c60e-bb94-4ad8-bbe0-0d3195efc663 %attrib% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Windows Registry Editor Version 5.00 | |
| [HKEY_CLASSES_ROOT\CLSID\{0E270DAA-1BE6-48F2-AC49-4E2781B29975}] | |
| @="Creative Cloud Files" | |
| "System.IsPinnedToNameSpaceTree"=dword:00000000 | |
| [HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{0E270DAA-1BE6-48F2-AC49-4E2781B29975}] | |
| @="Creative Cloud Files" | |
| "System.IsPinnedToNameSpaceTree"=dword:00000000 |