[WiX-users] help

2009-10-03 Thread Gerald Grininger



> From: wix-users-requ...@lists.sourceforge.net
> Subject: WiX-users Digest, Vol 41, Issue 8
> To: wix-users@lists.sourceforge.net
> Date: Fri, 2 Oct 2009 17:55:54 +
> 
> Send WiX-users mailing list submissions to
>   wix-users@lists.sourceforge.net
> 
> To subscribe or unsubscribe via the World Wide Web, visit
>   https://lists.sourceforge.net/lists/listinfo/wix-users
> or, via email, send a message with subject or body 'help' to
>   wix-users-requ...@lists.sourceforge.net
> 
> You can reach the person managing the list at
>   wix-users-ow...@lists.sourceforge.net
> 
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of WiX-users digest..."
> 
> 
> Today's Topics:
> 
>1. Re: CustomAction : Enumerating SQLServerInstancesacrossthe
>   network using SQLDMO (Dominique Louis)
>2. How to find the installed path for update
>   (Jiang, Chunyan (GE Healthcare))
>3. Re: How to find the installed path for update (Blair)
>4. Re: Problem with storing checkbox state (Blair)
>5. Re: Problem with storing checkbox state (Blair)
>6. Re: How to find the installed path for update (Wilson, Phil)
> 
> 
> --
> 
> Message: 1
> Date: Fri, 2 Oct 2009 14:22:42 +0100
> From: "Dominique Louis" 
> Subject: Re: [WiX-users] CustomAction : Enumerating SQLServer
>   Instancesacrossthe network using SQLDMO
> To: "General discussion for Windows Installer XML toolset."
>   
> Message-ID:
>   <488f6a8c5a9db84fbb082d732f1bbdef02196...@exchange01.amxuk.local>
> Content-Type: text/plain; charset="us-ascii"
> 
> Hi Thomas,
>   Great to see the WiXRepo is up and running so quickly.
> 
> I'm not sure how organized you can make things on codeplex, as I've
> never used it, but maybe CustomActions could be grouped per programming
> language. So a sub-dir for VB Script and another for C/C++ and C# etc.
> 
> How can developers submit things to the project? Do you have to register
> to be able to be part of the project?
> 
> A more portable solution to this SQLDMO code below would be to use SMO,
> as that is supported on SQLServer 2005 and 2008, but VB Script cannot
> call static methods, so it seems only a C/C+/C# etc solution would work
> for that.
> 
> Dominique.
> 
> -Original Message-
> From: Thomas Due [mailto:thomas@scanvaegt.dk] 
> Sent: 02 October 2009 06:47
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] CustomAction : Enumerating SQLServer
> Instancesacrossthe network using SQLDMO
> 
> This would be perfect for http://wixrepo.codeplex.com/
> 
> Also: Looks good, looking forward to playing around with it, although
> the company I work for, will have to support 2008 as well in the near
> future. 
> 
> /Thomas
> 
> -Original Message-
> From: Dominique Louis [mailto:dominique.lo...@amxeurope.com] 
> Sent: 1. oktober 2009 18:16
> To: General discussion for Windows Installer XML toolset.
> Subject: [WiX-users] CustomAction : Enumerating SQLServer Instances
> acrossthe network using SQLDMO
> 
> Hi all,
>   I couldn't find all this code in one place so I thought this list
> might be a good place to archive it.
> 
> 
>   Set sqlApp = CreateObject("SQLDMO.Application") 
> 
> If ( Err.Number <> 0 ) Then
>   wscript.echo "SQLDMO.Application Not found. Error : " &
> Err.Number
>   wscript.Quit -1
>   End If
>  
> Set sqlServer2 = CreateObject("SQLDMO.SQLServer2")
> 
> If ( Err.Number <> 0 ) Then
>   wscript.echo "SQLDMO.SQLServer2 Not found. Error : " &
> Err.Number
>   wscript.Quit -1
>   End If
>
>   Set serverList = sqlApp.ListAvailableSQLServers 
>  
>   numServers = serverList.Count 
>  
> Dim x, y
> 
> For x = 1 To numServers  
>   
>   Set instanceList = sqlServer2.ListInstalledInstances(
> serverList(x) ) 
>   
>   if Not ( instanceList is Nothing ) Then
>   
> numInstances = instanceList.Count  
>   
> wscript.echo serverList(x)
> For y = 1 To numInstances
>   wscript.echo "" & instanceList(y)
>   Next
>   End IF
>   Next 
>  
> Set sqlServer2 = Nothing 
>   Set sqlApp = Nothing
> 
> 
> Note SQLDMO only works with SQLServer 2005 and below and is not
> installed by default on SQLServer 2008 onwards
> 
> 
> Hope this helps someone.
> 
> 
> DOMINIQUE LOUIS | IS DEVELOPER, AMX DIGITAL MEDIA GROUP
> AMX UK| 6TH FLOOR SALISBURY HOUSE,| LONDON WALL | LONDON | EC2M 5QQ
> www.amx.com
> AMX
> 
> AMX UK
> Auster Road
> Clifton Moor
> York, North Yorkshire
> United Kingdom
> YO30 4GD
> 
> +44 (0) 1904 343100   office
> +44 (0) 1904 343101   fax
> 
> AMX South
> 6th Floor Salisbury House
> London 

[WiX-users] Leave a registry value after deinstallation

2008-03-03 Thread Gerald Grininger

Hello,

has anyboy an idea how it is possible to leave a registry value created by my 
wix created msi package after deinstallation?

kind regards
Gerald

_
Express yourself instantly with MSN Messenger! Download today it's FREE!
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse012070mrt/direct/01/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Adding a merge module or is it a merge module?

2007-03-14 Thread Gerald Grininger
Hello,

I wanted to add a merge module provided within an sdk from Macrovision:
 and also added  in a feature.
But the mergemodule isn't installed.
So I darked the msm:

http://schemas.microsoft.com/wix/2003/01/wi";>
  


   
This doesn't look like a merge module;), although they provide it as merge 
module. So how could I add this package to my product?

Regards,
Gerald

_
Express yourself instantly with MSN Messenger! Download today it's FREE! 
http://messenger.msn.click-url.com/go/onm00200471ave/direct/01/


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Getting the MSI Package Path from a custom action

2006-11-30 Thread Gerald Grininger
Hello,

I need to add licensing functionality to a MSI Package. The package should 
be shipped  together with a license file which will be evaluated by a custom 
action. The problem is that the current directory in the custom action seems 
to be the system32 folder. Does anybody has an idea how to access the folder 
where the MSI package actually is situated from the custom action? I want to 
access the license file which is in the same folder as the package.

Thanks in advance
Gerald

_
Don't just search. Find. Check out the new MSN Search! 
http://search.msn.com/


-
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users