├── .gitattributes ├── .gitignore ├── Images └── Plugin.EnterPSSession.jpg ├── Plugin.EnterPSSession ├── Class1.cs ├── Plugin.EnterPSSession.csproj ├── Plugin.EnterPSSession.sln ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx └── Resources │ ├── PowerShell5-32.png │ └── PowerShell_5.0_icon.png ├── Plugin.Sample ├── Class1.cs ├── Plugin.Sample.csproj ├── Plugin.Sample.sln └── Properties │ └── AssemblyInfo.cs └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Images/Plugin.EnterPSSession.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Images/Plugin.EnterPSSession.jpg -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Class1.cs -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Plugin.EnterPSSession.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Plugin.EnterPSSession.csproj -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Plugin.EnterPSSession.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Plugin.EnterPSSession.sln -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Properties/Resources.resx -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Resources/PowerShell5-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Resources/PowerShell5-32.png -------------------------------------------------------------------------------- /Plugin.EnterPSSession/Resources/PowerShell_5.0_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.EnterPSSession/Resources/PowerShell_5.0_icon.png -------------------------------------------------------------------------------- /Plugin.Sample/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.Sample/Class1.cs -------------------------------------------------------------------------------- /Plugin.Sample/Plugin.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.Sample/Plugin.Sample.csproj -------------------------------------------------------------------------------- /Plugin.Sample/Plugin.Sample.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.Sample/Plugin.Sample.sln -------------------------------------------------------------------------------- /Plugin.Sample/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/Plugin.Sample/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tadas/RDCManPlugins/HEAD/readme.md --------------------------------------------------------------------------------