├── .gitattributes ├── SuBackup ├── SuBackup.VC.db ├── SuBackup.sln ├── SuBackup │ ├── ReadMe.txt │ ├── SuBackup.cpp │ ├── SuBackup.vcxproj │ ├── SuBackup.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ ├── targetver.h │ └── x64 │ │ └── Release │ │ ├── SuBackup.Build.CppClean.log │ │ ├── SuBackup.log │ │ ├── SuBackup.obj │ │ ├── SuBackup.pch │ │ ├── SuBackup.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── SuBackup.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ │ ├── stdafx.obj │ │ └── vc140.pdb └── x64 │ └── Release │ ├── SuBackup.exe │ ├── SuBackup.iobj │ ├── SuBackup.ipdb │ └── SuBackup.pdb └── servicedll ├── servicedll.sln ├── servicedll ├── ReadMe.txt ├── dllmain.cpp ├── servicedll.cpp ├── servicedll.def ├── servicedll.vcxproj ├── servicedll.vcxproj.filters ├── stdafx.cpp ├── stdafx.h ├── targetver.h └── x64 │ └── Release │ ├── servicedll.Build.CppClean.log │ ├── servicedll.log │ ├── servicedll.obj │ ├── servicedll.pch │ ├── servicedll.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── servicedll.lastbuildstate │ └── servicedll.write.1u.tlog │ ├── stdafx.obj │ └── vc140.pdb └── x64 └── Release ├── servicedll.dll ├── servicedll.exp ├── servicedll.iobj ├── servicedll.ipdb ├── servicedll.lib └── servicedll.pdb /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/.gitattributes -------------------------------------------------------------------------------- /SuBackup/SuBackup.VC.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup.VC.db -------------------------------------------------------------------------------- /SuBackup/SuBackup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup.sln -------------------------------------------------------------------------------- /SuBackup/SuBackup/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/ReadMe.txt -------------------------------------------------------------------------------- /SuBackup/SuBackup/SuBackup.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/SuBackup.cpp -------------------------------------------------------------------------------- /SuBackup/SuBackup/SuBackup.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/SuBackup.vcxproj -------------------------------------------------------------------------------- /SuBackup/SuBackup/SuBackup.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/SuBackup.vcxproj.filters -------------------------------------------------------------------------------- /SuBackup/SuBackup/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/stdafx.cpp -------------------------------------------------------------------------------- /SuBackup/SuBackup/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/stdafx.h -------------------------------------------------------------------------------- /SuBackup/SuBackup/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/targetver.h -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.Build.CppClean.log -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.log -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.obj -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.pch -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/SuBackup.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/SuBackup.lastbuildstate -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/SuBackup.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/stdafx.obj -------------------------------------------------------------------------------- /SuBackup/SuBackup/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/SuBackup/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /SuBackup/x64/Release/SuBackup.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/x64/Release/SuBackup.exe -------------------------------------------------------------------------------- /SuBackup/x64/Release/SuBackup.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/x64/Release/SuBackup.iobj -------------------------------------------------------------------------------- /SuBackup/x64/Release/SuBackup.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/x64/Release/SuBackup.ipdb -------------------------------------------------------------------------------- /SuBackup/x64/Release/SuBackup.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/SuBackup/x64/Release/SuBackup.pdb -------------------------------------------------------------------------------- /servicedll/servicedll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll.sln -------------------------------------------------------------------------------- /servicedll/servicedll/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/ReadMe.txt -------------------------------------------------------------------------------- /servicedll/servicedll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/dllmain.cpp -------------------------------------------------------------------------------- /servicedll/servicedll/servicedll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/servicedll.cpp -------------------------------------------------------------------------------- /servicedll/servicedll/servicedll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/servicedll.def -------------------------------------------------------------------------------- /servicedll/servicedll/servicedll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/servicedll.vcxproj -------------------------------------------------------------------------------- /servicedll/servicedll/servicedll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/servicedll.vcxproj.filters -------------------------------------------------------------------------------- /servicedll/servicedll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/stdafx.cpp -------------------------------------------------------------------------------- /servicedll/servicedll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/stdafx.h -------------------------------------------------------------------------------- /servicedll/servicedll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/targetver.h -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.Build.CppClean.log -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.log -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.obj -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.pch -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/servicedll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/servicedll.lastbuildstate -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/servicedll.tlog/servicedll.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/servicedll.tlog/servicedll.write.1u.tlog -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/stdafx.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/stdafx.obj -------------------------------------------------------------------------------- /servicedll/servicedll/x64/Release/vc140.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/servicedll/x64/Release/vc140.pdb -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.dll -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.exp -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.iobj -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.ipdb -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.lib -------------------------------------------------------------------------------- /servicedll/x64/Release/servicedll.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/decoder-it/BadBackupOperator/HEAD/servicedll/x64/Release/servicedll.pdb --------------------------------------------------------------------------------