Installed software
7-Zip
File archiver used both as an end-user tool and internally by WinSux to extract DirectX and GPU drivers.
Google Chrome
Installed with privacy and performance policies applied. uBlock Origin Lite force-installed via group policy.
DirectX
Full DirectX runtime extracted and installed silently. New NVMe driver feature flags enabled alongside it.
Visual C++ Redistributables
All x86 and x64 redistributable versions from 2005 through 2022, installed silently.
7-Zip
Installed silently using7zip.exe /S. After installation, WinSux applies two registry settings and cleans up the Start Menu entry.
Registry configuration
Registry configuration
| Key | Value | Data | Effect |
|---|---|---|---|
HKCU\Software\7-Zip\Options | CascadedMenu | 0 | Disables cascading context submenu — items appear inline |
HKCU\Software\7-Zip\Options | ContextMenu | 259 | Sets which context menu actions are shown |
Start Menu cleanup
Start Menu cleanup
Google Chrome
Installed silently with--silent --install. After installation, services, scheduled tasks, and the Active Setup logon activation are removed so Chrome does not run anything in the background.
HKLM\SOFTWARE\Policies\Google\Chrome):
| Value | Data | Effect |
|---|---|---|
HardwareAccelerationModeEnabled | 0 | Disables GPU hardware acceleration |
BackgroundModeEnabled | 0 | Prevents Chrome from running after the window closes |
HighEfficiencyModeEnabled | 1 | Enables memory efficiency mode for inactive tabs |
ExtensionInstallForcelist → 1 | ddkjiahejlhfcafbddmgiahcphecmpfh | Force-installs uBlock Origin Lite from the Chrome Web Store |
- All Active Setup entries matching
*Chrome*removed fromHKLM:\Software\Microsoft\Active Setup\Installed Components - All services with
Googlein their name stopped and deleted - All scheduled tasks matching
*Google*unregistered
DirectX
The DirectX installer is extracted with 7-Zip, then run silently:Visual C++ Redistributables
All redistributable versions are installed silently in sequence. Installation uses hidden windows and no-restart flags throughout.All versions installed
All versions installed
| Version | Architectures | Install flags |
|---|---|---|
| 2005 | x86, x64 | /Q /C:"msiexec /i vcredist.msi /qn /norestart" |
| 2008 | x86, x64 | /q |
| 2010 | x86, x64 | /quiet /norestart |
| 2012 | x86, x64 | /quiet /norestart |
| 2013 | x86, x64 | /quiet /norestart |
| 2015–2022 | x86, x64 | /quiet /norestart |
Removed software
Microsoft Edge
Edge is uninstalled through a multi-stage process that handles all known variants:Stop all Edge-related processes
Terminates
msedge, msedgewebview2, MicrosoftEdgeUpdate, Copilot, WidgetService, Widgets, and others.Remove EdgeUpdate registration
Deletes
EdgeUpdate registry keys from all eight registry locations (HKCU/HKLM, 32/64-bit, policy paths).Uninstall Edge via uninstall string
Reads
UninstallString from HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Edge and runs it with --force-uninstall.Remove Edge services and folders
Stops and deletes all services matching
*Edge*. Removes C:\Program Files (x86)\Microsoft.The region is temporarily set to US (244) before uninstall and restored afterward. Some Edge uninstallers check the region.
Microsoft OneDrive
All known OneDrive variants are uninstalled:Other removed applications
| Application | Removal method |
|---|---|
| Microsoft GameInput | msiexec /x {GUID} /qn /norestart |
| Remote Desktop Connection | mstsc /Uninstall |
| Old Snipping Tool (Windows 10) | SnippingTool.exe /Uninstall |
| Microsoft Update Health Tools | msiexec /x {GUID} /qn /norestart, registry key deleted, PLUGScheduler task removed |
Removed UWP apps
All AppX packages are removed for all users with the following exceptions. Removing these packages breaks core system functionality.Packages kept and why
Packages kept and why
| Package pattern | Reason kept |
|---|---|
*CBS* | Required by File Explorer |
*Microsoft.AV1VideoExtension* | Codec |
*Microsoft.AVCEncoderVideoExtension* | Codec |
*Microsoft.HEIFImageExtension* | Codec |
*Microsoft.HEVCVideoExtension* | Codec |
*Microsoft.MPEG2VideoExtension* | Codec |
*Microsoft.RawImageExtension* | Codec |
*Microsoft.Paint* | Paint app |
*Microsoft.SecHealthUI* | Required by Windows Defender (Server) |
*Microsoft.VP9VideoExtensions* | Codec |
*Microsoft.WebMediaExtensions* | Codec |
*Microsoft.WebpImageExtension* | Codec |
*Microsoft.Windows.Photos* | Photos app |
*Microsoft.Windows.ShellExperienceHost* | Required by taskbar (Server) |
*Microsoft.Windows.StartMenuExperienceHost* | Required by Start Menu (Server) |
*Microsoft.WindowsNotepad* | Notepad app |
*Microsoft.WindowsStore* | Windows Store |
*NVIDIACorp.NVIDIAControlPanel* | NVIDIA Control Panel |
*windows.immersivecontrolpanel* | Required by Settings app (Server) |
Removed Windows capabilities
All optional capabilities are removed except those required for core networking or stability.Capabilities kept and why
Capabilities kept and why
| Capability pattern | Reason kept |
|---|---|
*Microsoft.Windows.Ethernet* | Wired networking |
*Microsoft.Windows.MSPaint* | Paint (Windows 10) |
*Microsoft.Windows.Notepad* | Notepad |
*Microsoft.Windows.Notepad.System* | Notepad system component |
*Microsoft.Windows.Wifi* | Wireless networking |
*NetFX3* | .NET Framework 3.5 |
*VBSCRIPT* | VBScript — removing breaks MSI installers |
*WMIC* | WMIC — required by monitoring programs |
*Windows.Client.ShellComponents* | Required by the UWP Snipping Tool (Windows 10) |
Removed Windows optional features
All optional features are disabled except those required for normal operation.Features kept and why
Features kept and why
| Feature pattern | Reason kept |
|---|---|
*DirectPlay* | Legacy game compatibility |
*LegacyComponents* | Legacy component support |
*NetFx3* | .NET Framework 3.5 |
*NetFx4* | .NET Framework 4.x — required by Windows Server features |
*NetFx4-AdvSrvs* | .NET 4 advanced services |
*NetFx4ServerFeatures* | .NET 4 server features — required by Windows Server |
*SearchEngine-Client-Package* | Windows Search — removing breaks search |
*Server-Shell* | Required by Windows Server desktop |
*Windows-Defender* | Required by Windows Defender on Server |
*Server-Drivers-General* | Required by Windows Server networking |
*ServerCore-Drivers-General* | Required by Windows Server networking |
*WirelessNetworking* | Required by Windows Server NVIDIA app |
Set Timer Resolution Service
WinSux compiles and installs a Windows service from the included C# source file (settimerresolutionservice.cs) to lock the system timer to its maximum hardware resolution.
How it works:
The service calls NtSetTimerResolution via P/Invoke on startup, setting the timer to MaximumResolution (the smallest interval supported by the hardware). This reduces scheduling jitter for games and real-time workloads.