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

2010-09-11 Thread Major shao
sion for Windows Installer XML toolset. > > 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 appreciate it. > > > I looked at that manual. I actual

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

2010-09-11 Thread Fabio Di Lorenzo
w a secret or read a really good thread that deserves > attention? E-Mail Me > > > > - Original Message > From: little.forest > To: General discussion for Windows Installer XML toolset. > > Sent: Fri, September 10, 2010 10:39:57 PM > Subject: Re: [WiX-users] How to change to

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

2010-09-11 Thread Christopher Painter
lly good thread that deserves attention? E-Mail Me - Original Message From: little.forest To: General discussion for Windows Installer XML toolset. Sent: Fri, September 10, 2010 10:39:57 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside tha

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

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

2010-09-10 Thread little.forest
___ From: Christopher Painter To: General discussion for Windows Installer XML toolset. Sent: Fri, September 10, 2010 7:28:40 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? VBScript is unacceptable for installs that I write. Have you loo

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

2010-09-10 Thread Christopher Painter
: little.forest To: General discussion for Windows Installer XML toolset. 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 it in here(http://www.mail-archive.com/wix-users

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

2010-09-10 Thread little.forest
hanks. From: "Castro, Edwin G. (Hillsboro)" To: General discussion for Windows Installer XML toolset. Sent: Fri, September 10, 2010 5:50:03 PM Subject: Re: [WiX-users] How to change to a directory and run customaction inside that directory? Try: Public Function Main() D

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 Se

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

2010-09-10 Thread little.forest
VS.85).aspx ________ From: Sohail Somani 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

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:

[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 Files\