├── .gitattributes ├── .gitignore ├── App.config ├── Keyboard.cs ├── LICENSE ├── PowerShellRunner.cs ├── Program.cs ├── Properties └── AssemblyInfo.cs ├── README.md ├── Sim.csproj ├── Sim.sln ├── SimTask.cs └── XMLexamples ├── admindemo.xml └── demo.xml /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/.gitignore -------------------------------------------------------------------------------- /App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/App.config -------------------------------------------------------------------------------- /Keyboard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/Keyboard.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/PowerShellRunner.cs -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/README.md -------------------------------------------------------------------------------- /Sim.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/Sim.csproj -------------------------------------------------------------------------------- /Sim.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/Sim.sln -------------------------------------------------------------------------------- /SimTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/SimTask.cs -------------------------------------------------------------------------------- /XMLexamples/admindemo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/XMLexamples/admindemo.xml -------------------------------------------------------------------------------- /XMLexamples/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceMoonHSV/Sim/HEAD/XMLexamples/demo.xml --------------------------------------------------------------------------------