├── .gitignore ├── Build └── Release │ ├── Release_x64.zip │ └── x64 │ ├── Image │ └── image.png │ ├── Register.cmd │ ├── Uninstall.cmd │ ├── config.ini │ └── 使用方法.txt ├── ExplorerBgTool.sln ├── ExplorerBgTool ├── ExplorerBgTool.aps ├── ExplorerBgTool.rc ├── ExplorerBgTool.vcxproj ├── ExplorerBgTool.vcxproj.filters ├── ExplorerBgTool.vcxproj.user ├── HookDef.h ├── MinHook.h ├── ShellLoader.cpp ├── ShellLoader.h ├── Source.def ├── WinAPI.cpp ├── WinAPI.h ├── dllmain.cpp ├── framework.h ├── minihook │ ├── buffer.cpp │ ├── buffer.h │ ├── hde │ │ ├── hde32.cpp │ │ ├── hde32.h │ │ ├── hde64.cpp │ │ ├── hde64.h │ │ ├── pstdint.h │ │ ├── table32.h │ │ └── table64.h │ ├── hook.cpp │ ├── trampoline.cpp │ └── trampoline.h └── resource.h ├── LICENSE ├── README.md ├── Screenshot ├── 083434.jpg ├── 084016.jpg ├── 085051.jpg ├── 085552.jpg └── 163113.jpg └── clsid.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/Release/Release_x64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/Release_x64.zip -------------------------------------------------------------------------------- /Build/Release/x64/Image/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/x64/Image/image.png -------------------------------------------------------------------------------- /Build/Release/x64/Register.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/x64/Register.cmd -------------------------------------------------------------------------------- /Build/Release/x64/Uninstall.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/x64/Uninstall.cmd -------------------------------------------------------------------------------- /Build/Release/x64/config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/x64/config.ini -------------------------------------------------------------------------------- /Build/Release/x64/使用方法.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Build/Release/x64/使用方法.txt -------------------------------------------------------------------------------- /ExplorerBgTool.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool.sln -------------------------------------------------------------------------------- /ExplorerBgTool/ExplorerBgTool.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ExplorerBgTool.aps -------------------------------------------------------------------------------- /ExplorerBgTool/ExplorerBgTool.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ExplorerBgTool.rc -------------------------------------------------------------------------------- /ExplorerBgTool/ExplorerBgTool.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ExplorerBgTool.vcxproj -------------------------------------------------------------------------------- /ExplorerBgTool/ExplorerBgTool.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ExplorerBgTool.vcxproj.filters -------------------------------------------------------------------------------- /ExplorerBgTool/ExplorerBgTool.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ExplorerBgTool.vcxproj.user -------------------------------------------------------------------------------- /ExplorerBgTool/HookDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/HookDef.h -------------------------------------------------------------------------------- /ExplorerBgTool/MinHook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/MinHook.h -------------------------------------------------------------------------------- /ExplorerBgTool/ShellLoader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ShellLoader.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/ShellLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/ShellLoader.h -------------------------------------------------------------------------------- /ExplorerBgTool/Source.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/Source.def -------------------------------------------------------------------------------- /ExplorerBgTool/WinAPI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/WinAPI.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/WinAPI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/WinAPI.h -------------------------------------------------------------------------------- /ExplorerBgTool/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/dllmain.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/framework.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/buffer.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/buffer.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/hde32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/hde32.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/hde32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/hde32.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/hde64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/hde64.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/hde64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/hde64.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/pstdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/pstdint.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/table32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/table32.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hde/table64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hde/table64.h -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/hook.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/trampoline.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/trampoline.cpp -------------------------------------------------------------------------------- /ExplorerBgTool/minihook/trampoline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/minihook/trampoline.h -------------------------------------------------------------------------------- /ExplorerBgTool/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/ExplorerBgTool/resource.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/README.md -------------------------------------------------------------------------------- /Screenshot/083434.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Screenshot/083434.jpg -------------------------------------------------------------------------------- /Screenshot/084016.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Screenshot/084016.jpg -------------------------------------------------------------------------------- /Screenshot/085051.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Screenshot/085051.jpg -------------------------------------------------------------------------------- /Screenshot/085552.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Screenshot/085552.jpg -------------------------------------------------------------------------------- /Screenshot/163113.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/Screenshot/163113.jpg -------------------------------------------------------------------------------- /clsid.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Maplespe/explorerTool/HEAD/clsid.txt --------------------------------------------------------------------------------