-
-
Save 0x4243/83d3cb534b99961dec13337a8e33f374 to your computer and use it in GitHub Desktop.
fsi.exe inline execution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#r @"C:\Windows\Microsoft.NET\assembly\GAC_MSIL\System.Management.Automation\v4.0_3.0.0.0__31bf3856ad364e35\System.Management.Automation.dll" | |
open System.Management.Automation | |
open System.Management.Automation.Runspaces | |
open System | |
let runSpace = RunspaceFactory.CreateRunspace() | |
runSpace.Open() | |
let pipeline = runSpace.CreatePipeline() | |
let getProcess = new Command("Get-Process") | |
pipeline.Commands.Add(getProcess) | |
let output = pipeline.Invoke() | |
for psObject in output do | |
psObject.Properties.Item("ProcessName").Value.ToString() | |
|> printfn "%s" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment