meta data for this page
  •  

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
windows:ten [2026/06/08 22:14] – removed - external edit (Unknown date) 127.0.0.1windows:ten [2026/06/08 22:14] (current) – ↷ Page moved from os:windows:ten to windows:ten kilroy
Line 1: Line 1:
 +====== Windows 10 ======
 +//Tested on 1709//
 +
 +===== Windows 10 Antispy =====
 +
 +Without alternative:\\
 +[[https://www.oo-software.com/en/shutup10]]
 +
 +
 +===== Uninstall Apps =====
 +Currently the best:\\
 +[[https://github.com/Sycnex/Windows10Debloater]]
 +
 +==== Remove "System Apps" ====
 +//Edge, Xbox-whatever//
 +
 +  - Install "take ownerships"   <code>
 +Windows Registry Editor Version 5.00
 +
 +;Created by Vishal Gupta for AskVG.com
 +
 +[HKEY_CLASSES_ROOT\*\shell\runas]
 +@="Take ownership"
 +"HasLUAShield"=""
 +"NoWorkingDirectory"=""
 +
 +[HKEY_CLASSES_ROOT\*\shell\runas\command]
 +@="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
 +"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" && icacls \"%1\" /grant administrators:F"
 +
 +[HKEY_CLASSES_ROOT\Directory\shell\runas]
 +@="Take ownership"
 +"HasLUAShield"=""
 +"NoWorkingDirectory"=""
 +
 +[HKEY_CLASSES_ROOT\Directory\shell\runas\command]
 +@="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
 +"IsolatedCommand"="cmd.exe /c takeown /f \"%1\" /r /d y && icacls \"%1\" /grant administrators:F /t"
 +</code>
 +  - Take ownerships of "C:\Windows\SystemApps\whatever"
 +  - -> delete :-)
 +
 +===== Disable Defender =====
 +
 +<code>
 +Set-MpPreference -DisableRealtimeMonitoring $true
 +Set-MpPreference -ExclusionPath "C:\temp", "d:\Share"
 +Set-MpPreference -SevereThreatDefaultAction NoAction|Allow
 +Set-MpPreference -HighThreatDefaultAction NoAction|Allow
 +Set-MpPreference -LowThreatDefaultAction NoAction|Allow
 +Set-MpPreference -ModerateThreatDefaultAction NoAction|Allow
 +-DisableIntrusionPreventionSystem
 +-DisableArchiveScanning 
 +-DisableBehaviorMonitoring
 +-DisableRemovableDriveScanning
 +</code>
 +
 +
 +===== Chocolatery =====
 +
 +[[https://chocolatey.org/install]]
 +
 +<code>
 +choco install git python notepadplusplus mingw windbg ghidra radare2 freefilesync x64dbg.portable 7zip chromium wireshark docker-desktop HxD
 +
 +</code>
 +
 +===== WSL =====
 +
 +<code>
 +Enable-WindowsOptionalFeature -Online -FeatureName Microsoft-Windows-Subsystem-Linux 
 +
 +</code>