├── .gitignore ├── CODE_OF_CONDUCT.md ├── LICENSE ├── LICENSE-CODE ├── README.md ├── SDK-2.0 ├── License.rtf ├── csharp │ ├── AccessDBProviderSample01 │ │ ├── AccessDBProviderSample01.cs │ │ ├── AccessDBProviderSample01.csproj │ │ ├── AccessDBProviderSample01.sln │ │ └── Readme.txt │ ├── AccessDBProviderSample02 │ │ ├── AccessDBProviderSample02.cs │ │ ├── AccessDBProviderSample02.csproj │ │ ├── AccessDBProviderSample02.sln │ │ └── Readme.txt │ ├── AccessDBProviderSample03 │ │ ├── AccessDBProviderSample03.cs │ │ ├── AccessDBProviderSample03.csproj │ │ ├── AccessDBProviderSample03.sln │ │ └── Readme.txt │ ├── AccessDBProviderSample04 │ │ ├── AccessDBProviderSample04.cs │ │ ├── AccessDBProviderSample04.csproj │ │ ├── AccessDBProviderSample04.sln │ │ └── Readme.txt │ ├── AccessDBProviderSample05 │ │ ├── AccessDBProviderSample05.cs │ │ ├── AccessDBProviderSample05.csproj │ │ ├── AccessDBProviderSample05.sln │ │ └── Readme.txt │ ├── AccessDBProviderSample06 │ │ ├── AccessDBProviderSample06.cs │ │ ├── AccessDBProviderSample06.csproj │ │ ├── AccessDBProviderSample06.sln │ │ └── Readme.txt │ ├── Event01 │ │ ├── Events01.cs │ │ ├── Events01.csproj │ │ ├── Events01.sln │ │ └── Readme.txt │ ├── Event02 │ │ ├── Events02.cs │ │ ├── Events02.csproj │ │ ├── Events02.sln │ │ └── Readme.txt │ ├── GetProcessSample01 │ │ ├── GetProcessSample01.cs │ │ ├── GetProcessSample01.csproj │ │ ├── GetProcessSample01.sln │ │ └── Readme.txt │ ├── GetProcessSample02 │ │ ├── GetProcessSample02.cs │ │ ├── GetProcessSample02.csproj │ │ ├── GetProcessSample02.sln │ │ └── Readme.txt │ ├── GetProcessSample03 │ │ ├── GetProcessSample03.cs │ │ ├── GetProcessSample03.csproj │ │ ├── GetProcessSample03.sln │ │ └── Readme.txt │ ├── GetProcessSample04 │ │ ├── GetProcessSample04.cs │ │ ├── GetProcessSample04.csproj │ │ ├── GetProcessSample04.sln │ │ └── Readme.txt │ ├── GetProcessSample05 │ │ ├── GetProcessSample05.cs │ │ ├── GetProcessSample05.csproj │ │ ├── GetProcessSample05.sln │ │ └── Readme.txt │ ├── Host01 │ │ ├── Host01.cs │ │ ├── Host01.csproj │ │ ├── Host01.sln │ │ ├── MyHost.cs │ │ └── Readme.txt │ ├── Host02 │ │ ├── Host02.cs │ │ ├── Host02.csproj │ │ ├── Host02.sln │ │ ├── MyHost.cs │ │ ├── MyHostUserInterface.cs │ │ ├── MyRawUserInterface.cs │ │ └── Readme.txt │ ├── Host03 │ │ ├── Host03.cs │ │ ├── Host03.csproj │ │ ├── Host03.sln │ │ ├── MyHost.cs │ │ ├── MyHostUserInterface.cs │ │ ├── MyRawUserInterface.cs │ │ └── Readme.txt │ ├── Host04 │ │ ├── Host04.cs │ │ ├── Host04.csproj │ │ ├── Host04.sln │ │ ├── HostUtilities.cs │ │ ├── MyHost.cs │ │ ├── MyHostUserInterface.cs │ │ ├── MyRawUserInterface.cs │ │ └── Readme.txt │ ├── Host05 │ │ ├── Host05.cs │ │ ├── Host05.csproj │ │ ├── Host05.sln │ │ ├── HostUtilities.cs │ │ ├── MyHost.cs │ │ ├── MyHostUserInterface.cs │ │ ├── MyRawUserInterface.cs │ │ └── Readme.txt │ ├── Host06 │ │ ├── Host06.cs │ │ ├── Host06.csproj │ │ ├── Host06.sln │ │ ├── HostUtilities.cs │ │ ├── MyHost.cs │ │ ├── MyHostUserInterface.cs │ │ ├── MyRawUserInterface.cs │ │ ├── Readme.txt │ │ └── readline.cs │ ├── PowerShell01 │ │ ├── PowerShell01.cs │ │ ├── PowerShell01.csproj │ │ ├── PowerShell01.sln │ │ └── Readme.txt │ ├── PowerShell02 │ │ ├── PowerShell02.cs │ │ ├── PowerShell02.csproj │ │ ├── PowerShell02.sln │ │ └── Readme.txt │ ├── RemoteRunspace01 │ │ ├── Readme.txt │ │ ├── RemoteRunspace01.cs │ │ ├── RemoteRunspace01.csproj │ │ └── RemoteRunspace01.sln │ ├── RemoteRunspacePool01 │ │ ├── Readme.txt │ │ ├── RemoteRunspacePool01.cs │ │ ├── RemoteRunspacePool01.csproj │ │ └── RemoteRunspacePool01.sln │ ├── Runspace01 │ │ ├── Readme.txt │ │ ├── Runspace01.cs │ │ ├── Runspace01.csproj │ │ └── Runspace01.sln │ ├── Runspace02 │ │ ├── Readme.txt │ │ ├── Runspace02.cs │ │ ├── Runspace02.csproj │ │ └── Runspace02.sln │ ├── Runspace03 │ │ ├── Readme.txt │ │ ├── Runspace03.cs │ │ ├── Runspace03.csproj │ │ └── Runspace03.sln │ ├── Runspace04 │ │ ├── Readme.txt │ │ ├── Runspace04.cs │ │ ├── Runspace04.csproj │ │ └── Runspace04.sln │ ├── Runspace05 │ │ ├── Readme.txt │ │ ├── Runspace05.cs │ │ ├── Runspace05.csproj │ │ └── Runspace05.sln │ ├── Runspace06 │ │ ├── Readme.txt │ │ ├── Runspace06.cs │ │ ├── Runspace06.csproj │ │ └── Runspace06.sln │ ├── Runspace07 │ │ ├── Readme.txt │ │ ├── Runspace07.cs │ │ ├── Runspace07.csproj │ │ └── Runspace07.sln │ ├── Runspace08 │ │ ├── Readme.txt │ │ ├── Runspace08.cs │ │ ├── Runspace08.csproj │ │ └── Runspace08.sln │ ├── Runspace09 │ │ ├── Readme.txt │ │ ├── Runspace09.cs │ │ ├── Runspace09.csproj │ │ └── Runspace09.sln │ ├── Runspace10 │ │ ├── Readme.txt │ │ ├── Runspace10.cs │ │ ├── Runspace10.csproj │ │ └── Runspace10.sln │ ├── Runspace11 │ │ ├── Readme.txt │ │ ├── Runspace11.cs │ │ ├── Runspace11.csproj │ │ └── Runspace11.sln │ ├── SelectObject │ │ ├── ObjectCommandComparer.cs │ │ ├── Readme.txt │ │ ├── SelectObj.cs │ │ ├── SelectObject.csproj │ │ └── SelectObject.sln │ ├── SelectString │ │ ├── Readme.txt │ │ ├── SelectStrCommandSample.cs │ │ ├── SelectStrCommandSample.csproj │ │ └── SelectStrCommandSample.sln │ ├── Serialization01 │ │ ├── Readme.txt │ │ ├── Serialization01.cs │ │ ├── Serialization01.csproj │ │ ├── Serialization01.sln │ │ └── Serialization01.types.ps1xml │ ├── Serialization02 │ │ ├── Readme.txt │ │ ├── Serialization02.cs │ │ ├── Serialization02.csproj │ │ ├── Serialization02.sln │ │ └── Serialization02.types.ps1xml │ ├── Serialization03 │ │ ├── Readme.txt │ │ ├── Serialization03.cs │ │ ├── Serialization03.csproj │ │ ├── Serialization03.sln │ │ └── Serialization03.types.ps1xml │ ├── StopProcessSample01 │ │ ├── Readme.txt │ │ ├── StopProcessSample01.cs │ │ ├── StopProcessSample01.csproj │ │ └── StopProcessSample01.sln │ ├── StopProcessSample02 │ │ ├── Readme.txt │ │ ├── StopProcessSample02.cs │ │ ├── StopProcessSample02.csproj │ │ └── StopProcessSample02.sln │ ├── StopProcessSample03 │ │ ├── Readme.txt │ │ ├── StopProcessSample03.cs │ │ ├── StopProcessSample03.csproj │ │ └── StopProcessSample03.sln │ ├── StopProcessSample04 │ │ ├── Readme.txt │ │ ├── StopProcessSample04.cs │ │ ├── StopProcessSample04.csproj │ │ └── StopProcessSample04.sln │ ├── TemplateProvider │ │ ├── TemplateProvider.cs │ │ ├── TemplateProvider.csproj │ │ └── TemplateProvider.sln │ └── Transactions01 │ │ ├── AddTransactedCommentCommand.cs │ │ ├── ClearTransactedCommentCommand.cs │ │ ├── GetTransactedCommentCommand.cs │ │ ├── Readme.txt │ │ ├── TransactedComment.cs │ │ ├── TransactedComment.csproj │ │ └── TransactedComment.sln └── schemas │ ├── process.format.ps1xml │ └── process.types.ps1xml └── SDK-3.0 ├── AccessDB Provider Sample 01 ├── C# │ ├── AccessDBProviderSample01.cs │ ├── AccessDBProviderSample01.csproj │ ├── AccessDBProviderSample01.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── 3fe9317c-9994-4813-87f2-918419cdf52bCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── AccessDB Provider Sample 02 ├── C# │ ├── AccessDBProviderSample02.cs │ ├── AccessDBProviderSample02.csproj │ ├── AccessDBProviderSample02.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── 3fe9317c-9994-4813-87f2-918419cdf52bCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── AccessDB Provider Sample 03 ├── C# │ ├── AccessDBProviderSample03.cs │ ├── AccessDBProviderSample03.csproj │ ├── AccessDBProviderSample03.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── 3fe9317c-9994-4813-87f2-918419cdf52bCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── AccessDB Provider Sample 04 ├── C# │ ├── AccessDBProviderSample04.cs │ ├── AccessDBProviderSample04.csproj │ ├── AccessDBProviderSample04.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── 3fe9317c-9994-4813-87f2-918419cdf52bCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── AccessDB Provider Sample 05 ├── C# │ ├── AccessDBProviderSample05.cs │ ├── AccessDBProviderSample05.csproj │ ├── AccessDBProviderSample05.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── 3fe9317c-9994-4813-87f2-918419cdf52bCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── AccessDB Provider Sample 06 ├── C# │ ├── AccessDBProviderSample06.cs │ ├── AccessDBProviderSample06.csproj │ ├── AccessDBProviderSample06.sln │ ├── AssemblyInfo.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── fad7b859-a835-47c6-8af4-668b2cb3602fCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Activity Controller Extensibility Sample ├── C# │ ├── ActivityControllerExtensibilitySample.csproj │ ├── ActivityControllerExtensibilitySample.sln │ ├── AssemblyInfo.cs │ ├── CustomWorkflowEndpointSetup.ps1 │ ├── Program.cs │ ├── Readme.txt │ ├── SampleActivityController.cs │ ├── SampleConfigurationProvider.cs │ └── SampleWorkflow.xaml ├── description.html ├── description │ ├── 04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Activity Generator Sample ├── C# │ ├── ActivityGenerator.csproj │ ├── ActivityGenerator.sln │ ├── Math.cdxml │ ├── New-PSActivity.ps1 │ ├── Program.cs │ ├── Readme.txt │ └── assemblyinfo.cs ├── description.html ├── description │ ├── 04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Event Notification Sample ├── C# │ ├── AssemblyInfo.cs │ ├── Events02.cs │ ├── Events02.csproj │ ├── Events02.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Event Registration Sample ├── C# │ ├── AssemblyInfo.cs │ ├── Events01.cs │ ├── Events01.csproj │ ├── Events01.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Get-Process Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── GetProcessSample01.cs │ ├── GetProcessSample01.csproj │ ├── GetProcessSample01.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Get-Process Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── GetProcessSample02.cs │ ├── GetProcessSample02.csproj │ ├── GetProcessSample02.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Get-Process Sample 03 ├── C# │ ├── AssemblyInfo.cs │ ├── GetProcessSample03.cs │ ├── GetProcessSample03.csproj │ ├── GetProcessSample03.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Get-Process Sample 04 ├── C# │ ├── AssemblyInfo.cs │ ├── GetProcessSample04.cs │ ├── GetProcessSample04.csproj │ ├── GetProcessSample04.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Get-Process Sample 05 ├── C# │ ├── AssemblyInfo.cs │ ├── GetProcessSample05.cs │ ├── GetProcessSample05.csproj │ ├── GetProcessSample05.sln │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Host01.cs │ ├── Host01.csproj │ ├── Host01.sln │ ├── MyHost.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── Host02.cs │ ├── Host02.csproj │ ├── Host02.sln │ ├── MyHost.cs │ ├── MyHostUserInterface.cs │ ├── MyRawUserInterface.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 03 ├── C# │ ├── AssemblyInfo.cs │ ├── Host03.cs │ ├── Host03.csproj │ ├── Host03.sln │ ├── MyHost.cs │ ├── MyHostUserInterface.cs │ ├── MyRawUserInterface.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 04 ├── C# │ ├── AssemblyInfo.cs │ ├── Host04.cs │ ├── Host04.csproj │ ├── Host04.sln │ ├── HostUtilities.cs │ ├── MyHost.cs │ ├── MyHostUserInterface.cs │ ├── MyRawUserInterface.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 05 ├── C# │ ├── AssemblyInfo.cs │ ├── Host05.cs │ ├── Host05.csproj │ ├── Host05.sln │ ├── HostUtilities.cs │ ├── MyHost.cs │ ├── MyHostUserInterface.cs │ ├── MyRawUserInterface.cs │ └── Readme.txt ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Host Sample 06 ├── C# │ ├── AssemblyInfo.cs │ ├── Host06.cs │ ├── Host06.csproj │ ├── Host06.sln │ ├── HostUtilities.cs │ ├── MyHost.cs │ ├── MyHostUserInterface.cs │ ├── MyRawUserInterface.cs │ ├── Readme.txt │ └── readline.cs ├── description.html ├── description │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── JobSourceAdapter Sample ├── C# │ ├── AssemblyInfo.cs │ ├── JobSourceAdapter.csproj │ ├── JobSourceAdapter.sln │ ├── JobSourceAdapterSample.cs │ └── Readme.txt ├── description.html ├── description │ ├── 0aac1760-b513-488a-ba57-e31d9413a075Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── PowerShell Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── PowerShell01.cs │ ├── PowerShell01.csproj │ ├── PowerShell01.sln │ └── Readme.txt ├── description.html ├── description │ ├── 9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── PowerShell Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── PowerShell02.cs │ ├── PowerShell02.csproj │ ├── PowerShell02.sln │ └── Readme.txt ├── description.html ├── description │ ├── 9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Remote Runspace Pool Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── RemoteRunspacePool01.cs │ ├── RemoteRunspacePool01.csproj │ └── RemoteRunspacePool01.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Remote Runspace Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── RemoteRunspace01.cs │ ├── RemoteRunspace01.csproj │ └── RemoteRunspace01.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Remoting Disconnect Reconnect Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── RemotingDisconnectConnect01.cs │ ├── RemotingDisconnectConnect01.csproj │ └── RemotingDisconnectConnect01.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace01.cs │ ├── Runspace01.csproj │ └── Runspace01.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace02.cs │ ├── Runspace02.csproj │ └── Runspace02.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 03 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace03.cs │ ├── Runspace03.csproj │ └── Runspace03.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 04 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace04.cs │ ├── Runspace04.csproj │ └── Runspace04.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 05 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace05.cs │ ├── Runspace05.csproj │ └── Runspace05.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 06 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace06.cs │ ├── Runspace06.csproj │ └── Runspace06.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 07 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace07.cs │ ├── Runspace07.csproj │ └── Runspace07.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 08 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace08.cs │ ├── Runspace08.csproj │ └── Runspace08.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 09 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace09.cs │ ├── Runspace09.csproj │ └── Runspace09.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 10 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace10.cs │ ├── Runspace10.csproj │ └── Runspace10.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Runspace Sample 11 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Runspace11.cs │ ├── Runspace11.csproj │ └── Runspace11.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── SQL Store Extensibility Sample ├── C# │ ├── AssemblyInfo.cs │ ├── DatabaseSetup.cmd │ ├── PowerShellWorkflowExtendedStoreSetup.sql │ ├── Program.cs │ ├── Readme.txt │ ├── SQLStoreExtensibilitySample.csproj │ ├── SQLStoreExtensibilitySample.sln │ ├── SampleConfigurationProvider.cs │ ├── SampleSqlIOParticipant.cs │ ├── SampleSqlInstanceStore.cs │ ├── SampleWorkflow.xaml │ └── SqlOperations.cs ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Script Line Profiler Sample ├── C# │ ├── AssemblyInfo.cs │ ├── PSProfiler.cs │ ├── PSProfiler.csproj │ ├── PSProfiler.sln │ └── Readme.txt ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Select-Object Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── ObjectCommandComparer.cs │ ├── Readme.txt │ ├── SelectObject01.cs │ ├── SelectObject01.csproj │ └── SelectObject01.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Select-String Sample ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── SelectStrCommandSample.cs │ ├── SelectStrCommandSample.csproj │ └── SelectStrCommandSample.sln ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Serialization Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Serialization01.cs │ ├── Serialization01.csproj │ ├── Serialization01.sln │ └── Serialization01.types.ps1xml ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Serialization Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Serialization02.cs │ ├── Serialization02.csproj │ ├── Serialization02.sln │ └── Serialization02.types.ps1xml ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Serialization Sample 03 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── Serialization03.cs │ ├── Serialization03.csproj │ ├── Serialization03.sln │ └── Serialization03.types.ps1xml ├── description.html ├── description │ ├── 9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Simple Workflow Extensibility Sample ├── C# │ ├── AssemblyInfo.cs │ ├── Program.cs │ ├── Readme.txt │ ├── SampleConfigurationProvider.cs │ ├── SampleWorkflow.xaml │ ├── SimpleExtensibilitySample.csproj │ └── SimpleExtensibilitySample.sln ├── description.html ├── description │ ├── 1b88b18a-5268-4861-9da2-6c6e2539edaaCombined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Stop-Process Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── StopProcessSample01.cs │ ├── StopProcessSample01.csproj │ └── StopProcessSample01.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Stop-Process Sample 02 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── StopProcessSample02.cs │ ├── StopProcessSample02.csproj │ └── StopProcessSample02.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Stop-Process Sample 03 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── StopProcessSample03.cs │ ├── StopProcessSample03.csproj │ └── StopProcessSample03.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Stop-Process Sample 04 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── StopProcessSample04.cs │ ├── StopProcessSample04.csproj │ └── StopProcessSample04.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Supports Paging 01 Sample ├── C# │ ├── AssemblyInfo.cs │ ├── GetNumbersCommand.cs │ ├── Readme.txt │ ├── Result.cs │ ├── SupportsPaging01.csproj │ ├── SupportsPaging01.ps1 │ └── SupportsPaging01.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Template Provider Sample 01 ├── C# │ ├── AssemblyInfo.cs │ ├── Readme.txt │ ├── TemplateProvider01.cs │ ├── TemplateProvider01.csproj │ └── TemplateProvider01.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── Transacted Comment Sample ├── C# │ ├── AddTransactedCommentCommand.cs │ ├── AssemblyInfo.cs │ ├── ClearTransactedCommentCommand.cs │ ├── GetTransactedCommentCommand.cs │ ├── Readme.txt │ ├── TransactedComment.cs │ ├── TransactedComment.csproj │ └── TransactedComment.sln ├── description.html ├── description │ ├── 4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css │ ├── Brand.css │ ├── Combined.css │ ├── Galleries.css │ ├── Layout.css │ ├── iframedescription.css │ └── offline.js └── license.rtf ├── description.html ├── description ├── 56ca8eff-3846-44d5-93cf-e53633af8140Combined.css ├── Brand.css ├── Combined.css ├── Galleries.css ├── Layout.css ├── iframedescription.css └── offline.js └── license.rtf /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Microsoft Open Source Code of Conduct 2 | 3 | This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). 4 | 5 | Resources: 6 | 7 | - [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/) 8 | - [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) 9 | - Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns 10 | - Employees can reach out at [aka.ms/opensource/moderation-support](https://aka.ms/opensource/moderation-support) 11 | -------------------------------------------------------------------------------- /LICENSE-CODE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | Copyright (c) Microsoft Corporation 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and 5 | associated documentation files (the "Software"), to deal in the Software without restriction, 6 | including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 7 | and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, 8 | subject to the following conditions: 9 | 10 | The above copyright notice and this permission notice shall be included in all copies or substantial 11 | portions of the Software. 12 | 13 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT 14 | NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 15 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 16 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 17 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # PowerShell SDK Samples 2 | 3 | This repository contains code samples from the PowerShell SDK. 4 | 5 | ## Microsoft Open Source Code of Conduct 6 | 7 | This project has adopted the [Microsoft Open Source Code of Conduct][coc]. 8 | 9 | [coc]: CODE_OF_CONDUCT.md 10 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample01/AccessDBProviderSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample01/AccessDBProviderSample01.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample01/AccessDBProviderSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample01", "AccessDBProviderSample01.csproj", "{B776F0B2-79B7-465D-9C31-0A0B1B88548D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample02/AccessDBProviderSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample02/AccessDBProviderSample02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample02/AccessDBProviderSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample02", "AccessDBProviderSample02.csproj", "{642A5035-4FCF-4689-ACE7-D11540C64313}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample03/AccessDBProviderSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample03/AccessDBProviderSample03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample03/AccessDBProviderSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample03", "AccessDBProviderSample03.csproj", "{5D070641-CF28-4485-9BC3-D59966223546}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5D070641-CF28-4485-9BC3-D59966223546}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5D070641-CF28-4485-9BC3-D59966223546}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5D070641-CF28-4485-9BC3-D59966223546}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5D070641-CF28-4485-9BC3-D59966223546}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample04/AccessDBProviderSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample04/AccessDBProviderSample04.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample04/AccessDBProviderSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample04", "AccessDBProviderSample04.csproj", "{C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample04/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample04/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample05/AccessDBProviderSample05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample05/AccessDBProviderSample05.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample05/AccessDBProviderSample05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample05", "AccessDBProviderSample05.csproj", "{4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample05/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample05/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample06/AccessDBProviderSample06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample06/AccessDBProviderSample06.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample06/AccessDBProviderSample06.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample06", "AccessDBProviderSample06.csproj", "{581E8079-3D57-4DAB-A177-04FC5F5EA916}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/AccessDBProviderSample06/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/AccessDBProviderSample06/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Event01/Events01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Events01", "Events01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Event02/Events02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Events02", "Events02.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample01/GetProcessSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample01/GetProcessSample01.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample01/GetProcessSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample01", "GetProcessSample01.csproj", "{2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample02/GetProcessSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample02/GetProcessSample02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample02/GetProcessSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample02", "GetProcessSample02.csproj", "{7166D6AE-01CC-4E15-9616-0453BA0F4466}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample03/GetProcessSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample03/GetProcessSample03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample03/GetProcessSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample03", "GetProcessSample03.csproj", "{5C8BFB46-087B-48F4-A8E2-718B982BE7D9}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample04/GetProcessSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample04/GetProcessSample04.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample04/GetProcessSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample04", "GetProcessSample04.csproj", "{1485AE3D-7BF0-481C-97D6-9058B3C79160}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample04/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample04/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample05/GetProcessSample05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample05/GetProcessSample05.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample05/GetProcessSample05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample05", "GetProcessSample05.csproj", "{0F94B080-40DD-485C-A271-F76076277E00}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0F94B080-40DD-485C-A271-F76076277E00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {0F94B080-40DD-485C-A271-F76076277E00}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {0F94B080-40DD-485C-A271-F76076277E00}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {0F94B080-40DD-485C-A271-F76076277E00}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/GetProcessSample05/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/GetProcessSample05/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host01/Host01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host01/Host01.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host01/Host01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host01", "Host01.csproj", "{D7994ED2-9FFA-4233-98C8-B906B38CC034}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host01/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host01/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/Host02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host02/Host02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/Host02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host02", "Host02.csproj", "{386242A7-B7BA-49E2-A0CE-E1141F96FA39}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host02/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host02/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host02/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/Host03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host03/Host03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/Host03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host03", "Host03.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host03/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host03/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host03/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/Host04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host04/Host04.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/Host04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host04", "Host04.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host04/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host04/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host04/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host04/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host04/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/Host05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host05/Host05.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/Host05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host05", "Host05.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host05/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host05/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host05/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host05/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host05/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/Host06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host06/Host06.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/Host06.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host06", "Host06.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host06/MyHost.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host06/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host06/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Host06/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Host06/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/PowerShell01/PowerShell01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerShell01", "PowerShell01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/PowerShell02/PowerShell02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerShell02", "PowerShell02.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/PowerShell02/Readme.txt: -------------------------------------------------------------------------------- 1 | PowerShell Sample 02 2 | ========================== 3 | This sample uses a RunspacePool to run multiple commands concurrently. 4 | 5 | For Windows PowerShell information on MSDN, 6 | see http://go.microsoft.com/fwlink/?LinkID=178145 7 | 8 | 9 | Sample Language Implementations 10 | =============================== 11 | This sample is available in the following language implementations: 12 | 13 | - C# 14 | 15 | 16 | To build the sample using Visual Studio: 17 | ======================================= 18 | 1. Open Windows Explorer and navigate to PowerShell01 under the samples directory. 19 | 2. Double-click the icon for the .sln (solution) file to open the file in Visual Studio. 20 | 3. In the Build menu, select Build Solution. 21 | The executable will be built in the default \bin or \bin\Debug directory. 22 | 23 | 24 | To run the sample: 25 | ================= 26 | 1. Start command prompt. 27 | 2. Navigate to the folder containing the sample executable. 28 | 3. Run the executable 29 | 30 | See the output results and the corresponding code. 31 | 32 | 33 | Demonstrates 34 | ============ 35 | This sample demonstrates the following: 36 | 37 | 1. Creating a RunspacePool with a minimum and maximum number of Runspaces. 38 | 2. Creating many PowerShell commands with the same RunspacePool. 39 | 3. Running the commands concurrently. 40 | 4. Calling GetAvailableRunspaces to see how many Runspaces are free. 41 | 5. Capturing the command output with EndInvoke. 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/RemoteRunspace01/RemoteRunspace01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteRunspace01", "RemoteRunspace01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/RemoteRunspacePool01/RemoteRunspacePool01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteRunspacePool01", "RemoteRunspacePool01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace01/Runspace01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace01/Runspace01.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace01/Runspace01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace01", "Runspace01.csproj", "{09544904-09D8-4349-9C9F-5AA74859524D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {09544904-09D8-4349-9C9F-5AA74859524D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {09544904-09D8-4349-9C9F-5AA74859524D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {09544904-09D8-4349-9C9F-5AA74859524D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {09544904-09D8-4349-9C9F-5AA74859524D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace02/Runspace02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace02/Runspace02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace02/Runspace02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace02/Runspace02.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace03/Runspace03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace03/Runspace03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace03/Runspace03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace03/Runspace03.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace04/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace04/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace04/Runspace04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace04/Runspace04.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace04/Runspace04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace04/Runspace04.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace05/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace05/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace05/Runspace05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace05/Runspace05.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace05/Runspace05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace05/Runspace05.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace06/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace06/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace06/Runspace06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace06/Runspace06.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace06/Runspace06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace06/Runspace06.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace07/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace07/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace07/Runspace07.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace07/Runspace07.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace07/Runspace07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace07/Runspace07.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace08/Runspace08.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace08/Runspace08.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace08/Runspace08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace08/Runspace08.sln -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace09/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace09/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace09/Runspace09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace09/Runspace09.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace09/Runspace09.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace09", "Runspace09.csproj", "{D45C1996-DBFA-4EE8-A82E-855BAC709C7A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace10/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace10/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace10/Runspace10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace10/Runspace10.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace10/Runspace10.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace10", "Runspace10.csproj", "{D45C1996-DBFA-4EE8-A82E-855BAC709C7A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace11/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace11/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace11/Runspace11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Runspace11/Runspace11.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Runspace11/Runspace11.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace11", "Runspace11.csproj", "{D45C1996-DBFA-4EE8-A82E-832489A2587A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectObject/ObjectCommandComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/SelectObject/ObjectCommandComparer.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectObject/SelectObj.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/SelectObject/SelectObj.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectObject/SelectObject.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectObject", "SelectObject.csproj", "{55909FE2-BADA-40BE-8A49-686BD7DD13AC}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectString/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/SelectString/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectString/SelectStrCommandSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/SelectString/SelectStrCommandSample.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/SelectString/SelectStrCommandSample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectStrCommandSample", "SelectStrCommandSample.csproj", "{0809F4CB-8902-48CD-A613-F1B8DA1A4D34}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization01/Serialization01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization01/Serialization01.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization01/Serialization01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization01", "Serialization01.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF914}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization01/Serialization01.types.ps1xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Drawing.Point 5 | 6 | 7 | PSStandardMembers 8 | 9 | 11 | 12 | SerializationDepth 13 | 1 14 | 15 | 16 | 18 | 19 | SerializationMethod 20 | SpecificProperties 21 | 22 | 23 | PropertySerializationSet 24 | 25 | X 26 | Y 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization02/Serialization02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization02/Serialization02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization02/Serialization02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization02", "Serialization02.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF91D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization02/Serialization02.types.ps1xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Drawing.Point 5 | 6 | 7 | 8 | PSStandardMembers 9 | 10 | 11 | SerializationDepth 12 | 1 13 | 14 | 15 | 16 | 17 | 19 | 21 | 22 | BinaryFormatterOutput 23 | 24 | $memoryStream = new-object system.io.memorystream 25 | $binaryFormatter = new-object system.runtime.serialization.formatters.binary.binaryformatter 26 | $binaryFormatter.Serialize($memoryStream, $this) 27 | $memoryStream.GetBuffer() 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization03/Serialization03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Serialization03/Serialization03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/Serialization03/Serialization03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization03", "Serialization03.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF915}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample01/StopProcessSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample01", "StopProcessSample01.csproj", "{D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample02/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample02/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample02/StopProcessSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample02/StopProcessSample02.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample02/StopProcessSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample02", "StopProcessSample02.csproj", "{58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample03/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample03/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample03/StopProcessSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample03/StopProcessSample03.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample03/StopProcessSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample03", "StopProcessSample03.csproj", "{2A93BBE6-AFEF-4C72-8CED-800097E42F9D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample04/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample04/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample04/StopProcessSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/StopProcessSample04/StopProcessSample04.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/StopProcessSample04/StopProcessSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample04", "StopProcessSample04.csproj", "{CCB47050-9135-4F37-AFB0-F81B002D9C34}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/TemplateProvider/TemplateProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/TemplateProvider/TemplateProvider.cs -------------------------------------------------------------------------------- /SDK-2.0/csharp/TemplateProvider/TemplateProvider.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 9.00 3 | # Visual Studio 2005 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TemplateProvider", "TemplateProvider.csproj", "{E179EC25-76F4-4DFF-829E-4F836C1D6C28}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-2.0/csharp/Transactions01/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-2.0/csharp/Transactions01/Readme.txt -------------------------------------------------------------------------------- /SDK-2.0/csharp/Transactions01/TransactedComment.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 9.00 2 | # Visual Studio 2005 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TransactedComment", "TransactedComment.csproj", "{28912C5B-19A9-4C5B-859C-8E4AD7D396C5}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Any CPU = Debug|Any CPU 8 | Release|Any CPU = Release|Any CPU 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 12 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Debug|Any CPU.Build.0 = Debug|Any CPU 13 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Release|Any CPU.ActiveCfg = Release|Any CPU 14 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Release|Any CPU.Build.0 = Release|Any CPU 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/C#/AccessDBProviderSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 01/C#/AccessDBProviderSample01.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/C#/AccessDBProviderSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample01", "AccessDBProviderSample01.csproj", "{B776F0B2-79B7-465D-9C31-0A0B1B88548D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {B776F0B2-79B7-465D-9C31-0A0B1B88548D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 01/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 01/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/C#/AccessDBProviderSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 02/C#/AccessDBProviderSample02.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/C#/AccessDBProviderSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample02", "AccessDBProviderSample02.csproj", "{642A5035-4FCF-4689-ACE7-D11540C64313}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {642A5035-4FCF-4689-ACE7-D11540C64313}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 02/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 02/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/C#/AccessDBProviderSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 03/C#/AccessDBProviderSample03.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/C#/AccessDBProviderSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample03", "AccessDBProviderSample03.csproj", "{5D070641-CF28-4485-9BC3-D59966223546}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5D070641-CF28-4485-9BC3-D59966223546}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5D070641-CF28-4485-9BC3-D59966223546}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5D070641-CF28-4485-9BC3-D59966223546}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5D070641-CF28-4485-9BC3-D59966223546}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 03/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 03/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/C#/AccessDBProviderSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 04/C#/AccessDBProviderSample04.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/C#/AccessDBProviderSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample04", "AccessDBProviderSample04.csproj", "{C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {C3306B52-53FB-4EC8-8C3E-B9910B81C7E5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 04/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 04/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 04/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 04/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 04/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/C#/AccessDBProviderSample05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 05/C#/AccessDBProviderSample05.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/C#/AccessDBProviderSample05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample05", "AccessDBProviderSample05.csproj", "{4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {4423F9E1-A551-42DE-AAE3-B96DCFC4C49D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 05/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 05/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 05/description/3fe9317c-9994-4813-87f2-918419cdf52bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 05/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 05/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/C#/AccessDBProviderSample06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 06/C#/AccessDBProviderSample06.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/C#/AccessDBProviderSample06.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AccessDBProviderSample06", "AccessDBProviderSample06.csproj", "{581E8079-3D57-4DAB-A177-04FC5F5EA916}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {581E8079-3D57-4DAB-A177-04FC5F5EA916}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 06/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 06/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 06/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/AccessDB Provider Sample 06/description/fad7b859-a835-47c6-8af4-668b2cb3602fCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/AccessDB Provider Sample 06/description/fad7b859-a835-47c6-8af4-668b2cb3602fCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Activity Controller Extensibility Sample/C#/ActivityControllerExtensibilitySample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ActivityControllerExtensibilitySample", "ActivityControllerExtensibilitySample.csproj", "{83BEBFDE-058C-471E-9855-F11FB438326C}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {83BEBFDE-058C-471E-9855-F11FB438326C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {83BEBFDE-058C-471E-9855-F11FB438326C}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {83BEBFDE-058C-471E-9855-F11FB438326C}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {83BEBFDE-058C-471E-9855-F11FB438326C}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Activity Controller Extensibility Sample/C#/CustomWorkflowEndpointSetup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Controller Extensibility Sample/C#/CustomWorkflowEndpointSetup.ps1 -------------------------------------------------------------------------------- /SDK-3.0/Activity Controller Extensibility Sample/description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Controller Extensibility Sample/description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Activity Controller Extensibility Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Controller Extensibility Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Activity Generator Sample/C#/ActivityGenerator.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ActivityGenerator", "ActivityGenerator.csproj", "{2113D473-57EA-46AA-820F-B042D27395B7}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Debug|x86 = Debug|x86 10 | Release|Any CPU = Release|Any CPU 11 | Release|x86 = Release|x86 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2113D473-57EA-46AA-820F-B042D27395B7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2113D473-57EA-46AA-820F-B042D27395B7}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2113D473-57EA-46AA-820F-B042D27395B7}.Debug|x86.ActiveCfg = Debug|Any CPU 17 | {2113D473-57EA-46AA-820F-B042D27395B7}.Release|Any CPU.ActiveCfg = Release|Any CPU 18 | {2113D473-57EA-46AA-820F-B042D27395B7}.Release|x86.ActiveCfg = Release|Any CPU 19 | EndGlobalSection 20 | GlobalSection(SolutionProperties) = preSolution 21 | HideSolutionNode = FALSE 22 | EndGlobalSection 23 | EndGlobal 24 | -------------------------------------------------------------------------------- /SDK-3.0/Activity Generator Sample/C#/New-PSActivity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Generator Sample/C#/New-PSActivity.ps1 -------------------------------------------------------------------------------- /SDK-3.0/Activity Generator Sample/description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Generator Sample/description/04f9c26e-88fd-4dfd-b715-9733d17420b6Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Activity Generator Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Activity Generator Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Event Notification Sample/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Notification Sample/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Event Notification Sample/C#/Events02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Events02", "Events02.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Event Notification Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Notification Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Event Notification Sample/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Notification Sample/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Event Registration Sample/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Registration Sample/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Event Registration Sample/C#/Events01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Events01", "Events01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Event Registration Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Registration Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Event Registration Sample/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Event Registration Sample/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/C#/GetProcessSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 01/C#/GetProcessSample01.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/C#/GetProcessSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample01", "GetProcessSample01.csproj", "{2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2BD66E2A-9B1B-4E48-8D83-DAA48D40316D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 01/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 01/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 01/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/C#/GetProcessSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 02/C#/GetProcessSample02.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/C#/GetProcessSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample02", "GetProcessSample02.csproj", "{7166D6AE-01CC-4E15-9616-0453BA0F4466}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {7166D6AE-01CC-4E15-9616-0453BA0F4466}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 02/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 02/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 02/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/C#/GetProcessSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 03/C#/GetProcessSample03.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/C#/GetProcessSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample03", "GetProcessSample03.csproj", "{5C8BFB46-087B-48F4-A8E2-718B982BE7D9}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {5C8BFB46-087B-48F4-A8E2-718B982BE7D9}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 03/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 03/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 03/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 04/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/C#/GetProcessSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 04/C#/GetProcessSample04.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/C#/GetProcessSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample04", "GetProcessSample04.csproj", "{1485AE3D-7BF0-481C-97D6-9058B3C79160}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {1485AE3D-7BF0-481C-97D6-9058B3C79160}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 04/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 04/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 04/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 04/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 05/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/C#/GetProcessSample05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 05/C#/GetProcessSample05.cs -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/C#/GetProcessSample05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GetProcessSample05", "GetProcessSample05.csproj", "{0F94B080-40DD-485C-A271-F76076277E00}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0F94B080-40DD-485C-A271-F76076277E00}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {0F94B080-40DD-485C-A271-F76076277E00}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {0F94B080-40DD-485C-A271-F76076277E00}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {0F94B080-40DD-485C-A271-F76076277E00}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 05/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 05/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Get-Process Sample 05/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Get-Process Sample 05/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/C#/Host01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/C#/Host01.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/C#/Host01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host01", "Host01.csproj", "{D7994ED2-9FFA-4233-98C8-B906B38CC034}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D7994ED2-9FFA-4233-98C8-B906B38CC034}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 01/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 01/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/Host02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/Host02.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/Host02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host02", "Host02.csproj", "{386242A7-B7BA-49E2-A0CE-E1141F96FA39}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {386242A7-B7BA-49E2-A0CE-E1141F96FA39}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 02/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 02/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/Host03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/Host03.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/Host03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host03", "Host03.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 03/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 03/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/Host04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/Host04.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/Host04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host04", "Host04.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 04/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 04/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/Host05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/Host05.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/Host05.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host05", "Host05.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 05/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 05/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/Host06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/Host06.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/Host06.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Host06", "Host06.csproj", "{95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {95F6C7CD-67D5-45A6-B4B4-E59D62B05CE5}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/MyHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/MyHost.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/MyHostUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/MyHostUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/MyRawUserInterface.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/MyRawUserInterface.cs -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Host Sample 06/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Host Sample 06/description/a7bd86db-8a7a-43ce-8954-21f8f839f51bCombined.css -------------------------------------------------------------------------------- /SDK-3.0/JobSourceAdapter Sample/C#/JobSourceAdapter.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JobSourceAdapter", "JobSourceAdapter.csproj", "{CA32D33D-F594-4AF1-955D-8316DF8F6AC1}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {CA32D33D-F594-4AF1-955D-8316DF8F6AC1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {CA32D33D-F594-4AF1-955D-8316DF8F6AC1}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {CA32D33D-F594-4AF1-955D-8316DF8F6AC1}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {CA32D33D-F594-4AF1-955D-8316DF8F6AC1}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/JobSourceAdapter Sample/description/0aac1760-b513-488a-ba57-e31d9413a075Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/JobSourceAdapter Sample/description/0aac1760-b513-488a-ba57-e31d9413a075Combined.css -------------------------------------------------------------------------------- /SDK-3.0/JobSourceAdapter Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/JobSourceAdapter Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 01/C#/PowerShell01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerShell01", "PowerShell01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 01/description/9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 01/description/9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 02/C#/PowerShell02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PowerShell02", "PowerShell02.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 02/description/9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 02/description/9e116645-9d9a-4566-82a8-7b29a5b324f1Combined.css -------------------------------------------------------------------------------- /SDK-3.0/PowerShell Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/PowerShell Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Pool Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Pool Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Pool Sample 01/C#/RemoteRunspacePool01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteRunspacePool01", "RemoteRunspacePool01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Pool Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Pool Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Pool Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Pool Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Sample 01/C#/RemoteRunspace01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemoteRunspace01", "RemoteRunspace01.csproj", "{E1F29A08-8821-403A-B3EF-0DB6C064D20A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E1F29A08-8821-403A-B3EF-0DB6C064D20A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remote Runspace Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remote Runspace Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remoting Disconnect Reconnect Sample 01/C#/RemotingDisconnectConnect01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "RemotingDisconnectConnect01", "RemotingDisconnectConnect01.csproj", "{C925CD32-3CBE-420E-A3B9-4F94B43DE69F}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {C925CD32-3CBE-420E-A3B9-4F94B43DE69F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {C925CD32-3CBE-420E-A3B9-4F94B43DE69F}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {C925CD32-3CBE-420E-A3B9-4F94B43DE69F}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {C925CD32-3CBE-420E-A3B9-4F94B43DE69F}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Remoting Disconnect Reconnect Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remoting Disconnect Reconnect Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Remoting Disconnect Reconnect Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Remoting Disconnect Reconnect Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 01/C#/Runspace01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 01/C#/Runspace01.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 01/C#/Runspace01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace01", "Runspace01.csproj", "{09544904-09D8-4349-9C9F-5AA74859524D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {09544904-09D8-4349-9C9F-5AA74859524D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {09544904-09D8-4349-9C9F-5AA74859524D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {09544904-09D8-4349-9C9F-5AA74859524D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {09544904-09D8-4349-9C9F-5AA74859524D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/C#/Runspace02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/C#/Runspace02.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/C#/Runspace02.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/C#/Runspace02.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 03/C#/Runspace03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 03/C#/Runspace03.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 03/C#/Runspace03.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 03/C#/Runspace03.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 03/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 03/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 04/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 04/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 04/C#/Runspace04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 04/C#/Runspace04.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 04/C#/Runspace04.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 04/C#/Runspace04.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 04/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 04/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 04/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 04/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 05/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 05/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 05/C#/Runspace05.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 05/C#/Runspace05.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 05/C#/Runspace05.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 05/C#/Runspace05.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 05/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 05/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 05/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 05/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 06/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 06/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 06/C#/Runspace06.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 06/C#/Runspace06.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 06/C#/Runspace06.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 06/C#/Runspace06.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 06/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 06/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 06/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 06/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 07/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 07/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 07/C#/Runspace07.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 07/C#/Runspace07.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 07/C#/Runspace07.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 07/C#/Runspace07.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 07/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 07/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 07/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 07/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 08/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 08/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 08/C#/Runspace08.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 08/C#/Runspace08.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 08/C#/Runspace08.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 08/C#/Runspace08.sln -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 08/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 08/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 08/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 08/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 09/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 09/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 09/C#/Runspace09.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 09/C#/Runspace09.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 09/C#/Runspace09.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace09", "Runspace09.csproj", "{D45C1996-DBFA-4EE8-A82E-855BAC709C7A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 09/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 09/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 09/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 09/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 10/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 10/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 10/C#/Runspace10.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 10/C#/Runspace10.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 10/C#/Runspace10.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace10", "Runspace10.csproj", "{D45C1996-DBFA-4EE8-A82E-855BAC709C7A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-855BAC709C7A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 10/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 10/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 10/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 10/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 11/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 11/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 11/C#/Runspace11.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 11/C#/Runspace11.cs -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 11/C#/Runspace11.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Runspace11", "Runspace11.csproj", "{D45C1996-DBFA-4EE8-A82E-832489A2587A}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-832489A2587A}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 11/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 11/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Runspace Sample 11/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Runspace Sample 11/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/SQL Store Extensibility Sample/C#/PowerShellWorkflowExtendedStoreSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/SQL Store Extensibility Sample/C#/PowerShellWorkflowExtendedStoreSetup.sql -------------------------------------------------------------------------------- /SDK-3.0/SQL Store Extensibility Sample/C#/SQLStoreExtensibilitySample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SQLStoreExtensibilitySample", "SQLStoreExtensibilitySample.csproj", "{06334F1C-8310-4194-BB9E-52FBDF326177}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|Any CPU 9 | Release|x86 = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {06334F1C-8310-4194-BB9E-52FBDF326177}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {06334F1C-8310-4194-BB9E-52FBDF326177}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {06334F1C-8310-4194-BB9E-52FBDF326177}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {06334F1C-8310-4194-BB9E-52FBDF326177}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/SQL Store Extensibility Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/SQL Store Extensibility Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/SQL Store Extensibility Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/SQL Store Extensibility Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Script Line Profiler Sample/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Script Line Profiler Sample/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Script Line Profiler Sample/C#/PSProfiler.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PSProfiler", "PSProfiler.csproj", "{F0B0E55E-DE08-4619-BF06-610A0F885804}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {F0B0E55E-DE08-4619-BF06-610A0F885804}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {F0B0E55E-DE08-4619-BF06-610A0F885804}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {F0B0E55E-DE08-4619-BF06-610A0F885804}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {F0B0E55E-DE08-4619-BF06-610A0F885804}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Script Line Profiler Sample/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Script Line Profiler Sample/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Script Line Profiler Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Script Line Profiler Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-Object Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/C#/ObjectCommandComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-Object Sample 01/C#/ObjectCommandComparer.cs -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/C#/SelectObject01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-Object Sample 01/C#/SelectObject01.cs -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/C#/SelectObject01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectObject01", "SelectObject01.csproj", "{55909FE2-BADA-40BE-8A49-686BD7DD13AC}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {55909FE2-BADA-40BE-8A49-686BD7DD13AC}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-Object Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Select-Object Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-Object Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Select-String Sample/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-String Sample/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Select-String Sample/C#/SelectStrCommandSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-String Sample/C#/SelectStrCommandSample.cs -------------------------------------------------------------------------------- /SDK-3.0/Select-String Sample/C#/SelectStrCommandSample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SelectStrCommandSample", "SelectStrCommandSample.csproj", "{0809F4CB-8902-48CD-A613-F1B8DA1A4D34}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {0809F4CB-8902-48CD-A613-F1B8DA1A4D34}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Select-String Sample/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-String Sample/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Select-String Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Select-String Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/C#/Serialization01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 01/C#/Serialization01.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/C#/Serialization01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization01", "Serialization01.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF914}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF914}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/C#/Serialization01.types.ps1xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Drawing.Point 5 | 6 | 7 | PSStandardMembers 8 | 9 | 11 | 12 | SerializationDepth 13 | 1 14 | 15 | 16 | 18 | 19 | SerializationMethod 20 | SpecificProperties 21 | 22 | 23 | PropertySerializationSet 24 | 25 | X 26 | Y 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 01/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/C#/Serialization02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 02/C#/Serialization02.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/C#/Serialization02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization02", "Serialization02.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF91D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF91D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/C#/Serialization02.types.ps1xml: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | System.Drawing.Point 5 | 6 | 7 | 8 | PSStandardMembers 9 | 10 | 11 | SerializationDepth 12 | 1 13 | 14 | 15 | 16 | 17 | 19 | 21 | 22 | BinaryFormatterOutput 23 | 24 | $memoryStream = new-object system.io.memorystream 25 | $binaryFormatter = new-object system.runtime.serialization.formatters.binary.binaryformatter 26 | $binaryFormatter.Serialize($memoryStream, $this) 27 | $memoryStream.GetBuffer() 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 02/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 03/C#/Serialization03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 03/C#/Serialization03.cs -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 03/C#/Serialization03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Serialization03", "Serialization03.csproj", "{D45C1996-DBFA-4EE8-A82E-8891273AF915}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D45C1996-DBFA-4EE8-A82E-8891273AF915}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 03/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 03/description/9bf1b74c-1640-46af-84d3-e440c8f95162Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Serialization Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Serialization Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Simple Workflow Extensibility Sample/C#/SimpleExtensibilitySample.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SimpleExtensibilitySample", "SimpleExtensibilitySample.csproj", "{A0FC7029-AF87-4161-9735-9D4E550C7877}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|x86 = Debug|Any CPU 9 | Release|x86 = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {A0FC7029-AF87-4161-9735-9D4E550C7877}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {A0FC7029-AF87-4161-9735-9D4E550C7877}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {A0FC7029-AF87-4161-9735-9D4E550C7877}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {A0FC7029-AF87-4161-9735-9D4E550C7877}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Simple Workflow Extensibility Sample/description/1b88b18a-5268-4861-9da2-6c6e2539edaaCombined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Simple Workflow Extensibility Sample/description/1b88b18a-5268-4861-9da2-6c6e2539edaaCombined.css -------------------------------------------------------------------------------- /SDK-3.0/Simple Workflow Extensibility Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Simple Workflow Extensibility Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 01/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/C#/StopProcessSample01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 01/C#/StopProcessSample01.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/C#/StopProcessSample01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample01", "StopProcessSample01.csproj", "{D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {D39861B0-B6B1-4DFF-B56A-17FDBB0B97D3}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 01/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 02/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 02/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/C#/StopProcessSample02.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 02/C#/StopProcessSample02.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/C#/StopProcessSample02.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample02", "StopProcessSample02.csproj", "{58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {58CEA3B8-5ADB-4345-A3EB-BA150F9B5131}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 02/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 02/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 02/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 03/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 03/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/C#/StopProcessSample03.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 03/C#/StopProcessSample03.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/C#/StopProcessSample03.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample03", "StopProcessSample03.csproj", "{2A93BBE6-AFEF-4C72-8CED-800097E42F9D}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {2A93BBE6-AFEF-4C72-8CED-800097E42F9D}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 03/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 03/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 03/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 04/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/C#/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 04/C#/Readme.txt -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/C#/StopProcessSample04.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 04/C#/StopProcessSample04.cs -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/C#/StopProcessSample04.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "StopProcessSample04", "StopProcessSample04.csproj", "{CCB47050-9135-4F37-AFB0-F81B002D9C34}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {CCB47050-9135-4F37-AFB0-F81B002D9C34}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 04/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Stop-Process Sample 04/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Stop-Process Sample 04/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Supports Paging 01 Sample/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | // 4 | // DISCLAIMER OF WARRANTY: The software is licensed “as-is.” You 5 | // bear the risk of using it. Microsoft gives no express warranties, 6 | // guarantees or conditions. You may have additional consumer rights 7 | // under your local laws which this agreement cannot change. To the extent 8 | // permitted under your local laws, Microsoft excludes the implied warranties 9 | // of merchantability, fitness for a particular purpose and non-infringement. 10 | 11 | using System.Reflection; 12 | using System.Security.Permissions; 13 | using System.Runtime.InteropServices; 14 | 15 | [assembly: AssemblyTitle("SupportsPaging01")] 16 | [assembly: AssemblyDescription("Demo SupportsPaging Attribute")] 17 | 18 | [assembly: ComVisible(false)] 19 | 20 | [assembly: AssemblyVersion("1.0.0.0")] 21 | [assembly: AssemblyFileVersion("1.0.0.0")] 22 | -------------------------------------------------------------------------------- /SDK-3.0/Supports Paging 01 Sample/C#/Result.cs: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright (c) 2012 Microsoft Corporation. All rights reserved. 3 | // 4 | // DISCLAIMER OF WARRANTY: The software is licensed “as-is.” You 5 | // bear the risk of using it. Microsoft gives no express warranties, 6 | // guarantees or conditions. You may have additional consumer rights 7 | // under your local laws which this agreement cannot change. To the extent 8 | // permitted under your local laws, Microsoft excludes the implied warranties 9 | // of merchantability, fitness for a particular purpose and non-infringement. 10 | 11 | using System; 12 | 13 | namespace SupportsPaging01 14 | { 15 | // A helper class for displaying the sample reults 16 | public sealed class Result 17 | { 18 | private UInt64 _number; 19 | private UInt64 _skip; 20 | private UInt64 _first; 21 | private bool _includeTotalCount; 22 | 23 | public Result(UInt64 number, UInt64 skip, UInt64 first, bool includeTotalCount) 24 | { 25 | this._number = number; 26 | this._skip = skip; 27 | this._first = first; 28 | this._includeTotalCount = includeTotalCount; 29 | } 30 | 31 | public UInt64 Number { get { return _number; } } 32 | public UInt64 Skip { get { return _skip; } } 33 | public UInt64 First { get { return _first; } } 34 | public bool IncludeTotalCount { get { return _includeTotalCount; } } 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /SDK-3.0/Supports Paging 01 Sample/C#/SupportsPaging01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2010 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SupportsPaging01", "SupportsPaging01.csproj", "{ECFDD562-322F-4C9C-BD43-A1D8CE529BC2}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {ECFDD562-322F-4C9C-BD43-A1D8CE529BC2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {ECFDD562-322F-4C9C-BD43-A1D8CE529BC2}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {ECFDD562-322F-4C9C-BD43-A1D8CE529BC2}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {ECFDD562-322F-4C9C-BD43-A1D8CE529BC2}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Supports Paging 01 Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Supports Paging 01 Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Supports Paging 01 Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Supports Paging 01 Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Template Provider Sample 01/C#/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Template Provider Sample 01/C#/AssemblyInfo.cs -------------------------------------------------------------------------------- /SDK-3.0/Template Provider Sample 01/C#/TemplateProvider01.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Template Provider Sample 01/C#/TemplateProvider01.cs -------------------------------------------------------------------------------- /SDK-3.0/Template Provider Sample 01/C#/TemplateProvider01.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 11.00 3 | # Visual Studio 2012 4 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TemplateProvider01", "TemplateProvider01.csproj", "{E179EC25-76F4-4DFF-829E-4F836C1D6C28}" 5 | EndProject 6 | Global 7 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 8 | Debug|Any CPU = Debug|Any CPU 9 | Release|Any CPU = Release|Any CPU 10 | EndGlobalSection 11 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 12 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 13 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Debug|Any CPU.Build.0 = Debug|Any CPU 14 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Release|Any CPU.ActiveCfg = Release|Any CPU 15 | {E179EC25-76F4-4DFF-829E-4F836C1D6C28}.Release|Any CPU.Build.0 = Release|Any CPU 16 | EndGlobalSection 17 | GlobalSection(SolutionProperties) = preSolution 18 | HideSolutionNode = FALSE 19 | EndGlobalSection 20 | EndGlobal 21 | -------------------------------------------------------------------------------- /SDK-3.0/Template Provider Sample 01/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Template Provider Sample 01/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Template Provider Sample 01/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Template Provider Sample 01/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Transacted Comment Sample/C#/TransactedComment.sln: -------------------------------------------------------------------------------- 1 | Microsoft Visual Studio Solution File, Format Version 11.00 2 | # Visual Studio 2012 3 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "TransactedComment", "TransactedComment.csproj", "{28912C5B-19A9-4C5B-859C-8E4AD7D396C5}" 4 | EndProject 5 | Global 6 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 7 | Debug|Any CPU = Debug|Any CPU 8 | Release|Any CPU = Release|Any CPU 9 | EndGlobalSection 10 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 11 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 12 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Debug|Any CPU.Build.0 = Debug|Any CPU 13 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Release|Any CPU.ActiveCfg = Release|Any CPU 14 | {28912C5B-19A9-4C5B-859C-8E4AD7D396C5}.Release|Any CPU.Build.0 = Release|Any CPU 15 | EndGlobalSection 16 | GlobalSection(SolutionProperties) = preSolution 17 | HideSolutionNode = FALSE 18 | EndGlobalSection 19 | EndGlobal 20 | -------------------------------------------------------------------------------- /SDK-3.0/Transacted Comment Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Transacted Comment Sample/description/4f0db316-e33e-4e5c-b975-0f6de635f8e4Combined.css -------------------------------------------------------------------------------- /SDK-3.0/Transacted Comment Sample/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/Transacted Comment Sample/description/Combined.css -------------------------------------------------------------------------------- /SDK-3.0/description/56ca8eff-3846-44d5-93cf-e53633af8140Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/description/56ca8eff-3846-44d5-93cf-e53633af8140Combined.css -------------------------------------------------------------------------------- /SDK-3.0/description/Combined.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MicrosoftDocs/powershell-sdk-samples/4fa7dddcaea2b2652da1360a3d3e0b56ff531501/SDK-3.0/description/Combined.css --------------------------------------------------------------------------------