├── .gitattributes ├── .gitignore ├── LICENSE ├── PowerShellRunner ├── PowerShellRunner.cs ├── PowerShellRunner.csproj ├── Properties │ └── AssemblyInfo.cs ├── Scripts.cs └── System.Management.Automation.dll ├── README.md ├── UnmanagedPowerShell.sln └── UnmanagedPowerShell ├── PowerShellRunnerDll.h ├── ReadMe.txt ├── UnmanagedPowerShell.cpp ├── UnmanagedPowerShell.vcxproj ├── UnmanagedPowerShell.vcxproj.filters ├── stdafx.cpp ├── stdafx.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/LICENSE -------------------------------------------------------------------------------- /PowerShellRunner/PowerShellRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/PowerShellRunner/PowerShellRunner.cs -------------------------------------------------------------------------------- /PowerShellRunner/PowerShellRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/PowerShellRunner/PowerShellRunner.csproj -------------------------------------------------------------------------------- /PowerShellRunner/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/PowerShellRunner/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PowerShellRunner/Scripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/PowerShellRunner/Scripts.cs -------------------------------------------------------------------------------- /PowerShellRunner/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/PowerShellRunner/System.Management.Automation.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/README.md -------------------------------------------------------------------------------- /UnmanagedPowerShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell.sln -------------------------------------------------------------------------------- /UnmanagedPowerShell/PowerShellRunnerDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/PowerShellRunnerDll.h -------------------------------------------------------------------------------- /UnmanagedPowerShell/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/ReadMe.txt -------------------------------------------------------------------------------- /UnmanagedPowerShell/UnmanagedPowerShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/UnmanagedPowerShell.cpp -------------------------------------------------------------------------------- /UnmanagedPowerShell/UnmanagedPowerShell.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/UnmanagedPowerShell.vcxproj -------------------------------------------------------------------------------- /UnmanagedPowerShell/UnmanagedPowerShell.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/UnmanagedPowerShell.vcxproj.filters -------------------------------------------------------------------------------- /UnmanagedPowerShell/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/stdafx.cpp -------------------------------------------------------------------------------- /UnmanagedPowerShell/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/stdafx.h -------------------------------------------------------------------------------- /UnmanagedPowerShell/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mmnoureldin/UnmanagedPowerShell/HEAD/UnmanagedPowerShell/targetver.h --------------------------------------------------------------------------------