Created
November 29, 2019 03:03
-
-
Save kpatnayakuni/ffe2f549ed4d0a64339c5c3f54bfa034 to your computer and use it in GitHub Desktop.
Calculated Properties
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
| # Get the total memory in GB from the local computer using the calculated property with Select-Object | |
| Get-CimInstance -ClassName Win32_OperatingSystem | Select-Object -Property PSComputerName, ` | |
| @{Name = 'Memory in GB'; Expression = {[Math]::Round($_.TotalVisibleMemorySize/1MB)}} | |
| <# Output | |
| PSComputerName Memory in GB | |
| -------------- ------------ | |
| Workstation 8 | |
| #> | |
| # Get the services where the names are starting with App, and display IsRunning with Yes/No using the calculated property | |
| $IsRunning = @{ | |
| Label = "IsRunning" | |
| Expression = { | |
| if($_.Status -eq 'Running') { "Yes" } | |
| else { "No" } | |
| } | |
| } | |
| Get-Service -Name App* | Select-Object -Property Name, DisplayName, $IsRunning | |
| <# Output | |
| Name DisplayName IsRunning | |
| ---- ----------- --------- | |
| AppIDSvc Application Identity No | |
| Appinfo Application Information Yes | |
| AppMgmt Application Management No | |
| AppReadiness App Readiness No | |
| AppVClient Microsoft App-V Client No | |
| AppXSvc AppX Deployment Service (AppXSVC) No | |
| #> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment