PowerShell in ASP.NET
Runs a PowerShell script inside of an ASP.net page. The runspace used in the ASP.NET script page will be reused for as long as the session is active. Variables set while running your script will be available throughout the session. PowerShellV2 must be installed on the server, but no other special binaries are required.


The script block to embed in the page. This will use the runScript function declared in the bootstrapper.

The direct ASP.NET text to embed in the page. To run scripts inside of this text, use <% runScript(); %>

If set, the page generated will be a master page

If set, prepends the bootstrapper code to the ASP.NET page. This is required the first time you want to run PowerShell inside of your ASP.NET page. It declares a function, runScript, which you can use to run PowerShell