├── .gitignore ├── LICENSE ├── README.md └── src ├── MicroRunTI.sln ├── MicroRunTI.vcxproj └── main.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/MicroRunTI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/MicroRunTI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # MicroRunTI 2 | Run cmd as Trusted Installer. Written in C 3 | -------------------------------------------------------------------------------- /src/MicroRunTI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/MicroRunTI/HEAD/src/MicroRunTI.sln -------------------------------------------------------------------------------- /src/MicroRunTI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/MicroRunTI/HEAD/src/MicroRunTI.vcxproj -------------------------------------------------------------------------------- /src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ADeltaX/MicroRunTI/HEAD/src/main.c --------------------------------------------------------------------------------