| Both sides previous revisionPrevious revisionNext revision | Previous revision |
| windows:10 [2025/04/12 22:59] – [Edge Fix] Sean Rhone | windows:10 [2026/07/02 23:13] (current) – [Aero Lite Theme] Sean Rhone |
|---|
| |
| * Microsoft Windows 10 IoT Enterprise LTSC | * Microsoft Windows 10 IoT Enterprise LTSC |
| * Version 21H2 (OS Build 19044.5737) | * Version 21H2 (OS Build 19044.7417) |
| |
| ====== Resources ====== | ====== Resources ====== |
| |
| | * [[windows;notes;quick_commands|Quick Commands]] |
| * [[windows:notes:env_paths|Env PATH Variables]] | * [[windows:notes:env_paths|Env PATH Variables]] |
| * [[windows;notes;misc]] | * [[windows;notes;misc]] |
| * [[https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-|System Error Codes (0-499+)]] | * [[https://learn.microsoft.com/en-us/windows/win32/debug/system-error-codes--0-499-|System Error Codes (0-499+)]] |
| | * [[https://learn.microsoft.com/en-us/windows/deployment/update/windows-update-error-reference|Windows Update error codes]] |
| * http://redeem.microsoft.com/ (TODO: Put somewhere else) | * http://redeem.microsoft.com/ (TODO: Put somewhere else) |
| * [[https://github.com/Espionage724/Windows|GitHub Batch Files]] | * [[https://github.com/Espionage724/Windows|GitHub Batch Files]] |
| |
| ===== TODO ===== | ===== TODOs ===== |
| |
| * https://support.microsoft.com/en-us/topic/kb4072698-windows-server-and-azure-stack-hci-guidance-to-protect-against-silicon-based-microarchitectural-and-speculative-execution-side-channel-vulnerabilities-2f965763-00e2-8f98-b632-0d96f30c8c8e#ID0EBBBBJ=FeatureSettingsOverride | * https://learn.microsoft.com/en-us/troubleshoot/windows-server/remote/frame-rate-limited-to-30-fps (60 FPS RDP) |
| * https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/bcdedit--set | * https://ss64.com/nt/title.html (''TITLE'' in batch files) |
| * https://forums.blurbusters.com/viewtopic.php?f=10&t=13429 (enable rss) | * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-lanmanserver |
| | * https://learn.microsoft.com/en-us/windows/client-management/mdm/policy-csp-privacy |
| | * https://learn.microsoft.com/en-us/previous-versions/windows/it-pro/windows-10/deployment/compatibility/compatibility-fixes-for-windows-8-windows-7-and-windows-vista |
| | * https://forums.overclockers.co.uk/threads/windows-disabling-network-throttling.18558659/#post-25335538 |
| | * https://learn.microsoft.com/en-us/troubleshoot/windows-server/networking/registry-entry-control-tcp-acknowledgment-behavior + [[https://support.purestorage.com/bundle/m_microsoft_platform_guide/page/Solutions/Microsoft_Platform_Guide/Multipath-IO_and_Storage_Settings/topics/concept/c_disabling_delayed_ack_and_nagle.html|this]] (TCP ACK) |
| | * https://gist.github.com/StefanoBelli/0aab46b858a797c4eedb90e8799dffa2?permalink_comment_id=4157856#gistcomment-4157856 (check GPE interrupt ''System'' process) |
| | |
| | <code>netstat -na | Select-String "80" |
| | netsh "branchcache" set service "DISABLED"</code> |
| |
| ====== Updates ====== | ====== Updates ====== |
| |
| ===== Desktop ===== | ===== Desktop ===== |
| | |
| | ==== Calculator ==== |
| | |
| | "%SystemRoot%\System32\win32calc.exe" |
| | |
| | Calculator |
| |
| ==== Maintenance ==== | ==== Maintenance ==== |
| |
| "notepad.exe" "%UserProfile%\Desktop\Maintenance.bat" | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Desktop\Maintenance.bat" |
| |
| <code> | <code> |
| :: .NET Framework 4 | @echo off |
| "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" update /force /queue | |
| "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" update /force /queue | TITLE Maintenance |
| "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems | CD "%Temp%" |
| "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" executequeueditems | |
| | :: Disk Cleanup Set-up |
| | "%SystemRoot%\System32\cleanmgr.exe" /sageset:9999 |
| |
| :: System File Check, Cleanup, and Repair | :: System File Check, Cleanup, and Repair |
| "%SystemRoot%\System32\sfc.exe" /scannow | "%SystemRoot%\System32\sfc.exe" /scannow |
| |
| :: Classic Disk Cleanup | :: Disk Cleanup |
| "%SystemRoot%\System32\cleanmgr.exe" /sageset:65535 | "%SystemRoot%\System32\cleanmgr.exe" /sagerun:9999 |
| "%SystemRoot%\System32\cleanmgr.exe" /sagerun:65535 | |
| |
| :: Volume Shadow Copy | :: Volume Shadow Copy |
| "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All | "%SystemRoot%\System32\vssadmin.exe" Delete Shadows /All |
| |
| | :: USN Change Journal |
| | "%SystemRoot%\System32\fsutil.exe" usn deleteJournal /D "%SystemDrive%" |
| | |
| | :: .NET Framework 4 |
| | "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" update /force /queue |
| | "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" update /force /queue |
| | "%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\ngen.exe" executequeueditems |
| | "%SystemRoot%\Microsoft.NET\Framework64\v4.0.30319\ngen.exe" executequeueditems |
| | |
| | ECHO Explorer close |
| PAUSE | PAUSE |
| | "%SystemRoot%\System32\taskkill.exe" /F /IM "explorer.exe" |
| | "%SystemRoot%\System32\timeout.exe" /T "2" /NOBREAK |
| | |
| | :: Icon Cache |
| | DEL /F /Q "%LocalAppData%\Microsoft\Windows\Explorer\"*".db" |
| | DEL /F /Q "%UserProfile%\AppData\Local\IconCache.db" |
| | |
| | :: Temp Dirs |
| | DEL /F /Q "%LocalAppData%\Temp\*" |
| | DEL /F /Q "%SystemRoot%\Temp\*" |
| | |
| | TIMEOUT /T "2" /NOBREAK |
| | START explorer.exe |
| |
| :: Defrag/Trim | :: Defrag/Trim |
| | ECHO Defrag |
| | PAUSE |
| "%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority | "%SystemRoot%\System32\Defrag.exe" /AllVolumes /Defrag /TierOptimize /SlabConsolidate /Retrim /Optimize /PrintProgress /Verbose /NormalPriority |
| |
| |
| :: End</code> | :: End</code> |
| | |
| | ===== Downloads ===== |
| | |
| | ==== Remove Intel Microcode ==== |
| | |
| | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\Remove Intel Microcode.bat" |
| | |
| | <code> |
| | @echo off |
| | |
| | CD "%Temp%" |
| | |
| | "%SystemRoot%\System32\takeown.exe" /F "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" |
| | "%SystemRoot%\System32\icacls.exe" "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" /grant "Administrators:F" |
| | |
| | DEL /Q "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" |
| | DIR /B "%SystemRoot%\System32\mcupdate_GenuineIntel.dll" |
| | |
| | PAUSE |
| | |
| | :: End</code> |
| | |
| | "%UserProfile%\Downloads\Remove Intel Microcode.bat" |
| |
| ===== Start Menu ===== | ===== Start Menu ===== |
| | |
| | ==== SSH ==== |
| | |
| | * TODO: ''MKDIR'' new folder + shortcut for update + wiki backup |
| | |
| | "%SystemRoot%\explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" |
| | |
| | "%SystemRoot%\System32\OpenSSH\ssh.exe" -o "StrictHostKeyChecking='no'" -o "UserKnownHostsFile='NUL'" "192.168.1.152" |
| | |
| | Kraityn |
| |
| ==== RDP ==== | ==== RDP ==== |
| |
| "notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp" | * https://learn.microsoft.com/en-us/azure/virtual-desktop/rdp-properties |
| | * [[https://learn.microsoft.com/en-us/previous-versions/windows/apps/hh994953(v=win.10)|https://learn.microsoft.com/en-us/previous-versions/windows/apps/hh994953(v=win.10)]] |
| | |
| | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Documents\Alira (LAN).rdp" |
| |
| <code> | <code> |
| full address:s:192.168.1.152 | full address:s:192.168.1.152 |
| | networkautodetect:i:0 |
| | connection type:i:6 |
| | gatewayusagemethod:i:4 |
| | use redirection server name:i:0 |
| | prompt for credentials:i:0 |
| | allow font smoothing:i:1 |
| redirectprinters:i:0 | redirectprinters:i:0 |
| redirectcomports:i:0 | redirectcomports:i:0 |
| === Start Menu === | === Start Menu === |
| |
| "explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" | "%SystemRoot%\explorer.exe" "%AppData%\Microsoft\Windows\Start Menu\Programs\Accessories" |
| |
| "%UserProfile%\Documents\Alira (LAN).rdp" | "%UserProfile%\Documents\Alira (LAN).rdp" |
| |
| Alira | Alira |
| | |
| | ==== Update Office ==== |
| | |
| | "%SystemRoot%\explorer.exe" "%ProgramData%\Microsoft\Windows\Start Menu\Programs\Microsoft Office Tools" |
| | |
| | "%CommonProgramFiles%\microsoft shared\ClickToRun\OfficeC2RClient.exe" /update "user" forceappshutdown="True" displaylevel="True" |
| | |
| | Update Office |
| |
| ====== Settings ====== | ====== Settings ====== |
| |
| ===== Explorer ===== | ===== BCDEdit ===== |
| |
| ==== Separate Processes ==== | * [[windows;notes;bcdedit|Notes]] |
| |
| **** | ===== Microsoft Edge ===== |
| |
| REG ADD "HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "SeparateProcess" /t REG_DWORD /d "1" /f | * [[windows;notes;edge_tweaks|Edge Tweaks]] |
| | |
| | ===== Printer ===== |
| | |
| | ipp://192.168.1.164/ipp/print |
| |
| ===== Power ===== | ===== Power ===== |
| |
| ==== Disable Hibernation and Fast Start ==== | ==== Disable Hibernation and Fast Start ==== |
| |
| **** | |
| |
| "powercfg.exe" /HIBERNATE "OFF" | "powercfg.exe" /HIBERNATE "OFF" |
| |
| ==== Enable Ultimate Performance Power Plan ==== | ==== Enable Ultimate Performance Power Plan ==== |
| |
| **** | |
| |
| "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61" | "powercfg.exe" /DUPLICATESCHEME "e9a42b02-d5df-448d-aa00-03f14749eb61" |
| |
| ==== Disable CPU Idle States ==== | |
| |
| * :!: Results in notably higher idle temps | |
| * Task Manager shows 100% core usage all the time | |
| |
| "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "1" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" | |
| |
| === Undo === | |
| |
| **** | |
| |
| "powercfg.exe" /SETACVALUEINDEX "SCHEME_CURRENT" "SUB_PROCESSOR" "IdleDisable" "0" & "powercfg.exe" /SETACTIVE "SCHEME_CURRENT" | |
| |
| ==== More Settings ==== | ==== More Settings ==== |
| |
| **** | |
| |
| "powercfg.exe" /Qh | "powercfg.exe" /Qh |
| |
| ===== Disable Threaded DPCs ===== | ===== SMB ===== |
| |
| **** | "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "Set-SmbClientConfiguration -EnableBandwidthThrottling 0 -Force" |
| | |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\kernel" /v "ThreadDpcEnable" /t "REG_DWORD" /d "0" /f | |
| |
| ===== Disable Clipboard History ===== | ===== Disable Clipboard History ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "AllowClipboardHistory" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Cortana and Web Search ===== | ===== Disable Cortana and Web Search ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\Windows Search" /v "AllowCortana" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Game DVR ===== | ===== Disable Game DVR ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\GameDVR" /v "AllowgameDVR" /t "REG_DWORD" /d "0" /f |
| |
| ===== Disable Last Access Time File Updates ===== | ===== Quick Lock Screen ===== |
| |
| **** | * Directly shows password prompt |
| |
| fsutil behavior set disablelastaccess 1 | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "1" /f |
| |
| ===== Disable Online Speech Recognition ===== | ==== Undo ==== |
| |
| **** | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Personalization" /v "NoLockScreen" /t REG_DWORD /d "0" /f |
| | |
| | ===== Disable Online Speech Recognition ===== |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\InputPersonalization" /v "AllowInputPersonalization" /t REG_DWORD /d "0" /f |
| |
| ===== Disable Remote Desktop ===== | ===== Disable Remote Desktop ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services" /v "fDenyTSConnections" /t REG_DWORD /d "1" /f |
| |
| ===== Disable Shared Experiences ===== | ===== Disable Shared Experiences ===== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\System" /v "EnableCdp" /t REG_DWORD /d "0" /f |
| |
| ===== Disable SmartScreen ===== | ===== Disable System Restore ===== |
| |
| * General | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f |
| * Windows Store Apps | |
| * Microsoft Edge | |
| |
| reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "SmartScreenEnabled" /t "REG_SZ" /d "Off" /f | ===== Disable Telemetry Features ===== |
| |
| reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\AppHost" /v "EnableWebContentEvaluation" /t "REG_DWORD" /d "0" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\PhishingFilter" /v "EnabledV9" /t "REG_DWORD" /d "0" /f | ===== Disable User Account Control ===== |
| |
| ===== Disable Startup Delay ===== | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f |
| |
| **** | ===== Enable FIPS Mode ===== |
| |
| reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v "StartupDelayInMSec" /t "REG_DWORD" /d "0" /f | * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation |
| |
| ===== Disable System Restore ===== | "%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f |
| |
| **** | "%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" -Command "$md5 = New-Object -TypeName 'System.Security.Cryptography.MD5CryptoServiceProvider'" |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\SystemRestore" /v "DisableSR " /t "REG_DWORD" /d "1" /f | ===== Remove Quick Access ===== |
| |
| ===== Disable Telemetry Features ===== | reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f |
| |
| **** | ===== Remove Windows Search ===== |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DataCollection" /v "AllowTelemetry" /t "REG_DWORD" /d "0" /f | "%SystemRoot%\System32\sc.exe" stop "WSearch" & "%SystemRoot%\System32\sc.exe" config "WSearch" "start=disabled" |
| |
| ===== Disable User Account Control ===== | "%SystemRoot%\System32\Dism.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove |
| |
| **** | ===== Show All Folders in File Explorer Pane ===== |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "EnableLUA" /t "REG_DWORD" /d "0" /f | reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f |
| |
| ===== Disable Windows Defender ===== | ===== Verbose Shutdown ===== |
| |
| **** | reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows Defender" /v "DisableAntiSpyware" /t "REG_DWORD" /d "1" /f | ===== DX Refresh Rate ===== |
| |
| ===== Enable FIPS Mode ===== | * https://steamcommunity.com/app/227600/discussions/0/864979008327344181/ |
| | * [[https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate|https://www.pcgamingwiki.com/wiki/Glossary:Frame_rate_(FPS)#Force_games_to_use_a_custom_refresh_rate]] |
| |
| * https://learn.microsoft.com/en-us/windows/security/security-foundations/certification/fips-140-validation | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "760" /reg:64 /f |
| * [[windows;notes;misc#fips_test|Test]] | |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "1" /f | REG ADD "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\DirectDraw" /v "ForceRefreshRate" /t "REG_DWORD" /d "760" /reg:32 /f |
| |
| ==== Undo ==== | ====== Other ====== |
| |
| **** | ===== HOSTS ===== |
| |
| REG ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\FipsAlgorithmPolicy" /v "Enabled" /t "REG_DWORD" /d "0" /f | * https://scripttiger.github.io/alts/ |
| |
| ===== Remove Quick Access ===== | ==== Back-up ==== |
| |
| **** | COPY /-Y "%SystemRoot%\System32\drivers\etc\hosts" "%SystemRoot%\System32\drivers\etc\hosts.bak" |
| |
| reg add "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer" /v "HubMode" /t "REG_DWORD" /d "1" /f | "%SystemRoot%\explorer.exe" "%SystemRoot%\System32\drivers\etc" |
| |
| ===== Remove Windows Search ===== | ==== fakenews + gambling ==== |
| |
| "sc.exe" stop "WSearch" & "sc.exe" config "WSearch" "start=disabled" | * https://scripttiger.github.io/alts/compressed/blacklist-fg.txt |
| | * Unified hosts + fakenews + gambling (Compressed) |
| |
| "DISM.exe" /Online /Disable-Feature /FeatureName:"SearchEngine-Client-Package" /Remove | "%SystemRoot%\System32\curl.exe" --output "%Temp%\blacklist-fg.txt" --location "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" --progress-bar && MOVE /Y "%Temp%\blacklist-fg.txt" "%SystemRoot%\System32\drivers\etc\hosts" && "%SystemRoot%\System32\ipconfig.exe" /flushdns && "%SystemRoot%\System32\ipconfig.exe" /registerdns |
| |
| ===== Show All Folders in File Explorer Pane ===== | ==== Script ==== |
| |
| **** | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\ScriptTiger Hosts (fakenews + gambling).bat" |
| |
| reg add "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Advanced" /v "NavPaneShowAllFolders" /t "REG_DWORD" /d "1" /f | <code> |
| | @echo off |
| |
| ===== Verbose Shutdown ===== | TITLE ScriptTiger Hosts (fakenews + gambling) |
| | CD "%Temp%" |
| |
| **** | "%SystemRoot%\System32\curl.exe" --output "%Temp%\blacklist-fg.txt" --location "https://scripttiger.github.io/alts/compressed/blacklist-fg.txt" --progress-bar |
| | MOVE /Y "%Temp%\blacklist-fg.txt" "%SystemRoot%\System32\drivers\etc\hosts" |
| |
| reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System" /v "VerboseStatus" /t REG_DWORD /d "1" /f | "%SystemRoot%\System32\ipconfig.exe" /flushdns |
| | "%SystemRoot%\System32\ipconfig.exe" /registerdns |
| |
| ====== Other ====== | :: End</code> |
| |
| ===== NetFX3 From Install Media ===== | "%UserProfile%\Downloads\ScriptTiger Hosts (fakenews + gambling).bat" |
| |
| * Change ''D:\'' to install media drive if necessary | ===== Microsoft Store ===== |
| |
| Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Downloads\Install Microsoft Store.bat" |
| |
| ===== Remove Most Modern UI Apps ===== | <code> |
| | @echo off |
| |
| * Not necessary with Local Account log-ins and Pro/Enterprise/LTSC editions | TITLE Install Microsoft Store |
| * Tested fine on 20H2, 21H2, and 23H2 | CD "%Temp%" |
| * :!: This broke the start menu on 1809 | |
| * :!: 2024/08: May cause Explorer windows to act broken at times on 11 23H2 | |
| |
| * Powershell Script ''*.ps1'' | "%SystemRoot%\System32\WSReset.exe" -i |
| | "%SystemRoot%\System32\timeout.exe" /T "20" /NOBREAK |
| |
| Get-AppxPackage -allusers | Remove-AppxPackage | "%SystemRoot%\System32\WSReset.exe" -i |
| |
| ===== Remove OneDrive ===== | EXIT /B |
| |
| taskkill /IM "OneDrive.exe" /F | :: End</code> |
| |
| %windir%\SysWOW64\OneDriveSetup.exe /uninstall | "%UserProfile%\Downloads\Install Microsoft Store.bat" |
| |
| rmdir "%UserProfile%\OneDrive" "%ProgramData%\Microsoft OneDrive" "%LocalAppData%\Microsoft\OneDrive" "C:\OneDriveTemp" /S /Q | ===== WinSAT ===== |
| |
| reg delete "HKCR\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f | "%SystemRoot%\System32\WinSAT.exe" "formal" -restart "clean" -v |
| |
| reg delete "HKCR\Wow6432Node\CLSID\{018D5C66-4533-4307-9B53-224DE2ED1FE6}" /f | "%SystemRoot%\System32\WinSAT.exe" forgethistory |
| | |
| | "%SystemRoot%\System32\WinSAT.exe" query |
| | |
| | ===== NetFX3 From Install Media ===== |
| | |
| | * Change ''D:\'' to install media drive if necessary |
| | |
| | Dism /online /enable-feature /featurename:"NetFX3" /All /Source:"D:\sources\sxs" /LimitAccess |
| |
| ===== Prevent Driver Changes ===== | ===== Prevent Driver Changes ===== |
| |
| ==== Add Prevent Policy ==== | ==== Add Prevent Policy ==== |
| |
| **** | |
| |
| reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /t "REG_SZ" /d "PCI\VEN_XXXX&DEV_XXXX&SUBSYS_XXXXXXXX&REV_XX" /f | reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /t "REG_SZ" /d "PCI\VEN_XXXX&DEV_XXXX&SUBSYS_XXXXXXXX&REV_XX" /f |
| |
| ==== Remove Prevent Policy ==== | ==== Remove Prevent Policy ==== |
| |
| **** | |
| |
| reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f | reg delete "HKLM\SOFTWARE\Policies\Microsoft\Windows\DeviceInstall\Restrictions\DenyDeviceIDs" /v "#" /f |
| |
| ====== Services ====== | ==== Alt ==== |
| |
| "sc.exe" stop "DPS" & "sc.exe" config "DPS" "start=disabled" | * Dynamic Tuning devices can be disabled from registry |
| | * 5 devices |
| |
| "sc.exe" stop "SysMain" & "sc.exe" config "SysMain" "start=disabled" | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Enum\ACPI\INT3400\2&daba3ff&1 |
| |
| ===== Spinesnap ===== | ===== Aero Lite Theme ===== |
| |
| "sc.exe" stop "esifsvc" & "sc.exe" config "esifsvc" "start=disabled" | COPY /Y "%SystemRoot%\Resources\Themes\aero.theme" "%UserProfile%\Desktop\aerolite.theme" |
| |
| "sc.exe" stop "ApHidMonitorService" & "sc.exe" config "ApHidMonitorService" "start=disabled" | "%SystemRoot%\System32\notepad.exe" "%UserProfile%\Desktop\aerolite.theme" |
| |
| ====== Edge Fix ====== | <code> |
| | [Theme] |
| | DisplayName=Aero Lite</code> |
| |
| * :?: Occasionally, Edge stops being able to open ([[https://forums.mydigitallife.net/threads/what-causes-edge-to-randomly-not-open.89145/|post]]) | <code> |
| * This deletes/resets the user profile | [VisualStyles] |
| | Path=%ResourceDir%\Themes\Aero\AeroLite.msstyles</code> |
| | |
| | ==== Apply ==== |
| | |
| | * Delete ''aerolite.theme'' after apply |
| | |
| | "%UserProfile%\Desktop\aerolite.theme" |
| | |
| | ==== Settings ==== |
| | |
| | * Personalization -> Colors |
| | |
| | * Default Windows mode: ''[x]'' Dark |
| | * Default app mode: ''[x]'' Light |
| | * ''[ ]'' Transparency effects |
| | * ''[ ]'' Automatically pick an accent color |
| | * Accent color on surfaces: ''[x]'' Title bars and window borders |
| | |
| | ===== TCP ACK ===== |
| | |
| | * ''DWORD'' = ''1'' for both |
| | |
| | HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Tcpip\Parameters\Interfaces |
| | |
| | TcpAckFrequency |
| | |
| | TcpNoDelay |
| | |
| | ===== Hide SSH Folder ===== |
| | |
| | "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.ssh" |
| | |
| | ====== Services ====== |
| |
| RMDIR /S /Q "%LocalAppData%\Microsoft\Edge" | * [[windows;notes;services|Notes]] |
| |
| ====== Programs ====== | ====== Programs ====== |
| ===== Android Tools ===== | ===== Android Tools ===== |
| |
| * [[https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip|Latest USB Driver]] | * [[https://dl-ssl.google.com/android/repository/latest_usb_driver_windows.zip|USB Driver]] |
| * [[https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip|Latest platform-tools]] | * [[https://dl-ssl.google.com/android/repository/platform-tools-latest-windows.zip|platform-tools]] |
| * :!: [[https://dl.google.com/android/repository/platform-tools_r30.0.5-windows.zip|30.0.5 platform-tools]] ((this specific version was needed to workaround a ''fastboot'' error that only happened on the latest version)) | |
| |
| ===== aria2 ===== | ===== aria2 ===== |
| |
| * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/ | * https://sourceforge.net/projects/brainworkshop/files/brainworkshop/ |
| |
| ===== Calculator ===== | |
| |
| * Only available on LTSB/LTSC | |
| |
| win32calc | |
| |
| ===== DirectX End-User Runtime ===== | ===== DirectX End-User Runtime ===== |
| |
| * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 | * https://www.microsoft.com/en-us/download/confirmation.aspx?id=8109 |
| * :?: TODO: Extras get installed if .NET 2/3 Windows feature is also installed | |
| |
| ===== .NET Runtime ===== | ===== Firefox ===== |
| |
| * https://aka.ms/dotnet/8.0/windowsdesktop-runtime-win-x64.exe | * https://www.firefox.com/en-US/download/all/desktop-esr/win64-msi/en-US/ |
| | * https://www.firefox.com/en-US/download/all/ |
| ===== Firefox ===== | |
| |
| * [[https://download.mozilla.org/?product=firefox-latest-ssl&os=win64&lang=en-US|exe]] | |
| * [[programs;firefox|Settings]] | * [[programs;firefox|Settings]] |
| * :?: May benefit from intentionally setting OS ClearType font settings ((default out-the-box Gamma is ''1.8''; clicking all-Next/defaults through ClearType config puts it at standard ''2.2'')) | |
| | ===== Thunderbird ===== |
| | |
| | * https://www.thunderbird.net/en-US/thunderbird/all/ |
| |
| ===== GIMP ===== | ===== GIMP ===== |
| |
| * https://www.gimp.org/downloads | * https://www.gimp.org/downloads |
| | |
| | * Install for me only (recommended) |
| | * Compact installation (no components) |
| | * Launch -> Create -> ''[ ]'' Show on Start |
| | |
| | ==== Hide Keyrings ==== |
| | |
| | "%SystemRoot%\System32\attrib.exe" +H "%UserProfile%\.dbus-keyrings" |
| |
| ===== KeePassXC ===== | ===== KeePassXC ===== |
| * https://www.libreoffice.org/download/download/ | * https://www.libreoffice.org/download/download/ |
| |
| * Options -> Uncheck Use Skia (HW accel should be checked) | * ''[ ]'' Use a Java runtime |
| * Options -> Disable Java runtime environment | |
| |
| ===== MuPDF ===== | ===== Okular ===== |
| |
| * https://mupdf.com/releases/index.html | * https://cdn.kde.org/ci-builds/graphics/okular/master/windows/ |
| * https://mupdf.com/releases/history.html | |
| |
| ===== Notepad++ ===== | ===== Notepad++ ===== |
| |
| * https://notepad-plus-plus.org/download | * https://github.com/notepad-plus-plus/notepad-plus-plus/releases |
| |
| ===== OBS ===== | ===== OBS ===== |
| |
| * https://www.qbittorrent.org/download | * https://www.qbittorrent.org/download |
| * https://github.com/waelisa/Best-blocklist/raw/main/wael.list.p2p.zip | |
| |
| ===== Thunderbird ===== | |
| |
| * https://download.mozilla.org/?product=thunderbird-latest-ssl&os=win64&lang=en-US | |
| |
| ===== VC++ Redist ===== | ===== VC++ Redist ===== |
| |
| | * https://forums.mydigitallife.net/threads/repack-visual-c-redistributable-runtimes-2025-10-17.76588/ |
| * https://github.com/abbodi1406/vcredist/releases | * https://github.com/abbodi1406/vcredist/releases |
| |
| "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /ai | |
| |
| "%UserProfile%\Downloads\VisualCppRedist_AIO_x86_x64.exe" /aiR | |
| |
| ===== VLC media player ===== | ===== VLC media player ===== |
| * https://download.videolan.org/pub/videolan/vlc/last/win64/ | * https://download.videolan.org/pub/videolan/vlc/last/win64/ |
| * https://www.videolan.org/vlc/download-windows.html | * https://www.videolan.org/vlc/download-windows.html |
| | |
| | * ''[ ]'' Web plugins |
| | * ''[ ]'' Context Menus |
| | * ''[x]'' Delete preferences and cache |
| |
| ===== Vulkan Runtime ===== | ===== Vulkan Runtime ===== |
| |
| * https://download.battle.net/en-us/?product=bnetdesk | * https://download.battle.net/en-us/?product=bnetdesk |
| | * [[http://dist.blizzard.com/downloads/bna-installers/322d5bb9ae0318de3d4cde7641c96425/retail.1/Battle.net-Setup-enUS.exe|Older exe]] (no SSL) |
| | * TODO: [[games;windows;notes;battle_net_client]] |
| |
| ===== Steam ===== | ===== Steam ===== |
| |
| * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]] | * [[https://www.dell.com/support/home/en-us/product-support/product/latitude-15-5591-laptop/drivers|Dell Latitude 5591 - Support and BIOS Updates]] |
| | |
| | ==== Keyboard ==== |
| | |
| | * EPOMAKER x LEOBOG Hi75 |
| | |
| | * https://epomaker.com/blogs/firmware/epomaker-x-leobog-hi75-firmware |
| | * https://epomaker.com/blogs/software/epomaker-x-leobog-hi75-driver |
| | |
| | ==== Mouse ==== |
| | |
| | * ATTACK SHARK R6 |
| | * :?: ''Hunting Shark Competitive Mode'' might cause mouse-hold to not hold-fire ARs on [[games:windows:cod_mw2_2009_iw4x_steamcmd|MW2]] |
| | |
| | "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://www.xvalleyinno.top/AttackShark/#/project/items" |
| | |
| | "%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge_proxy.exe" --app="https://cn.attackshark.pro/WebDriven/index.html#/project/items" |
| |
| ==== SATA/RST ==== | ==== SATA/RST ==== |
| |
| * [[https://www.intel.com/content/www/us/en/download/19755/intel-rapid-storage-technology-driver-installation-software-with-intel-optane-memory-8th-and-9th-gen-platforms.html|Intel Download Center]] | * ''16.8.5.1014'' ((OpROM is ''16.0.2.3402'', ''16.8.5.1014.5'' release notes matches latest v16 branch)) |
| * :?: Last tested version: ''17.11.3.1010'' | |
| |
| ==== Ethernet ==== | ==== Ethernet ==== |
| * I219-LM Gigabit | * I219-LM Gigabit |
| * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+)) | * Intel Corporation Ethernet Connection (7) I219-LM (rev 10) ((rev 10 drivers, not rev 18+)) |
| | * :?: 2026/05/23: ''12.19.2.64'' limits ''Receive'' and ''Transmit Buffers'' to ''2048'' on [[windows:11_ltsc|W11]], but can do ''4096''+ on 10 |
| |
| * [[https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html|Intel Download Center]] | * https://www.intel.com/content/www/us/en/products/sku/82185/intel-ethernet-connection-i219lm/downloads.html |
| * Last tested: ''Wired_driver_30.0.1_x64.zip'' | |
| |
| ==== Wireless ==== | ==== Wireless ==== |
| |
| * wireless-AC 9560 | * AX210 |
| * Intel Corporation Cannon Lake PCH CNVi WiFi (rev 10) | |
| |
| * [[https://www.intel.com/content/www/us/en/products/sku/99446/intel-wirelessac-9560/downloads.html|Intel Download Center]] (IT Administrators 8-)) | * https://www.intel.com/content/www/us/en/products/sku/204836/intel-wifi-6e-ax210-gig/downloads.html |
| * Last tested: ''WiFi-23.110.0-Driver64-Win10-Win11.zip'' | |
| |
| === Bluetooth === | ==== Graphics ==== |
| |
| * Last tested: ''BT-23.100.1-64UWD-Win10-Win11.zip'' | * Intel UHD Graphics 630 |
| | * Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] |
| |
| ==== Audio ==== | * https://www.intel.com/content/www/us/en/support/products/126790/graphics/processor-graphics/intel-uhd-graphics-family/intel-uhd-graphics-630.html |
| |
| * https://apps.microsoft.com/detail/9nb9srtl2kpt | === 8GB VRAM === |
| |
| ==== Graphics ==== | * :?: Aperture size and other BIOS options affect available memory ((1024MB aperture does ''7086 MB'' in ''dxdiag'')) |
| |
| * Intel UHD Graphics 630 | "%SystemRoot%\System32\reg.exe" ADD "HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4d36e968-e325-11ce-bfc1-08002be10318}\0000\GMM" /v "DedicatedSegmentSize" /t "REG_DWORD" /d "8192" /f |
| * Intel Corporation CoffeeLake-H GT2 [UHD Graphics 630] | |
| | ===== Boulderback ===== |
| | |
| | ==== Chipset ==== |
| | |
| | * https://www.dell.com/support/home/en-us/drivers/driversdetails?driverid=r0jhr&oscode=w764&productcode=precision-m6500 |
| | * ''9.1.1.1025'' |
| | |
| | ==== Graphics ==== |
| |
| * [[https://www.intel.com/content/www/us/en/support/products/126790/graphics/intel-uhd-graphics-family/intel-uhd-graphics-630.html#drivers-software|Intel Download Center]] | * https://www.amd.com/en/support/downloads/drivers.html/graphics/firepro/firepro-mobility-series/firepro-m7820-mobility.html |
| * Last tested: ''gfx_win_101.2135.exe'' | * [[https://drivers.amd.com/drivers/amdcleanuputility.exe|amdcleanuputility.exe]] |
| |