This very basic recipe shows you the ropes when it comes to gathering simple output from a local system. In order to retrieve output, we usually use cmdlets with the verb Get. You'll notice, however, that other cmdlets that create, change, or remove items can also sometimes return data to work with.
Working with output
Getting ready
To get ready, you need to have PowerShell Core installed. This recipe works on any operating system capable of running PowerShell Core.
How to do it...
Let's perform the following steps:
- Open PowerShell.
- Execute Get-UICulture, followed...