Loading |
VBScript |
JavaScript |
Powershell |
Search Options: List Start Menu GroupsContent of List Start Menu Groups.ps1MD5 Hash: 5C8CF63D8117B8C93A7AC069D406B461 |
||
$strComputer = "."
$colItems = get-wmiobject -class "Win32_LogicalProgramGroup" -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 "Installation Date: " $objItem.InstallDate write-host "Name: " $objItem.Name write-host "Status: " $objItem.Status write-host "User Name: " $objItem.UserName write-host } | ||
© 2008 - 2013 Boris Toll :: Scripts available: 6.481 :: :: scriptbox.toll.at :: :: powered by www.toll.at :: |