├── .gitignore ├── DarkDll ├── DarkDll.vcxproj ├── DarkDll.vcxproj.filters ├── darkdll.h ├── dllmain.cpp ├── framework.h ├── pch.cpp └── pch.h ├── DarkEnforcer.sln ├── DarkEnforcer ├── DarkEnforcer.cpp ├── DarkEnforcer.exe.manifest ├── DarkEnforcer.h ├── DarkEnforcer.ico ├── DarkEnforcer.rc ├── DarkEnforcer.vcxproj ├── DarkEnforcer.vcxproj.filters ├── Resource.h ├── framework.h ├── small.ico └── targetver.h ├── LICENSE ├── README.md └── screenshots ├── cleanmgr-dark.png └── cleanmgr-orig.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/.gitignore -------------------------------------------------------------------------------- /DarkDll/DarkDll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/DarkDll.vcxproj -------------------------------------------------------------------------------- /DarkDll/DarkDll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/DarkDll.vcxproj.filters -------------------------------------------------------------------------------- /DarkDll/darkdll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/darkdll.h -------------------------------------------------------------------------------- /DarkDll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/dllmain.cpp -------------------------------------------------------------------------------- /DarkDll/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/framework.h -------------------------------------------------------------------------------- /DarkDll/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/pch.cpp -------------------------------------------------------------------------------- /DarkDll/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkDll/pch.h -------------------------------------------------------------------------------- /DarkEnforcer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer.sln -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.cpp -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.exe.manifest -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "resource.h" 4 | -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.ico -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.rc -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.vcxproj -------------------------------------------------------------------------------- /DarkEnforcer/DarkEnforcer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/DarkEnforcer.vcxproj.filters -------------------------------------------------------------------------------- /DarkEnforcer/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/Resource.h -------------------------------------------------------------------------------- /DarkEnforcer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/framework.h -------------------------------------------------------------------------------- /DarkEnforcer/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/small.ico -------------------------------------------------------------------------------- /DarkEnforcer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/DarkEnforcer/targetver.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/README.md -------------------------------------------------------------------------------- /screenshots/cleanmgr-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/screenshots/cleanmgr-dark.png -------------------------------------------------------------------------------- /screenshots/cleanmgr-orig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChGen/DarkEnforcer/HEAD/screenshots/cleanmgr-orig.png --------------------------------------------------------------------------------