├── CopyUSBFileDemo ├── App.config ├── Command │ ├── ICommand.cs │ └── RestartCommand.cs ├── CopyUSBFileDemo.csproj ├── FileCopyWorker.cs ├── LogerHelper.cs ├── Monitoring.cs ├── Program.cs ├── ProjectInstaller.Designer.cs ├── ProjectInstaller.cs ├── ProjectInstaller.resx ├── Properties │ └── AssemblyInfo.cs ├── ServiceDealer.cs ├── USBThiefService.Designer.cs ├── USBThiefService.cs ├── USBThiefService.resx ├── bin │ └── Debug │ │ ├── CopyUSBFileDemo.InstallLog │ │ ├── CopyUSBFileDemo.InstallState │ │ ├── CopyUSBFileDemo.exe │ │ ├── CopyUSBFileDemo.exe.config │ │ ├── CopyUSBFileDemo.pdb │ │ ├── CopyUSBFileDemo.vshost.exe │ │ ├── CopyUSBFileDemo.vshost.exe.config │ │ ├── CopyUSBFileDemo.vshost.exe.manifest │ │ └── Logger │ │ ├── ErrorLog20180807.txt │ │ ├── ErrorLog20180808.txt │ │ ├── ErrorLog20180809.txt │ │ ├── ErrorLog20180810.txt │ │ ├── ErrorLog20180813.txt │ │ ├── ErrorLog20180814.txt │ │ ├── ErrorLog20180815.txt │ │ ├── ErrorLog20180816.txt │ │ ├── ErrorLog20180817.txt │ │ ├── ErrorLog20180820.txt │ │ ├── ErrorLog20180821.txt │ │ ├── ErrorLog20180822.txt │ │ ├── OperateLog20180806.txt │ │ ├── OperateLog20180807.txt │ │ ├── OperateLog20180808.txt │ │ ├── OperateLog20180809.txt │ │ ├── OperateLog20180810.txt │ │ ├── OperateLog20180813.txt │ │ ├── OperateLog20180814.txt │ │ ├── OperateLog20180815.txt │ │ ├── OperateLog20180816.txt │ │ ├── OperateLog20180817.txt │ │ ├── OperateLog20180820.txt │ │ ├── OperateLog20180821.txt │ │ ├── OperateLog20180822.txt │ │ └── OperateLog20180823.txt ├── obj │ └── Debug │ │ ├── CopyUSBFileDemo.ProjectInstaller.resources │ │ ├── CopyUSBFileDemo.USBThiefService.resources │ │ ├── CopyUSBFileDemo.csproj.FileListAbsolute.txt │ │ ├── CopyUSBFileDemo.csproj.GenerateResource.Cache │ │ ├── CopyUSBFileDemo.exe │ │ ├── CopyUSBFileDemo.pdb │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ └── DesignTimeResolveAssemblyReferencesInput.cache ├── windows服务说明.txt └── 设计思路.txt ├── FileMonitorDemo.sln ├── FileMonitorDemo.v11.suo ├── README.md ├── UnInstallerWindowService ├── App.config ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── UnInstallerWindowService.csproj ├── bin │ └── Debug │ │ ├── UnInstallerWindowService.exe │ │ ├── UnInstallerWindowService.exe.config │ │ ├── UnInstallerWindowService.pdb │ │ ├── UnInstallerWindowService.vshost.exe │ │ ├── UnInstallerWindowService.vshost.exe.config │ │ └── UnInstallerWindowService.vshost.exe.manifest └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── UnInstallerWindowService.csproj.FileListAbsolute.txt │ ├── UnInstallerWindowService.exe │ └── UnInstallerWindowService.pdb ├── WindwoInstalTool ├── App.config ├── LogerHelper.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── WindwoInstalTool.csproj ├── WindwoInstalTool.csproj.user ├── bin │ └── Debug │ │ ├── InstallUtil.InstallLog │ │ ├── WindwoInstalTool.exe │ │ ├── WindwoInstalTool.exe.config │ │ ├── WindwoInstalTool.pdb │ │ ├── WindwoInstalTool.vshost.exe │ │ ├── WindwoInstalTool.vshost.exe.config │ │ └── WindwoInstalTool.vshost.exe.manifest └── obj │ └── Debug │ ├── CoreCompileInputs.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WindwoInstalTool.csproj.FileListAbsolute.txt │ ├── WindwoInstalTool.exe │ └── WindwoInstalTool.pdb └── 操作文档.docx /CopyUSBFileDemo/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/App.config -------------------------------------------------------------------------------- /CopyUSBFileDemo/Command/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/Command/ICommand.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/Command/RestartCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/Command/RestartCommand.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/CopyUSBFileDemo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/CopyUSBFileDemo.csproj -------------------------------------------------------------------------------- /CopyUSBFileDemo/FileCopyWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/FileCopyWorker.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/LogerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/LogerHelper.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/Monitoring.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/Monitoring.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/Program.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/ProjectInstaller.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/ProjectInstaller.Designer.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/ProjectInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/ProjectInstaller.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/ProjectInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/ProjectInstaller.resx -------------------------------------------------------------------------------- /CopyUSBFileDemo/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/ServiceDealer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/ServiceDealer.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/USBThiefService.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/USBThiefService.Designer.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/USBThiefService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/USBThiefService.cs -------------------------------------------------------------------------------- /CopyUSBFileDemo/USBThiefService.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/USBThiefService.resx -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.InstallLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.InstallLog -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.InstallState: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.InstallState -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.exe -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.exe.config -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.pdb -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe.config -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/CopyUSBFileDemo.vshost.exe.manifest -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180807.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180807.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180808.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180808.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180809.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180810.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180813.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180813.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180814.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180814.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180815.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180815.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180816.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180817.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180817.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180820.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180820.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180821.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180821.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180822.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/ErrorLog20180822.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180806.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180806.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180807.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180807.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180808.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180808.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180809.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180809.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180810.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180810.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180813.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180813.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180814.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180814.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180815.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180815.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180816.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180816.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180817.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180817.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180820.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180820.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180821.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180821.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180822.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180822.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180823.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/bin/Debug/Logger/OperateLog20180823.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.ProjectInstaller.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.ProjectInstaller.resources -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.USBThiefService.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.USBThiefService.resources -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.csproj.GenerateResource.Cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.csproj.GenerateResource.Cache -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.exe -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/CopyUSBFileDemo.pdb -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /CopyUSBFileDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /CopyUSBFileDemo/windows服务说明.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/windows服务说明.txt -------------------------------------------------------------------------------- /CopyUSBFileDemo/设计思路.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/CopyUSBFileDemo/设计思路.txt -------------------------------------------------------------------------------- /FileMonitorDemo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/FileMonitorDemo.sln -------------------------------------------------------------------------------- /FileMonitorDemo.v11.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/FileMonitorDemo.v11.suo -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/README.md -------------------------------------------------------------------------------- /UnInstallerWindowService/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/App.config -------------------------------------------------------------------------------- /UnInstallerWindowService/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/Program.cs -------------------------------------------------------------------------------- /UnInstallerWindowService/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnInstallerWindowService/UnInstallerWindowService.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/UnInstallerWindowService.csproj -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.exe -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.exe.config -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.pdb -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe.config -------------------------------------------------------------------------------- /UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/bin/Debug/UnInstallerWindowService.vshost.exe.manifest -------------------------------------------------------------------------------- /UnInstallerWindowService/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4d3154ffdc7e2c6c2080d08e11511ebfa088dd3f 2 | -------------------------------------------------------------------------------- /UnInstallerWindowService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /UnInstallerWindowService/obj/Debug/UnInstallerWindowService.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/obj/Debug/UnInstallerWindowService.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /UnInstallerWindowService/obj/Debug/UnInstallerWindowService.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/obj/Debug/UnInstallerWindowService.exe -------------------------------------------------------------------------------- /UnInstallerWindowService/obj/Debug/UnInstallerWindowService.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/UnInstallerWindowService/obj/Debug/UnInstallerWindowService.pdb -------------------------------------------------------------------------------- /WindwoInstalTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/App.config -------------------------------------------------------------------------------- /WindwoInstalTool/LogerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/LogerHelper.cs -------------------------------------------------------------------------------- /WindwoInstalTool/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/Program.cs -------------------------------------------------------------------------------- /WindwoInstalTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /WindwoInstalTool/WindwoInstalTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/WindwoInstalTool.csproj -------------------------------------------------------------------------------- /WindwoInstalTool/WindwoInstalTool.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/WindwoInstalTool.csproj.user -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/InstallUtil.InstallLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/InstallUtil.InstallLog -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.exe -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.exe.config -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.pdb -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe.config -------------------------------------------------------------------------------- /WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/bin/Debug/WindwoInstalTool.vshost.exe.manifest -------------------------------------------------------------------------------- /WindwoInstalTool/obj/Debug/CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 0eb3f4fb21172c6bfcfb0d8bb3fbeefa52032004 2 | -------------------------------------------------------------------------------- /WindwoInstalTool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WindwoInstalTool/obj/Debug/WindwoInstalTool.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/obj/Debug/WindwoInstalTool.csproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WindwoInstalTool/obj/Debug/WindwoInstalTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/obj/Debug/WindwoInstalTool.exe -------------------------------------------------------------------------------- /WindwoInstalTool/obj/Debug/WindwoInstalTool.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/WindwoInstalTool/obj/Debug/WindwoInstalTool.pdb -------------------------------------------------------------------------------- /操作文档.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/love2zou/USB_Thief/HEAD/操作文档.docx --------------------------------------------------------------------------------