[WiX-users] validating media in multidisk installation

2008-02-15 Thread Balakrishna.BK
Hi,
  Can someone point me or send me code snippet to check the validity of 
inserted cd in multi-cd installation.
   
  when 1st cd is inserted, autorun will be executed and after installing the 
contents from 1st cd,  how to continue (prompt for) 2nd cd and to check if its 
correct cd.
   
  Thanks in Advance
  Balakrishna

   
-
 Forgot the famous last words? Access your message archive online. Click here.-
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] InstallExecuteSequence

2007-07-05 Thread Balakrishna.BK
Hi,
   I am newbie to msi technology and I have the following question in 
InstallExecutesequence.
   
  I am editing my existing msi file using orca and want to swap sequence 
numbers of appsearch and launchcondion
   
  actual
  Appsearch = 400 as sequence number and
  Launchcondition = 117
   
  I added a new entry in Reglocator, apsearch and launchcondition and swapped 
the sequence numbers.
  So, after modifying my new entry is
  Appsearch= 117
  launchcondition = 400
   
  When i save and launch this msi, i still get launch condition executed 1st in 
the sequence and installation fails inspite of have regkey in the system
   
  Do I need to change this sequence number in each of the language specific msi 
(extract mst, apply, change, and create msi)..? or modifying the final one is 
sufficient
   
  Thanks,
  Bala.

 Send free SMS to your Friends on Mobile from your Yahoo! Messenger. Download 
Now! http://messenger.yahoo.com/download.php-
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] InstallExecuteSequence

2007-07-05 Thread Balakrishna.BK
Hi Dacian,
   
  I modified InstallExecuteSequence table in the order I wanted it to be, but 
still during installation it doesnt follow the order.  I believe I am missing 
something basic.  Also remember that this is a multi-language msi.
   
   As I already told, I am modifying the existing msi using orca.  
unfortunately I dont have any wxs files or the environment to generate msi.
   
  Bala.
   
  Message: 4
Date: Thu, 5 Jul 2007 04:11:31 -0700 (PDT)
From: fiordean dacian 
Subject: Re: [WiX-users] InstallExecuteSequence
To: Balakrishna.BK ,
wix-users@lists.sourceforge.net
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=us-ascii

You migh check with Orca that InstallExecuteSequence has the actions in the 
order you want them.

Why don't you use After and Before attributes instead of Sequence?

Dacian



- Original Message 
From: Balakrishna.BK 
To: wix-users@lists.sourceforge.net
Sent: Thursday, July 5, 2007 1:05:28 PM
Subject: [WiX-users] InstallExecuteSequence

Hi,
I am newbie to msi technology and I have the following question in 
InstallExecutesequence.

I am editing my existing msi file using orca and want to swap sequence numbers 
of appsearch and launchcondion

actual
Appsearch = 400 as sequence number and
Launchcondition = 117

I added a new entry in Reglocator, apsearch and launchcondition and swapped the 
sequence numbers.
So, after modifying my new entry is
Appsearch = 117
launchcondition = 400

When i save and launch this msi, i still get launch condition executed 1st in 
the sequence and installation fails inspite of have regkey in the system

Do I need to change this sequence number in each of the language
specific msi (extract mst, apply, change, and create msi)..? or modifying the 
final one is sufficient

Thanks,
Bala.

   


-
 Here’s a new way to find what you're looking for - Yahoo! Answers -
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] merge module that conditionally installs a Component

2007-02-28 Thread Balakrishna.BK
Hi,
  I am beginner in WIX, and a couple of days back I had a similar issue.  
The following are the changes i made after help from this group.
   
  Added the following line in InstallUISequence and InstallExecuteSequence
   
  LaunchConditions After='AppSearch' /
   
  This will ensure that the LaunchConditions are executed only after searching.
   
  This is the code from my wxs file
   
  Condition Message=Software is not installed  SUITEINSTALLDIR /Condition
   
  Property Id=SUITEINSTALLDIR RegistrySearch Id='BOBJRegistry' Type='raw' 
Root='HKLM' Key='Software\Company\Suite 12.0\Shared' Name='SuiteInstallDir' / 
/Property
   
  InstallUISequence
LaunchConditions After='AppSearch' /
  /InstallUISequence
   
  InstallExecuteSequence
  LaunchConditions After='AppSearch' /
/InstallExecuteSequence
   
   
  Thanks,
  Bala.
   
   
  Message: 3
Date: Wed, 28 Feb 2007 14:21:41 -0600
From: John Lalande 
Subject: [WiX-users] merge module that conditionally installs a
component
To: wix-users@lists.sourceforge.net
Message-ID:
[EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1
  I have created a plugin for the PIM Act! This plugin dll must be installed
in a subfolder of the Act! installation directory only if Act! is installed.
  I would like to package the plugin in a merge module so that different teams
at our company can use it by simply including it in their installer
project. All the teams use InstallShield except the team I am on (I am
working on that). I would like to write the merge module using WiX.
  The merge module I have written works great if Act! is installed, but fails
miserably when Act! is not. It still installs the plugin, but to a location
relative to C:. I am getting Act's installation folder fine, but I think
the way I am defining the Directory element is wrong.
  I am retrieving the Act installation folder using this fragment:
  
Root='HKLM' Key='SOFTWARE\ACT\Install' Name='InstallPath' /
  
and defining the plugin folder like this:
   
  
Guid='31A99920-6E0A-4e31-B569-180D46439930'
/
ACTPATH  
   
   
  What happens when Act! is not installed is that the plugin is installed in
c:\ActDir\plugins which does make sense because in the absence of the
ACTPATH property, ActDir is set as the actual name of the folder. So it
is clear that I don't have a good understanding how this should be written.
  Can someone explain the right way to do this if it is even possible?



-
 Here’s a new way to find what you're looking for - Yahoo! Answers -
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] msi Log when called from setup.exe

2007-02-26 Thread Balakrishna.BK
Hi All,
 When I click on msi to install, I get an error message to install the 
software using setup.exe only.  How can I bypass this and install from msi 
directly.  Basically I need to create install log file.
   
  msiexec /i file.msi /l*v file.log
   
  I am expecting workarounds or suggestions to get install logging, which I am 
not able to get using setup.exe
   
  Thanks,
  balakrishna bk


-
 Here’s a new way to find what you're looking for - Yahoo! Answers -
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Launch Condition

2007-02-22 Thread Balakrishna.BK
Hi Dacian,
Thanks for your suggestion.  After doing some google search..i arrived to 
the same point.  And again what I found was I need to have the LaunchConditions 
in both of these tags and it is working fine. 
   
  InstallExecuteSequence 
  InstallUISequence
   
  Thanks,
  Balakrishna.
   
  
Message: 2
Date: Wed, 21 Feb 2007 07:28:47 -0800 (PST)
From: fiordean dacian 
Subject: Re: [WiX-users] Launch Condition
To: wix-users@lists.sourceforge.net
Message-ID: [EMAIL PROTECTED]
Content-Type: text/plain; charset=iso-8859-1


Your condition looks correct.
Check that within your you have scheduled your 'LaunchConditions' after 
'AppSearch':



...


Cheers,
Dacian


- Original Message 
From: Balakrishna.BK 
To: wix-users@lists.sourceforge.net
Sent: Wednesday, February 21, 2007 2:24:15 PM
Subject: [WiX-users] Launch Condition

Hi All,
I am a beginner in wix. 
I have the following launch condition. It is working fine, if the Registry key 
'SuiteInstallDir' is NOT found in the path and the condition is NOT 
SUITEINSTALLDIR, but when I create RegKey and remove NOT condition, it is 
failing and prompts message as 'Software is not installed' and exits.

Any suggestions please.

REG Key not found and is working fine :



NOT SUITEINSTALLDIR 

REG Key is created but Failing with error message:

Id=SUITEINSTALLDIR 
SUITEINSTALLDIR 

My Goal, is to install the msi if a regkey is found, else exit with message.

Thanks,
Balakrishna.


-
 Here’s a new way to find what you're looking for - Yahoo! Answers -
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Launch Condition

2007-02-21 Thread Balakrishna.BK
Hi All,
 I am a beginner in wix.  
  I have the following launch condition.  It is working fine, if the Registry 
key 'SuiteInstallDir' is NOT found in the path and the condition is NOT 
SUITEINSTALLDIR, but when I create RegKey and remove NOT condition, it is 
failing and prompts message as 'Software is not installed' and exits.
   
  Any suggestions please.
   
  REG Key not found and is working fine :
Property Id=SUITEINSTALLDIR RegistrySearch Id='BOBJRegistry' 
Type='raw' Root='HKLM' Key='Software\MyCompany\Suite 12.0\Shared' 
Name='SuiteInstallDir' / /Property
Condition Message=Software is not installed NOT SUITEINSTALLDIR /Condition
   
  REG Key is created but Failing with error message:
Property Id=SUITEINSTALLDIR RegistrySearch Id='BOBJRegistry' 
Type='raw' Root='HKLM' Key='Software\MyCompany\Suite 12.0\Shared' 
Name='SuiteInstallDir' / /Property
Condition Message=Software is not installed SUITEINSTALLDIR /Condition
   
  My Goal, is to install the msi if a regkey is found, else exit with message.
   
  Thanks,
  Balakrishna.


-
 Here’s a new way to find what you're looking for - Yahoo! Answers -
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.phpp=sourceforgeCID=DEVDEV___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users