You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This project is a HTTP service written in C#.NET using the Microsoft OWIN libraries.
@@ -14,7 +19,7 @@ The web service configures the web methods as boot based on the configuration of
14
19
It hosts a PowerShell runspace pool to load, run and check PowerShell scripts, capturing errors and stack traces to the logs
15
20
and parsing complex PowerShell response objects back into JSON.
16
21
17
-
It also supports async jobs to be run as seperate threads, with the job results to be stored on disk.
22
+
It also supports async jobs to be run as separate threads, with the job results to be stored on disk.
18
23
19
24
## How it works
20
25
@@ -89,13 +94,17 @@ First, add a WebApi element with the name __foo__
89
94
90
95
Then for your script, bar.ps1, by convention each script should pipe the return object through [ConvertTo-Json](https://technet.microsoft.com/en-us/library/hh849922.aspx), this is because PowerShell's dynamic objects can contain circular references and cause JSON convertors to crash.
91
96
92
-
Take your named parameters, for example `$message`
97
+
Take your named parameters, for example `$message` and do something with them, in this example
0 commit comments