October 11th, 2015

PowerTip: Find Windows Capabilities with PowerShell

Doctor Scripto
Scripter

Summary: Find Windows capabilities with Windows PowerShell on Windows 10.

Hey, Scripting Guy! Question How can I use Windows PowerShell 5.0 on Windows 10 to determine capabilities such as handwriting,
           optical character recognition (OCR), speech, and text-to-speech on my installation?

Hey, Scripting Guy! Answer Use the Get-WindowsCapability cmdlet, specify the -Online parameter, and filter for a state of Installed,
           for example:

Get-WindowsCapability -Online | where state -eq 'Installed'

            Note This command must be run elevated.

Author

The "Scripting Guys" is a historical title passed from scripter to scripter. The current revision has morphed into our good friend Doctor Scripto who has been with us since the very beginning.

0 comments

Discussion are closed.