List Start Menu ItemsThis script returns a list of all the start menu items found on a computer.
Added 283 days ago by Emnico
| Download | |
| Review | ||
| Back | ||
| 58 | Views |
Source code
$strComputer = "."
$colItems = get-wmiobject -class "Win32_LogicalProgramGroupItem" -namespace "root\CIMV2" `
-computername $strComputer
foreach ($objItem in $colItems) {
write-host "Caption: " $objItem.Caption
write-host "Description: " $objItem.Description
write-host "InstallationDate: " $objItem.InstallDate
write-host "Name: " $objItem.Name
write-host "Status: " $objItem.Status
write-host
}

