![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| | get-wmiobject Win32_QuickFixEngineering doesn't show patch Hi, When I try to verify my office patch install, I don't see it but when I go to add/remove programs, it does show it. Can someone tell me how to verify Office updates via PS? $server = testserver get-wmiobject -class "Win32_QuickFixEngineering" -namespace "root\CIMV2" ` -computername $server |select-string KB933688 Thanks, |
My System Specs![]() |
| | #2 (permalink) |
| | Re: get-wmiobject Win32_QuickFixEngineering doesn't show patch Frank wrote: > Hi, > > When I try to verify my office patch install, I don't see it but when I go > to add/remove programs, it does show it. Can someone tell me how to verify > Office updates via PS? > > $server = testserver > get-wmiobject -class "Win32_QuickFixEngineering" -namespace "root\CIMV2" ` > -computername $server |select-string KB933688 > > Thanks, > > Can you look in the registry? Try here: HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall The subkeys of that key are the items that show up in Add/Remove programs. Trevor Sullivan MCP http://develnet.blogspot.com |
My System Specs![]() |
| | #3 (permalink) |
| | RE: get-wmiobject Win32_QuickFixEngineering doesn't show patch might be worth navigating to HKLM:\software\microsoft\updates as seeing what is there -- Richard Siddaway Please note that all scripts are supplied "as is" and with no warranty Blog: http://richardsiddaway.spaces.live.com/ PowerShell User Group: http://www.get-psuguk.org.uk "Frank" wrote: > Hi, > > When I try to verify my office patch install, I don't see it but when I go > to add/remove programs, it does show it. Can someone tell me how to verify > Office updates via PS? > > $server = testserver > get-wmiobject -class "Win32_QuickFixEngineering" -namespace "root\CIMV2" ` > -computername $server |select-string KB933688 > > Thanks, > > |
My System Specs![]() |
| | #4 (permalink) |
| | Re: get-wmiobject Win32_QuickFixEngineering doesn't show patch Is this possible to do this remotely via wmi? "Trevor Sullivan" wrote: > Frank wrote: > > Hi, > > > > When I try to verify my office patch install, I don't see it but when I go > > to add/remove programs, it does show it. Can someone tell me how to verify > > Office updates via PS? > > > > $server = testserver > > get-wmiobject -class "Win32_QuickFixEngineering" -namespace "root\CIMV2" ` > > -computername $server |select-string KB933688 > > > > Thanks, > > > > > > Can you look in the registry? Try here: > > HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall > > The subkeys of that key are the items that show up in Add/Remove programs. > > Trevor Sullivan > MCP > http://develnet.blogspot.com > |
My System Specs![]() |
| | #5 (permalink) |
| | Re: get-wmiobject Win32_QuickFixEngineering doesn't show patch Reg access via WMI remotely... I would say no, but you can get remote regkeys $server = "server name" $kb = "HotfixID" $remoteReg = [Microsoft.Win32.RegistryKey]::OpenRemoteBaseKey([Microsoft.Win32.RegistryHive]::LocalMachine,$server) $subKey = $remoteReg.OpenSubKey("Software\Microsoft\Windows\CurrentVersion\Uninstall") $subKey.GetSubKeyNames() | ?{$_ -match $kb} More Info http://bsonposh.com/modules/wordpress/?p=7 "Frank" <Frank@discussions.microsoft.com> wrote in message news:93556314-6DAE-4E74-A5C0-F9D4D2F069EC@microsoft.com... > Is this possible to do this remotely via wmi? > > > "Trevor Sullivan" wrote: > >> Frank wrote: >> > Hi, >> > >> > When I try to verify my office patch install, I don't see it but when I >> > go >> > to add/remove programs, it does show it. Can someone tell me how to >> > verify >> > Office updates via PS? >> > >> > $server = testserver >> > get-wmiobject -class "Win32_QuickFixEngineering" -namespace >> > "root\CIMV2" ` >> > -computername $server |select-string KB933688 >> > >> > Thanks, >> > >> > >> >> Can you look in the registry? Try here: >> >> HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall >> >> The subkeys of that key are the items that show up in Add/Remove >> programs. >> >> Trevor Sullivan >> MCP >> http://develnet.blogspot.com >> |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| win32_QuickFixEngineering InstalledOn | PowerShell | |||
| get-wmiobject question | PowerShell | |||
| New patch and it isn't patch Tuesday | Vista News | |||
| get-wmiobject different size than gui | PowerShell | |||
| get-wmiobject | PowerShell | |||