Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/evotecit/powershellrunfromcsharp

This is demo project for testing things out as I need and when I need. Nothing to see here :-)
https://github.com/evotecit/powershellrunfromcsharp

csharp demo powershell

Last synced: 29 days ago
JSON representation

This is demo project for testing things out as I need and when I need. Nothing to see here :-)

Awesome Lists containing this project

README

        



```powershell
$MyData = Get-Disk
@{
MyData = $MyData
MyData2 = $MyData | Where-Object { $_ }
MyData3 = $MyData | Where-Object { $_.OperationalStatus -eq 'Online' }
MyData4 = $MyData | Where-Object { $_.OperationalStatus -eq 'Offline' }
}
```