[WiX-users] Hi Rob and all

2007-08-08 Thread Venkatesh Malepati
Hi Rob,
Is the user group is still there?. I was wondering why nobody is replying.
This was my question ans I am trying hard to create a simple shortcut for 
net.exe.
When I start from the cmd prompt the service runs. However, It is not working.
I also tried to create a custom action like the following and it still it did  
not showing up.

I am describinfg two methods here. Both methods are not working. What should I 
do to create a short cut for an existing file which is already presnt in the 
windows/system32 directory?.
 

1) I am trying to create a shortcut for an existing filenet.exe in the 
Windows/system32 directory. I am not packaging this file with the install 
shield. I want just use this file to run Tomcat. I am using the following code. 
This looks like simple, however when I run the install shield, it does not 
create a short cut at all. I tried by creating a custom action and try to use 
the peroprty in the shortcut. I donot know what I am doing wrong. Please look 
at this tag and see, if I am doing anything wrong here.

  Component Id=comcat DiskId=1 Guid=7C170F2C-67F9-4f31-AE7D-134451321BE6
 Shortcut Id=Tomcat Name=StartTC  Directory=ProgramMenuFolder 
Arguments=start TEAMSRDS LongName=1.Start Jakarta-Tomcat Server - Service 
Mode
WorkingDirectory=directory3 Target=C:\WINDOWS\system32\net.exe /

   /Component

Directory3 is where my tomcat is installed
I called the service as RDS.

2)   Shortcut Id=Tomcat Name=StartTC Target=[RUNNET]
 Directory=wixs1 Arguments=start TEAMSRDS 
 WorkingDirectory=myvalue /

CustomAction Id=RNet Property=RUNNET  
ExeCommand=C:\WINDOWS\system32\net.exe/ 


Thanks for any help in adavance.


Venkat

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Hi Rob and all

2007-08-08 Thread Venkatesh Malepati
Are there any tools to validate?. I just use Notepad to edit. Thanks for your 
reply and I will try that.
 
Venkat

-Original Message-
From: Schrieken, Rene [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 08, 2007 12:02 PM
To: Venkatesh Malepati; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Hi Rob and all



If you validate your msi you might find issues quicker. 

 

Add this:

Property Id=net Value=C:\WINDOWS\system32\net.exe

 

Change the Target attribute of your shortcut to read Target=[net] 

 

 

 


  _  


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Venkatesh 
Malepati
Sent: Wednesday, August 08, 2007 3:09 PM
To: wix-users@lists.sourceforge.net
Cc: [EMAIL PROTECTED]
Subject: [WiX-users] Hi Rob and all

 

Hi Rob, 
Is the user group is still there?. I was wondering why nobody is replying. 
This was my question ans I am trying hard to create a simple shortcut for 
net.exe. 
When I start from the cmd prompt the service runs. However, It is not working. 
I also tried to create a custom action like the following and it still it did  
not showing up. 

I am describinfg two methods here. Both methods are not working. What should I 
do to create a short cut for an existing file which is already presnt in the 
windows/system32 directory?.

  

1) I am trying to create a shortcut for an existing filenet.exe in the 
Windows/system32 directory. I am not packaging this file with the install 
shield. I want just use this file to run Tomcat. I am using the following code. 
This looks like simple, however when I run the install shield, it does not 
create a short cut at all. I tried by creating a custom action and try to use 
the peroprty in the shortcut. I donot know what I am doing wrong. Please look 
at this tag and see, if I am doing anything wrong here.

  Component Id=comcat DiskId=1 
Guid=7C170F2C-67F9-4f31-AE7D-134451321BE6 
 Shortcut Id=Tomcat Name=StartTC  Directory=ProgramMenuFolder 
Arguments=start TEAMSRDS LongName=1.Start Jakarta-Tomcat Server - Service 
Mode

WorkingDirectory=directory3 Target=C:\WINDOWS\system32\net.exe / 

   /Component 

Directory3 is where my tomcat is installed 
I called the service as RDS. 

2)   Shortcut Id=Tomcat Name=StartTC Target=[RUNNET] 
 Directory=wixs1 Arguments=start TEAMSRDS 
 WorkingDirectory=myvalue / 

CustomAction Id=RNet Property=RUNNET  
ExeCommand=C:\WINDOWS\system32\net.exe/ 

 

Thanks for any help in adavance. 

 

Venkat 



This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] [Wax-users] Shortcut and tools (was:Hi Rob and all)

2007-08-08 Thread Venkatesh Malepati
Thank you..
 
Venkat

-Original Message-
From: Schrieken, Rene [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 08, 2007 3:11 PM
To: Venkatesh Malepati; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Shortcut and tools (was:Hi Rob and all)


 
The Windows Installer tools:
You're probably interseted in msival2.exe and/or Orca.exe. 
http://msdn2.microsoft.com/en-us/library/aa372834.aspx
 
Notepad is a fine tool but there are some other specialized IDE like tools:
http://wixedit.sourceforge.net/
 
 
 
PS:
I forget a /

Property Id=net Value=C:\WINDOWS\system32\net.exe/


 
  _  

From: Venkatesh Malepati [mailto:[EMAIL PROTECTED]
Sent: Wed 8/8/2007 19:36
To: Schrieken, Rene; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Hi Rob and all


Are there any tools to validate?. I just use Notepad to edit. Thanks for your 
reply and I will try that.
 
Venkat

-Original Message-
From: Schrieken, Rene [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 08, 2007 12:02 PM
To: Venkatesh Malepati; wix-users@lists.sourceforge.net
Subject: RE: [WiX-users] Hi Rob and all



If you validate your msi you might find issues quicker. 

 

Add this:

Property Id=net Value=C:\WINDOWS\system32\net.exe

 

Change the Target attribute of your shortcut to read Target=[net] 

 

 

 


  _  


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Venkatesh 
Malepati
Sent: Wednesday, August 08, 2007 3:09 PM
To: wix-users@lists.sourceforge.net
Cc: [EMAIL PROTECTED]
Subject: [WiX-users] Hi Rob and all

 

Hi Rob, 
Is the user group is still there?. I was wondering why nobody is replying. 
This was my question ans I am trying hard to create a simple shortcut for 
net.exe. 
When I start from the cmd prompt the service runs. However, It is not working. 
I also tried to create a custom action like the following and it still it did  
not showing up. 

I am describinfg two methods here. Both methods are not working. What should I 
do to create a short cut for an existing file which is already presnt in the 
windows/system32 directory?.



1) I am trying to create a shortcut for an existing filenet.exe in the 
Windows/system32 directory. I am not packaging this file with the install 
shield. I want just use this file to run Tomcat. I am using the following code. 
This looks like simple, however when I run the install shield, it does not 
create a short cut at all. I tried by creating a custom action and try to use 
the peroprty in the shortcut. I donot know what I am doing wrong. Please look 
at this tag and see, if I am doing anything wrong here.

  Component Id=comcat DiskId=1 
Guid=7C170F2C-67F9-4f31-AE7D-134451321BE6 
 Shortcut Id=Tomcat Name=StartTC  Directory=ProgramMenuFolder 
Arguments=start TEAMSRDS LongName=1.Start Jakarta-Tomcat Server - Service 
Mode

WorkingDirectory=directory3 Target=C:\WINDOWS\system32\net.exe / 

   /Component 

Directory3 is where my tomcat is installed 
I called the service as RDS. 

2)   Shortcut Id=Tomcat Name=StartTC Target=[RUNNET] 
 Directory=wixs1 Arguments=start TEAMSRDS 
 WorkingDirectory=myvalue / 

CustomAction Id=RNet Property=RUNNET  
ExeCommand=C:\WINDOWS\system32\net.exe/ 

 

Thanks for any help in adavance. 

 

Venkat 



This e-mail and any attachment is for authorised use by the intended 
recipient(s) only. It may contain proprietary material, confidential 
information and/or be subject to legal privilege. It should not be copied, 
disclosed to, retained or used by, any other party. If you are not an intended 
recipient then please promptly delete this e-mail and any attachment and all 
copies and inform the sender. Thank you.

-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Shortcut problem.

2007-08-07 Thread Venkatesh Malepati
Wix Gurus Out there,
I am trying to create a shortcut for an existing filenet.exe in the 
Windows/system32 directory. I am not packaging this file with the install 
shield. I want just use this file to run Tomcat. I am using the following code. 
This looks like simple, however when I run the install shield, it does not 
create a short cut at all. I tried by creating a custom action and try to use 
the peroprty in the shortcut. I donot know what I am doing wrong. Please look 
at this tag and see, if I am doing anything wrong here.

  Component Id=comcat DiskId=1 Guid=7C170F2C-67F9-4f31-AE7D-134451321BE6
 Shortcut Id=Tomcat Name=StartTC  Directory=ProgramMenuFolder 
Arguments=start TEAMSRDS LongName=1.Start Jakarta-Tomcat Server - Service 
Mode
WorkingDirectory=directory3 Target=C:\WINDOWS\system32\net.exe /

   /Component

Directory3 is where my tomcat is installed
I called the service as RDS.

Thanks for any help in adavance.


Venkat


-
This SF.net email is sponsored by: Splunk Inc.
Still grepping through log files to find problems?  Stop.
Now Search log events and configuration files using AJAX and a browser.
Download your FREE copy of Splunk now   http://get.splunk.com/___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Is there string manipulation in WIX?.

2007-07-19 Thread Venkatesh Malepati
I could not find any topic which does string manipulation. I need to get the 
first part of the CD Key and install only  and do some calculation and then 
install product(s) depending upon the calculation outcome. Can anybody think 
that it is easy or do I need to write a program in c or visual basic?.

Thanks in advance,
Venkat
-
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
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


Re: [WiX-users] Problem in uninstalling all the folders with WIX

2007-06-15 Thread Venkatesh Malepati
I am left with these folders.
1) COMPLIB and
2) Data folders and read me files.

I donot know how to solve this puzzle. Any experts here?. 
If I install in C:\Program files, it works great. Aany other folder in C or D 
drives it does not work. Basically it works in the default path. I am pulling 
my hair where the problem is?.Please help anybody. Thanks in advance.

Venkatesh

  -Original Message-
 From: Venkatesh Malepati  
 Sent: Friday, June 15, 2007 11:00 AM
 To:   Venkatesh Malepati; wix-users@lists.sourceforge.net
 Subject:  RE: Problem in uninstalling all the folders with WIX
 
   File: teamsmain.wxsFile: teams5.wxs  
 I am attcahing two files for review.Please somebody help me. Sm I doing 
 anything wrong here.
 
 Thanks in advance,
 
 Venkatesh
-Original Message-
   From:   Venkatesh Malepati  
   Sent:   Thursday, June 14, 2007 5:06 PM
   To: wix-users@lists.sourceforge.net
   Subject:Problem in uninstalling all the folders with WIX
 
   Hi Guys,
   I have problem with uninstalling all the files.When I install in 
 default drive and path like c:\Program files, it uninstalls all the 
 directories and associated files. When I install in any other drive other 
 than this default directory it leaves out some directories. What could be the 
 problem?. Anybody has any idea?. Thanks in advance.
   Regards
   Venkatesh
-
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] How to correct ICE19 and ICE50 errors in .MSI package

2007-06-13 Thread Venkatesh Malepati
Thank you very much, that worked.
Venkatesh

-Original Message-
From: Bob Arnson [mailto:[EMAIL PROTECTED]
Sent: Wednesday, June 13, 2007 10:41 AM
To: Venkatesh Malepati
Cc: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] How to correct ICE19 and ICE50 errors in .MSI package


Venkatesh Malepati wrote: 

So Do I need to create a componet for just this File id=File934?.Thanks in 
adavnace.


Yes. The ICE19 and ICE50 errors are complaining because the component had the 
registry as its key path rather than the file that's the target of the 
shortcut. Having one file per component simplifies that problem.

-- 

sig://boB

http://joyofsetup.com/

-
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


[WiX-users] How to correct ICE19 and ICE50 errors in .MSI package

2007-06-12 Thread Venkatesh Malepati
Hi
I am trying to test my .MSI with ORCA and I am getting the following error 
messages:

ICE19: Shortcut 'startmenuTeamsDesigner10Uni' advertises component:' 
Component24': This component cannot be advertised because the keypath type 
disallowed 

AND
 ICE50:Component 24 has an advertised shortcut,but the keypath cannot be found.

My shortcut has the follwing code in wix file:

File Id=file934 Name=teams.exe 
src=C:\luntbuild\work\TEAMS-10.0\teams\release\program\teams-unicode\teams.exe
 Vital=yes

Shortcut Id=startmenuTeamsDesigner10Uni 
Directory=ProgramMenuFolder Name=Teams10 LongName=Teams Designer 10.0 
WorkingDirectory=TEAMSDIR Icon=teams.exe IconIndex=0 Advertise=yes/
Shortcut Id=desktopTeams10Uni Directory=DesktopFolder 
Name=Teams10 LongName=Teams Designer 10.0 WorkingDirectory=TEAMSDIR 
Icon=teams.exe IconIndex=0 Advertise=yes/
/File

If I donot advertise them I am getting these error messages:
ICE43:Component 'Component24' has non-advertised shortcuts. It should use a 
registry key under HKCU as its KeyPath.
I donot want to create path under HKCU as I need to create under HKLM.
Any solutions for this. Please help. Thanks in advance.

Regards
Venkatesh





-
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] How to correct ICE19 and ICE50 errors in .MSI package

2007-06-12 Thread Venkatesh Malepati
Also my Icon has the follwoing definition:

  Icon Id=teams.exe 
SourceFile=C:\luntbuild\work\TEAMS-10.0\teams\release\program\teams-unicode\teams.exe
 /

Venkatesh

  -Original Message-
 From: Venkatesh Malepati  
 Sent: Tuesday, June 12, 2007 5:13 PM
 To:   'wix-users@lists.sourceforge.net'
 Subject:  How to correct ICE19 and ICE50 errors in .MSI package
 
 Hi
 I am trying to test my .MSI with ORCA and I am getting the following error 
 messages:
 
 ICE19: Shortcut 'startmenuTeamsDesigner10Uni' advertises component:' 
 Component24': This component cannot be advertised because the keypath type 
 disallowed 
 
 AND
  ICE50:Component 24 has an advertised shortcut,but the keypath cannot be 
 found.
 
 My shortcut has the follwing code in wix file:
 
 File Id=file934 Name=teams.exe 
 src=C:\luntbuild\work\TEAMS-10.0\teams\release\program\teams-unicode\teams.exe
  Vital=yes
 
 Shortcut Id=startmenuTeamsDesigner10Uni 
 Directory=ProgramMenuFolder Name=Teams10 LongName=Teams Designer 10.0 
 WorkingDirectory=TEAMSDIR Icon=teams.exe IconIndex=0 Advertise=yes/
 Shortcut Id=desktopTeams10Uni 
 Directory=DesktopFolder Name=Teams10 LongName=Teams Designer 10.0 
 WorkingDirectory=TEAMSDIR Icon=teams.exe IconIndex=0 Advertise=yes/
 /File
 
 If I donot advertise them I am getting these error messages:
 ICE43:Component 'Component24' has non-advertised shortcuts. It should use a 
 registry key under HKCU as its KeyPath.
 I donot want to create path under HKCU as I need to create under HKLM.
 Any solutions for this. Please help. Thanks in advance.
 
 Regards
 Venkatesh
 
 
 
 
 
-
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