Retrieves information about all the Start menu program groups currently in use on a computer. This script requires both Windows PowerShell and the corresponding version of the .NET Framework. For more information on downloading these items see the Windows PowerShell download page (right).
$strComputer = "." $colItems = get-wmiobject -class "Win32_ProgramGroup" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Description: " $objItem.Description write-host "Group Name: " $objItem.GroupName write-host "Name: " $objItem.Name write-host "Setting ID: " $objItem.SettingID write-host "User Name: " $objItem.UserName write-host }
$strComputer = "." $colItems = get-wmiobject -class "Win32_ProgramGroup" -namespace "root\CIMV2" ` -computername $strComputer foreach ($objItem in $colItems) { write-host "Caption: " $objItem.Caption write-host "Description: " $objItem.Description write-host "Group Name: " $objItem.GroupName write-host "Name: " $objItem.Name write-host "Setting ID: " $objItem.SettingID write-host "User Name: " $objItem.UserName write-host }