├── .gitattributes ├── .gitignore ├── README.md ├── UACSilentCleanup.sln └── UACSilentCleanup ├── App.config ├── Program.cs ├── Properties └── AssemblyInfo.cs └── UACSilentCleanup.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/README.md -------------------------------------------------------------------------------- /UACSilentCleanup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/UACSilentCleanup.sln -------------------------------------------------------------------------------- /UACSilentCleanup/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/UACSilentCleanup/App.config -------------------------------------------------------------------------------- /UACSilentCleanup/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/UACSilentCleanup/Program.cs -------------------------------------------------------------------------------- /UACSilentCleanup/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/UACSilentCleanup/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UACSilentCleanup/UACSilentCleanup.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/UACSilentCleanup/HEAD/UACSilentCleanup/UACSilentCleanup.csproj --------------------------------------------------------------------------------