├── LICENSE ├── README.md └── src ├── MUI.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── Q.cs ├── Resources ├── defaultLanguage.xml └── defaultSettings.xml ├── ShellLink.cs ├── SuperCMD.csproj ├── SuperCMD.csproj.user ├── SuperCMD.sln ├── SuperCore.cs ├── W31Button.cs ├── Win32.cs ├── app.manifest ├── bin ├── Release │ ├── Command Line Usage.txt │ ├── MUI │ │ ├── ja-JP.xml │ │ ├── zh-CN.xml │ │ └── zh-TW.xml │ ├── SuperCMD.exe │ └── SuperCMD.exe.config └── x64 │ └── Release │ ├── Command Line Usage.txt │ ├── MUI │ ├── ja-JP.xml │ ├── zh-CN.xml │ └── zh-TW.xml │ ├── SuperCMD.exe │ └── SuperCMD.exe.config ├── frmConfig.Designer.cs ├── frmConfig.cs ├── frmConfig.resx ├── frmMain.Designer.cs ├── frmMain.cs ├── frmMain.resx ├── frmQEditor.Designer.cs ├── frmQEditor.cs ├── frmQEditor.resx ├── frmWait.Designer.cs ├── frmWait.cs ├── frmWait.resx └── super.ico /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # SuperCMD 2 | Run program as SYSTEM, with TrustedInstaller token if desired 3 | -------------------------------------------------------------------------------- /src/MUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/MUI.cs -------------------------------------------------------------------------------- /src/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Program.cs -------------------------------------------------------------------------------- /src/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Properties/Resources.resx -------------------------------------------------------------------------------- /src/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /src/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Properties/Settings.settings -------------------------------------------------------------------------------- /src/Q.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Q.cs -------------------------------------------------------------------------------- /src/Resources/defaultLanguage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Resources/defaultLanguage.xml -------------------------------------------------------------------------------- /src/Resources/defaultSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Resources/defaultSettings.xml -------------------------------------------------------------------------------- /src/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/ShellLink.cs -------------------------------------------------------------------------------- /src/SuperCMD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/SuperCMD.csproj -------------------------------------------------------------------------------- /src/SuperCMD.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/SuperCMD.csproj.user -------------------------------------------------------------------------------- /src/SuperCMD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/SuperCMD.sln -------------------------------------------------------------------------------- /src/SuperCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/SuperCore.cs -------------------------------------------------------------------------------- /src/W31Button.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/W31Button.cs -------------------------------------------------------------------------------- /src/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/Win32.cs -------------------------------------------------------------------------------- /src/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/app.manifest -------------------------------------------------------------------------------- /src/bin/Release/Command Line Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/Command Line Usage.txt -------------------------------------------------------------------------------- /src/bin/Release/MUI/ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/MUI/ja-JP.xml -------------------------------------------------------------------------------- /src/bin/Release/MUI/zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/MUI/zh-CN.xml -------------------------------------------------------------------------------- /src/bin/Release/MUI/zh-TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/MUI/zh-TW.xml -------------------------------------------------------------------------------- /src/bin/Release/SuperCMD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/SuperCMD.exe -------------------------------------------------------------------------------- /src/bin/Release/SuperCMD.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/Release/SuperCMD.exe.config -------------------------------------------------------------------------------- /src/bin/x64/Release/Command Line Usage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/Command Line Usage.txt -------------------------------------------------------------------------------- /src/bin/x64/Release/MUI/ja-JP.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/MUI/ja-JP.xml -------------------------------------------------------------------------------- /src/bin/x64/Release/MUI/zh-CN.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/MUI/zh-CN.xml -------------------------------------------------------------------------------- /src/bin/x64/Release/MUI/zh-TW.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/MUI/zh-TW.xml -------------------------------------------------------------------------------- /src/bin/x64/Release/SuperCMD.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/SuperCMD.exe -------------------------------------------------------------------------------- /src/bin/x64/Release/SuperCMD.exe.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/bin/x64/Release/SuperCMD.exe.config -------------------------------------------------------------------------------- /src/frmConfig.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmConfig.Designer.cs -------------------------------------------------------------------------------- /src/frmConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmConfig.cs -------------------------------------------------------------------------------- /src/frmConfig.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmConfig.resx -------------------------------------------------------------------------------- /src/frmMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmMain.Designer.cs -------------------------------------------------------------------------------- /src/frmMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmMain.cs -------------------------------------------------------------------------------- /src/frmMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmMain.resx -------------------------------------------------------------------------------- /src/frmQEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmQEditor.Designer.cs -------------------------------------------------------------------------------- /src/frmQEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmQEditor.cs -------------------------------------------------------------------------------- /src/frmQEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmQEditor.resx -------------------------------------------------------------------------------- /src/frmWait.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmWait.Designer.cs -------------------------------------------------------------------------------- /src/frmWait.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmWait.cs -------------------------------------------------------------------------------- /src/frmWait.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/frmWait.resx -------------------------------------------------------------------------------- /src/super.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raymai97/SuperCMD/HEAD/src/super.ico --------------------------------------------------------------------------------