Created
May 25, 2021 14:24
-
-
Save JohnL4/bb91e96830df57366de7de18c3cde30b to your computer and use it in GitHub Desktop.
Synthetic name-value properties in powershell are 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
# Hard to search when you don't know the right keywords. | |
get-service ` | |
| select @{name="DependentServiceName";expr={$_.Name}} -expand ServicesDependedOn ` | |
| select DependentServiceName,Name ` | |
| sort DependentServiceName,Name ` | |
| ft -au -wr | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment