Re: [WiX-users] Installed software listed in SNMP 'hrSWInstalled' applications

2011-09-16 Thread Wilson, Phil
That's a system key that MSI installs will just update. Without knowing exactly 
what that snmpwalk thing is doing, I'd guess that it may be ignoring the 
MSI-based installs in ...\Uninstall\{guid}. This might be deliberate because 
you can enumerate the MSI-based products with MsiEnumProducts(), so why trawl 
the registry?  If you're on a 64-bit system, it might walk only one of the 
Uninstall nodes. Maybe it only enumerates the per-user Uninstall key. 

There might be a trick, but I've never seen any of the registry trawlers report 
the right information. There is no proper API to report the non-MSI ones. 


Phil Wilson 

-Original Message-
From: wigyxz-p...@yahoo.com [mailto:wigyxz-p...@yahoo.com] 
Sent: Thursday, September 15, 2011 10:14 PM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] Installed software listed in SNMP 'hrSWInstalled' 
applications

After some playing with the registry I found that 
applications that create registry entries here show up in the 
hrSWInstalled output


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

My installer doesn't create that key. I don't know whether it should or not...



From: wigyxz-p...@yahoo.com wigyxz-p...@yahoo.com
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Sent: Wednesday, September 14, 2011 8:54 PM
Subject: [WiX-users] Installed software listed in SNMP 'hrSWInstalled' 
applications

I've got some MSI software packages created with WiX that I install on Windows 
7 systems with group policy.

I'm using the linux 'snmpwalk' app to query each Windows PC to list the 
'hrSWInstalled' applications. I'm seeing some applications listed in the output 
(mostly MS applications, but some third party as well), but none of the 
applications I've installed with my installers.

Does anyone know what the trick is to get installed applications to show up in 
the SNMP output? this may have nothing to do with WiX, but I just have no idea.

thanks!
--
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


*** Confidentiality Notice: This e-mail, including any associated or attached 
files, is intended solely for the individual or entity to which it is 
addressed. This e-mail is confidential and may well also be legally privileged. 
If you have received it in error, you are on notice of its status. Please 
notify the sender immediately by reply e-mail and then delete this message from 
your system. Please do not copy it or use it for any purposes, or disclose its 
contents to any other person. This email comes from a division of the Invensys 
Group, owned by Invensys plc, which is a company registered in England and 
Wales with its registered office at 3rd Floor, 40 Grosvenor Place, London, SW1X 
7AW (Registered number 166023). For a list of European legal entities within 
the Invensys Group, please go to http://www.invensys.com/en/legal/default.aspx.

You may contact Invensys plc on +44 (0)20 3155 1200 or e-mail 
recept...@invensys.com. This e-mail and any attachments thereto may be subject 
to the terms of any agreements between Invensys (and/or its subsidiaries and 
affiliates) and the recipient (and/or its subsidiaries and affiliates).



--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Installed software listed in SNMP 'hrSWInstalled' applications

2011-09-15 Thread wigyxz-p...@yahoo.com
After some playing with the registry I found that 
applications that create registry entries here show up in the 
hrSWInstalled output


HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall

My installer doesn't create that key. I don't know whether it should or not...



From: wigyxz-p...@yahoo.com wigyxz-p...@yahoo.com
To: wix-users@lists.sourceforge.net wix-users@lists.sourceforge.net
Sent: Wednesday, September 14, 2011 8:54 PM
Subject: [WiX-users] Installed software listed in SNMP 'hrSWInstalled' 
applications

I've got some MSI software packages created with WiX that I install on Windows 
7 systems with group policy.

I'm using the linux 'snmpwalk' app to query each Windows PC to list the 
'hrSWInstalled' applications. I'm seeing some applications listed in the output 
(mostly MS applications, but some third party as well), but none of the 
applications I've installed with my installers.

Does anyone know what the trick is to get installed applications to show up in 
the SNMP output? this may have nothing to do with WiX, but I just have no idea.

thanks!
--
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
BlackBerryreg; DevCon Americas, Oct. 18-20, San Francisco, CA
http://p.sf.net/sfu/rim-devcon-copy2
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Installed software listed in SNMP 'hrSWInstalled' applications

2011-09-14 Thread wigyxz-p...@yahoo.com
I've got some MSI software packages created with WiX that I install on Windows 
7 systems with group policy.

I'm using the linux 'snmpwalk' app to query each Windows PC to list the 
'hrSWInstalled' applications. I'm seeing some applications listed in the output 
(mostly MS applications, but some third party as well), but none of the 
applications I've installed with my installers.

Does anyone know what the trick is to get installed applications to show up in 
the SNMP output? this may have nothing to do with WiX, but I just have no idea.

thanks!
--
Doing More with Less: The Next Generation Virtual Desktop 
What are the key obstacles that have prevented many mid-market businesses
from deploying virtual desktops?   How do next-generation virtual desktops
provide companies an easier-to-deploy, easier-to-manage and more affordable
virtual desktop model.http://www.accelacomm.com/jaw/sfnl/114/51426474/
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users