Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
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.

Go Back   Vista Forums > Misc Newsgroups > PowerShell

Vista - get-wmiobject Win32_QuickFixEngineering doesn't show patch

Reply
 
Old 05-15-2007   #1 (permalink)
Frank


 
 

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 SpecsSystem Spec
Old 05-15-2007   #2 (permalink)
Trevor Sullivan


 
 

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 SpecsSystem Spec
Old 05-15-2007   #3 (permalink)
RichS


 
 

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 SpecsSystem Spec
Old 05-15-2007   #4 (permalink)
Frank


 
 

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 SpecsSystem Spec
Old 05-15-2007   #5 (permalink)
Brandon Shell


 
 

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 SpecsSystem Spec
Reply

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


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46