NAME
Get-ControlPanelItem
SYNOPSIS
Gets control panel items.SYNTAX
Get-ControlPanelItem -CanonicalName
[-Category ] [ ] Get-ControlPanelItem [[-Name]
] [-Category ] [ ] DESCRIPTION
The Get-ControlPanelItem cmdlet gets control panel items on the local computer. You can use it to find control
panel items by name, category, or description, even on systems that do not have a user interface. This cmdlet gets only the control panel items that can be opened on the system. On computers that do not have Control Panel or File Explorer, this cmdlet gets only control panel items that can open without these components. This cmdlet was introduced in Windows PowerShell 3.0. It works only on Windows 8 and Windows Server 2012.PARAMETERS
-CanonicalName
Specifies, as a string array, the control panel items by their canonical names or name patterns that this cmdlet gets. Wildcards are permitted. If you enter multiple names, this cmdlet gets control panel items that match any of the names, as though the items in the name list were separated by an "or" operator. By default, this cmdlet gets all control panel items in the system. Required? true Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-Category
Specifies, as a string array, the categories of the control panel items in the specified categories that this cmdlet gets. Enter a category name or name pattern. Wildcards are permitted. If you enter multiple names, this cmdlet gets control panel items that match any of the names, as though the items in the name list were separated by an "or" operator. By default, this cmdlet gets all control panel items in the system. Required? false Position? named Default value None Accept pipeline input? False Accept wildcard characters? false-Name
Specifies, as a string array, the names or name patterns of the control panel that this cmdlet gets. Wildcards are permitted. You can also pipe a name or name pattern to this cmdlet. Required? false Position? 0 Default value NoneAccept pipeline input? True (ByPropertyName, ByValue)
Accept wildcard characters? falseThis cmdlet supports the common parameters: Verbose, Debug, ErrorAction, ErrorVariable, WarningAction, WarningVariable, OutBuffer, PipelineVariable, and OutVariable. For more information, see about_CommonParameters (https:/go.microsoft.com/fwlink/?LinkID=113216). INPUTS
System.String You can pipe a name or name pattern to this cmdlet.OUTPUTS
Microsoft.PowerShell.Commands.ControlPanelItem This cmdlet does not generate any output.NOTES
Example 1: Get all control panel items
PS C:\>Get-ControlPanelItem
Name CanonicalName Category Description
---- ------------- -------- -----------
Action Center Microsoft.ActionCenter {System and Security} Review recent messages and... Administrative Tools Microsoft.AdministrativeTools {System and Security} Configure administrative s... AutoPlay Microsoft.AutoPlay {Hardware} Change default settings fo... BitLocker Drive Encryption Microsoft.BitLockerDriveEn... {System and Security} Protect your computer usin... Color Management Microsoft.ColorManagement {All Control Panel Items} Change advanced color mana... Credential Manager Microsoft.CredentialManager {User Accounts} Manage your Windows Creden... Date and Time Microsoft.DateAndTime {Clock, Language, and Region} Set the date, time, and ti... This command gets all control panel items on the local computer.Example 2: Get control panel items by name
PS C:\>Get-ControlPanelItem -Name "*Program*", "*App*"
This command gets control panel items that have Program or App in their names.Example 3: Get control panel items by category
PS C:\>Get-ControlPanelItem -Category "*Security*"
This command gets all control panel items in categories that have Security in their names.Example 4: Open a control panel item
PS C:\>Get-ControlPanelItem -Name "Windows Firewall" | Show-ControlPanelItem
This command opens the Windows Firewall control panel item on the local computer. It uses the Get-ControlPanelItem
cmdlet to get the control panel item and the Show-ControlPanelItem cmdlet to open it.
Example 5: Get control panel items on a remote computer
PS C:\>Invoke-Command -ComputerName "Server01" {Get-ControlPanelItem -Name "BitLocker*" }
This command gets the BitLocker Drive Encryption control panel item on the Server01 remote computer. It uses theInvoke-Command cmdlet to run the Get-ControlPanelItem cmdlet remotely.
Example 6: Search the descriptions of control panel items
PS C:\>Get-ControlPanelItem | Where-Object {$_.Description -like "*Device*"}
Name CanonicalName Category Description
---- ------------- -------- -----------
AutoPlay Microsoft.AutoPlay {Hardware} Change default settings fo... Devices and Printers Microsoft.DevicesAndPrinters {Hardware} View and manage devices, p... Sound Microsoft.Sound {Hardware} Configure your audio devic... This command searches the Description property of the control panel item objects and gets only those that containthe name Device. The command uses the Get-ControlPanelItem cmdlet to get all control panel items and the
Where-Object cmdlet to filter the items by the value of the Description property.
RELATED LINKS
Online Version: http://go.microsoft.com/fwlink/?LinkId=821584Show-ControlPanelItem