os:windows:ten
This is an old revision of the document!
Table of Contents
Windows 10
Deactivate Telemetry and all that nifty cloud bs
Uninstall Apps
# Allinone.. will probably crash powershell, but also remove most apps: Get-AppxPackage -allusers | Remove-AppxPackage # Uninstallable Apps: Get-AppxPackage -allusers *3dbuilder* | Remove-AppxPackage Get-AppxPackage -allusers *windowsalarms* | Remove-AppxPackage Get-AppxPackage -allusers *windowscalculator* | Remove-AppxPackage Get-AppxPackage -allusers *windowscommunicationsapps* | Remove-AppxPackage Get-AppxPackage -allusers *windowscamera* | Remove-AppxPackage Get-AppxPackage -allusers *officehub* | Remove-AppxPackage Get-AppxPackage -allusers *skypeapp* | Remove-AppxPackage Get-AppxPackage -allusers *getstarted* | Remove-AppxPackage Get-AppxPackage -allusers *zunemusic* | Remove-AppxPackage Get-AppxPackage -allusers *windowsmaps* | Remove-AppxPackage Get-AppxPackage -allusers *solitairecollection* | Remove-AppxPackage Get-AppxPackage -allusers *bingfinance* | Remove-AppxPackage Get-AppxPackage -allusers *zunevideo* | Remove-AppxPackage Get-AppxPackage -allusers *bingnews* | Remove-AppxPackage Get-AppxPackage -allusers *onenote* | Remove-AppxPackage Get-AppxPackage -allusers *people* | Remove-AppxPackage Get-AppxPackage -allusers *windowsphone* | Remove-AppxPackage Get-AppxPackage -allusers *photos* | Remove-AppxPackage Get-AppxPackage -allusers *windowsstore* | Remove-AppxPackage Get-AppxPackage -allusers *bingsports* | Remove-AppxPackage Get-AppxPackage -allusers *soundrecorder* | Remove-AppxPackage Get-AppxPackage -allusers *bingweather* | Remove-AppxPackage Get-AppxPackage -allusers *xboxapp* | Remove-AppxPackage
Remove "System Apps"
Edge, Xbox-whatever
- Install “take ownerships”
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"
- Take ownerships of “C:\Windows\SystemApps\whatever”
- → delete
Disable Defender
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
os/windows/ten.1524034450.txt.gz · Last modified: 2018/04/18 08:54 by ebaer