Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Christopher Painter
attention? E-Mail Me - Original Message From: little.forest little.for...@ymail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 9:21:05 PM Subject: Re: [WiX-users] How to change to a directory and run customaction

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Fabio Di Lorenzo
From: little.forest little.for...@ymail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 10:39:57 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? Thanks Christopher. I

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-11 Thread Major shao
10, 2010 10:39:57 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? Thanks Christopher. I appreciate it. I looked at that manual. I actually implemented type 18 customaction in the first place. But it didn't work for us. Here is my

[WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread little.forest
Hi all, We have an urgent issue. We install some 3rd party files. After installing, we need to run its registration program. It's something like this: adxreg.exe /install=myapp.dll The problem is, this 3rd party adxreg.exe command doesn't support path. So this doesn't work: C:\Program

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread Sohail Somani
On 10-09-10 4:31 PM, little.forest wrote: We have to change directory to C:\Program Files\Common Files\MyApp\ first and then run adxreg.exe /install=myapp.dll. How to do it in Wix? You can do it in a batch file and pass it [INSTALLDIR] in the ExeCommand (iirc). So something like:

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread little.forest
...@taggedtype.net To: wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 4:00:36 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? On 10-09-10 4:31 PM, little.forest wrote: We have to change directory to C:\Program Files\Common Files

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread Castro, Edwin G. (Hillsboro)
Try: Public Function Main() Dim WshShell Set WshShell = CreateObject(WScript.Shell) WshShell.CurrentDirectory = C:\Program Files\Common Files\MyApp WshShell.Run adxreg.exe /install=myapp.dll Set WshShell = Nothing End Function Edwin G. Castro Software Developer - Staff Electronic Banking

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread little.forest
. From: Castro, Edwin G. (Hillsboro) edwin.cas...@fiserv.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 5:50:03 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread Christopher Painter
: little.forest little.for...@ymail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 9:21:05 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? Thanks Edwin! Yes, I also found

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread little.forest
Message From: little.forest little.for...@ymail.com To: General discussion for Windows Installer XML toolset. wix-users@lists.sourceforge.net Sent: Fri, September 10, 2010 9:21:05 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? Thanks Edwin

Re: [WiX-users] How to change to a directory and run customaction inside that directory?

2010-09-10 Thread Sohail Somani
On 10-09-10 7:41 PM, little.forest wrote: I don't know how to use batch file in customaction. The same way you'd use any other command. I gave you an example! -- Sohail Somani -- iBlog : http://uint32t.blogspot.com iTweet: http://twitter.com/somanisoftware iCode : http://bitbucket.org/cheez