├── .gitignore ├── AntiShiftDelete.sln ├── AntiShiftDeleteExt ├── AntiShiftDeleteExt.aps ├── AntiShiftDeleteExt.cpp ├── AntiShiftDeleteExt.def ├── AntiShiftDeleteExt.idl ├── AntiShiftDeleteExt.rc ├── AntiShiftDeleteExt.rgs ├── AntiShiftDeleteExt.vcxproj ├── AntiShiftDeleteExt.vcxproj.filters ├── AntiShiftDeleteExt.vcxproj.user ├── AntiShiftDeleteExtps.def ├── CFileOperation.cpp ├── CFileOperation.h ├── FakeShellIconOverlayIdentifier.cpp ├── FakeShellIconOverlayIdentifier.h ├── FakeShellIconOverlayIdentifier.rgs ├── Resource.h ├── compreg.cpp ├── compreg.h ├── dlldata.c ├── dllmain.cpp ├── dllmain.h ├── framework.h ├── include │ ├── detours.h │ ├── detver.h │ └── syelog.h ├── lib.X64 │ ├── detours.lib │ ├── detours.pdb │ └── syelog.lib ├── lib.X86 │ ├── detours.lib │ ├── detours.pdb │ └── syelog.lib ├── pch.cpp ├── pch.h └── targetver.h ├── AntiShiftDeleteExtPS ├── AntiShiftDeleteExtPS.vcxproj ├── AntiShiftDeleteExtPS.vcxproj.filters └── AntiShiftDeleteExtPS.vcxproj.user ├── LICENSE ├── README.md ├── README.zh-cn.md └── installer ├── AntiShiftDelete.ico ├── AntiShiftDelete.nsi ├── EVRootCA.reg └── license.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/.gitignore -------------------------------------------------------------------------------- /AntiShiftDelete.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDelete.sln -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.aps -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.cpp -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.def -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.idl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.idl -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.rc -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.rgs -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj.filters -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExt.vcxproj.user -------------------------------------------------------------------------------- /AntiShiftDeleteExt/AntiShiftDeleteExtps.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/AntiShiftDeleteExtps.def -------------------------------------------------------------------------------- /AntiShiftDeleteExt/CFileOperation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/CFileOperation.cpp -------------------------------------------------------------------------------- /AntiShiftDeleteExt/CFileOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/CFileOperation.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.cpp -------------------------------------------------------------------------------- /AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.rgs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/FakeShellIconOverlayIdentifier.rgs -------------------------------------------------------------------------------- /AntiShiftDeleteExt/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/Resource.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/compreg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/compreg.cpp -------------------------------------------------------------------------------- /AntiShiftDeleteExt/compreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/compreg.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/dlldata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/dlldata.c -------------------------------------------------------------------------------- /AntiShiftDeleteExt/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/dllmain.cpp -------------------------------------------------------------------------------- /AntiShiftDeleteExt/dllmain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/dllmain.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/framework.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/include/detours.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/include/detours.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/include/detver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/include/detver.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/include/syelog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/include/syelog.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X64/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X64/detours.lib -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X64/detours.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X64/detours.pdb -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X64/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X64/syelog.lib -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X86/detours.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X86/detours.lib -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X86/detours.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X86/detours.pdb -------------------------------------------------------------------------------- /AntiShiftDeleteExt/lib.X86/syelog.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/lib.X86/syelog.lib -------------------------------------------------------------------------------- /AntiShiftDeleteExt/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /AntiShiftDeleteExt/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExt/pch.h -------------------------------------------------------------------------------- /AntiShiftDeleteExt/targetver.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj -------------------------------------------------------------------------------- /AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj.filters -------------------------------------------------------------------------------- /AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/AntiShiftDeleteExtPS/AntiShiftDeleteExtPS.vcxproj.user -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/README.md -------------------------------------------------------------------------------- /README.zh-cn.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/README.zh-cn.md -------------------------------------------------------------------------------- /installer/AntiShiftDelete.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/installer/AntiShiftDelete.ico -------------------------------------------------------------------------------- /installer/AntiShiftDelete.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/installer/AntiShiftDelete.nsi -------------------------------------------------------------------------------- /installer/EVRootCA.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/installer/EVRootCA.reg -------------------------------------------------------------------------------- /installer/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jemmy1228/AntiShiftDelete/HEAD/installer/license.txt --------------------------------------------------------------------------------