Re: [WiX-users] conditional installation if application path found

2010-04-08 Thread subramanyeswari

thank you
-- 
View this message in context: 
http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4875451.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] using value of checkbox in deferred custom action

2010-04-08 Thread Dariel Marlow
What's the proper way to set the custom action data to the value of the 
checkbox control for a deferred custom action? Currently, it seems the value is 
being set after the ExitDialog Action and after the custom action has executed.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems launching application after install asnon-elevated

2010-04-08 Thread Sascha Beaumont
Hi Xmun,

Check out the series of blog posts at
http://blogs.msdn.com/rflaming/archive/tags/UAC+in+MSI/default.aspx on
understanding UAC and MSI. There's a lot to take in (27 posts?), but
it's a worthwhile read :)

Sascha




On Fri, Apr 9, 2010 at 12:38 AM, Xmun  wrote:
>
> Hi Pally,
>
> Thank you for your reply.  I have been testing this temporary solution and
> it is working well.  Do you know whether this is the "recommended" /
> standard way of doing this?
>
> I want to make sure that we don't get any surprises after we deploy the
> software.
>
> Thanks,
> Simon
> --
> View this message in context: 
> http://n2.nabble.com/Problems-launching-application-after-install-as-non-elevated-tp4870137p4871481.html
> Sent from the wix-users mailing list archive at Nabble.com.
>
> --
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to set the file properties for the MSI generated by WiX

2010-04-08 Thread Patrick van der Velde
Hi All

I've noticed that the MSI files created by WiX have some of their file
properties (e.g. Authors, Revision number etc.) set to values that
must be produced by WiX.  However I'm uncertain how to go about
setting those values. For instance the Authors value is correctly set
to the name of our company but the Revision Number is set to some
automatically generated GUID (which is not in the WiX files).
I've searched the WiX manual for information on how to set these
values but I couldn't find any information. Could somebody point me in
the right direction?

Thanks

Patrick

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How to write to install log in InstallUISequence

2010-04-08 Thread Akihiro.Shibuta
Hi all,

I create a DLL Custom Action using C++, and It write log using WcaLog function.
But I seem it doesn't work.

This custom action is called, when the button is pushed as follows.

  1


When I scheduled the custom action in InstallExecuteSequence, it does work 
right.

   
   

Does it support  the  the WcaLog function  called in InstallUISequence or 
DoEvent ?
And how to write log in InstallUIExecuteSequence ?


thanks,



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Run the CA only on the first install (no upgrades)

2010-04-08 Thread Sascha Beaumont
UPGRADINGPRODUCTCODE is set when you're being uninstalled during an
upgrade, so it sounds like the wrong condition. For example to force a
CA to run on a full uninstall only, but not when it's being
uninstalled because an upgrade is happening I use

REMOVE ~= "ALL" AND NOT UPGRADINGPRODUCTCODE]

I think you probably want to use some variation on the following
(depending on what your upgrade table looks like) to run something on
the first install only.

NOT (Installed Or OLDERVERSIONBEINGUPGRADED)



Sascha



On Thu, Apr 8, 2010 at 7:29 PM, Viv Coco  wrote:
> Hi all,
>
> I would like to run a CA only on the first install. The CA shouldn't be
> run on an upgrade. The condition i used is:
> (NOT Installed) AND (NOT UPGRADINGPRODUCTCODE)
> but it's not working, as the CA is still run on upgrade also.
>
> I found the nice and detailed answer from Blair here:
> http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg31160.html
> which explains how this condition should look like, but what I didn't
> understand is why can't we use the UPGRADINGPRODUCTCODE property in
> order to detect when it's an upgrade. Can someone pls explain that or
> point to a link that contains the explanation? I mean why the condition
> I set is not correct?
>
> Thx,
> Viv
>
> --
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] How To Pass Status Variables from a Custom Action to Wix Custom Dialog

2010-04-08 Thread Vishwajit Walke
Code Snippet Updated :

1
  1
  1
  1
  IsValidPortNumber=0

  1
  1
  IsPortAvailable=0

So, basically I'm checking two conditions over here. First is to check whether 
it should not be empty and second one is to check whether the port number is 
available or not.

Thanks,

Vishwajit

From: Vishwajit Walke
Sent: Thursday, April 08, 2010 4:32 PM
To: 'General discussion for Windows Installer XML toolset.'
Subject: How To Pass Status Variables from a Custom Action to Wix Custom Dialog

Hi Everyone,

I've a specific requirement of checking whether a particular port is occupied 
by a web application through Wix 3.0. I've written a custom action dll in C# 
for this purpose and it returns ActionResult.Success and ActionResult.Failure 
depending on Port Occupied or Not.

When ActionResult.Failure is returned, (that means "Port Is Already Occupied by 
a web application"), then things are messed up and installer gets broken every 
time.

Here is the log for the same :

Action ended 9:49:18: PortAvailabilityCheck. Return value 3.
DEBUG: Error 2896:  Executing action PortAvailabilityCheck failed.
The installer has encountered an unexpected error installing this package. This 
may indicate a problem with this package. The error code is 2896. The arguments 
are: PortAvailabilityCheck, ,

I just wanted to know a possible way to return the status of a Port (maybe a 
flag="0" or "1") from a custom action to Wix Dialog.
My first  thought on this is there might be some Gotcha when Wix tries to 
communicate with C# custom action dll. I don't have any idea about what a C++ 
custom action dll will do in this particular case. (Writing a C++ dll for this 
task will be more cumbersome).

Is it possible to achieve the same using other ActionResult Enumeration 
Parameters ? OR any other way for the C# dll to communicate the Port Status to 
custom dialog (which will be useful to pop up the warning Dialog for Port 
Already occupied) ?



public enum ActionResult
{
// Summary:
// Action completed successfully.
Success = 0,
//
// Summary:
// Skip remaining actions, not an error.
SkipRemainingActions = 259,
//
// Summary:
// User terminated prematurely.
UserExit = 1602,
//
// Summary:
// Unrecoverable error or unhandled exception occurred.
Failure = 1603,
//
// Summary:
// Action not executed.
NotExecuted = 1626,
}



Code snippet :

1
  1
  WebAppExists=5

I'm getting different values for these enumeration parameters when returned to 
custom dialog. For Example, For Success its "1", for SkipRemainingActions its 
"5",etc. So, my problem is to compare these return values appropriately to 
proceed further.
This is weird, but this comparison always fails to get the expected behavior. 
Please let me know if I'm doing anything wrong here ?

Any help on this will be much appreciated.

Thanks,

Vishwajit


READER BEWARE: Unencrypted, unsigned Internet e-mail is inherently insecure.

Internet messages may be corrupted, incomplete, misdirected or may
incorrectly identify the sender. Therefore, nothing in this message or
attachments may be considered legally binding.

THIS MESSAGE IS ONLY INTENDED FOR THE USE OF THE INDIVIDUAL
OR ENTITY TO WHICH IT IS ADDRESSED AND MAY BE PRIVILEGED.

If you are not the intended recipient or their authorized agent, you
may not forward or copy this information and must delete or destroy all
copies of this message and attachments received.

If you have received this communication in error, please notify
Matrikon Inc. by telephone at (780) 448-1010 or emailing ad...@matrikon.com.
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] How To Pass Status Variables from a Custom Action to Wix Custom Dialog

2010-04-08 Thread Vishwajit Walke
Hi Everyone,

I've a specific requirement of checking whether a particular port is occupied 
by a web application through Wix 3.0. I've written a custom action dll in C# 
for this purpose and it returns ActionResult.Success and ActionResult.Failure 
depending on Port Occupied or Not.

When ActionResult.Failure is returned, (that means "Port Is Already Occupied by 
a web application"), then things are messed up and installer gets broken every 
time.

Here is the log for the same :

Action ended 9:49:18: PortAvailabilityCheck. Return value 3.
DEBUG: Error 2896:  Executing action PortAvailabilityCheck failed.
The installer has encountered an unexpected error installing this package. This 
may indicate a problem with this package. The error code is 2896. The arguments 
are: PortAvailabilityCheck, ,

I just wanted to know a possible way to return the status of a Port (maybe a 
flag="0" or "1") from a custom action to Wix Dialog.
My first  thought on this is there might be some Gotcha when Wix tries to 
communicate with C# custom action dll. I don't have any idea about what a C++ 
custom action dll will do in this particular case. (Writing a C++ dll for this 
task will be more cumbersome).

Is it possible to achieve the same using other ActionResult Enumeration 
Parameters ? OR any other way for the C# dll to communicate the Port Status to 
custom dialog (which will be useful to pop up the warning Dialog for Port 
Already occupied) ?



public enum ActionResult
{
// Summary:
// Action completed successfully.
Success = 0,
//
// Summary:
// Skip remaining actions, not an error.
SkipRemainingActions = 259,
//
// Summary:
// User terminated prematurely.
UserExit = 1602,
//
// Summary:
// Unrecoverable error or unhandled exception occurred.
Failure = 1603,
//
// Summary:
// Action not executed.
NotExecuted = 1626,
}



Code snippet :

1
  1
  WebAppExists=5

I'm getting different values for these enumeration parameters when returned to 
custom dialog. For Example, For Success its "1", for SkipRemainingActions its 
"5",etc. So, my problem is to compare these return values appropriately to 
proceed further.
This is weird, but this comparison always fails to get the expected behavior. 
Please let me know if I'm doing anything wrong here ?

Any help on this will be much appreciated.

Thanks,

Vishwajit


READER BEWARE: Unencrypted, unsigned Internet e-mail is inherently insecure.

Internet messages may be corrupted, incomplete, misdirected or may
incorrectly identify the sender. Therefore, nothing in this message or
attachments may be considered legally binding.

THIS MESSAGE IS ONLY INTENDED FOR THE USE OF THE INDIVIDUAL
OR ENTITY TO WHICH IT IS ADDRESSED AND MAY BE PRIVILEGED.

If you are not the intended recipient or their authorized agent, you
may not forward or copy this information and must delete or destroy all
copies of this message and attachments received.

If you have received this communication in error, please notify
Matrikon Inc. by telephone at (780) 448-1010 or emailing ad...@matrikon.com.
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX cannot install certificate - Error 26352 installing certificate

2010-04-08 Thread Bob Arnson
On 4/8/2010 9:55 AM, Andy Clugston wrote:
> Upgrading to the RTM (5419) did not help.  Same issues.
>

I reopened the old bug. Please attach sample authoring and a verbose log 
showing the problem.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Problem while uninstallation

2010-04-08 Thread Nabha, Jaspreet Singh

Hi ,

I am getting an issue while uninstallation. There are some folders which are 
copied onto user machine while installation, but its not getting deleted while 
uninstallation of the package.

It is working on some user machine. I dig into the log files but couldn't get 
any fruitful information.

Can some one please help me out.

Thanks
- Jaspreet


--
Important Notice to Recipients:
 
It is important that you do not use e-mail to request, authorize or effect the 
purchase or sale of any security or commodity, to send fund transfer 
instructions, or to effect any other transactions. Any such request, orders, or 
instructions that you send will not be accepted and will not be processed by 
Morgan Stanley Smith Barney.
 
The sender of this e-mail is an employee of Morgan Stanley Smith Barney LLC. If 
you have received this communication in error, please destroy all electronic 
and paper copies and notify the sender immediately.  Erroneous transmission is 
not intended to waive confidentiality or privilege. Morgan Stanley Smith Barney 
reserves the right, to the extent permitted under applicable law, to monitor 
electronic communications. By e-mailing with Morgan Stanley Smith Barney you 
consent to the foregoing.
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] how to use heat to harvest VS projects

2010-04-08 Thread Neil Sleightholm
But there wouldn't be any project references as they are external
assemblies.

Neil

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: 08 April 2010 22:08
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] how to use heat to harvest VS projects

On 4/8/2010 4:54 PM, Neil Sleightholm wrote:
> Afraid not, "Content" just includes icons, images etc (mainly useful
for
> web apps). I have checked this with 3.0 and 3.5. I feel this is quite
a
> big hole in the project harvester, is it worth a bug report?
>

You can try. I don't think it's a bug as such, given that project 
references to those projects would still harvest their output.

-- 
sig://boB
http://joyofsetup.com/



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] C++ Custom Action Dll not running on Windows Server 2008 R2

2010-04-08 Thread Bob Arnson
On 4/8/2010 1:14 PM, Sam Domonkos wrote:
> I know this is not specifically WiX 3.5, but I have a custom action that
> will run on XP 32bit, Windows7 32 and 64bit, but will not run on Windows
> Server 2008 R2.

Use Dependency Walker to see if the DLL has dependencies you're not 
accounting for. Otherwise, generic advice: use a verbose log to see how 
far your code gets. (You didn't say how it fails so it's difficult to be 
more precise.)

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Launching two Processes after a WiX installation

2010-04-08 Thread Bob Arnson
On 4/8/2010 11:08 AM, Xmun wrote:
> Is there a way to launch two applications?
>
WiX provides the custom actions to launch one; if you want two, you need 
to author those additional custom actions yourself.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] how to use heat to harvest VS projects

2010-04-08 Thread Bob Arnson
On 4/8/2010 4:54 PM, Neil Sleightholm wrote:
> Afraid not, "Content" just includes icons, images etc (mainly useful for
> web apps). I have checked this with 3.0 and 3.5. I feel this is quite a
> big hole in the project harvester, is it worth a bug report?
>

You can try. I don't think it's a bug as such, given that project 
references to those projects would still harvest their output.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] how to use heat to harvest VS projects

2010-04-08 Thread Neil Sleightholm
Afraid not, "Content" just includes icons, images etc (mainly useful for
web apps). I have checked this with 3.0 and 3.5. I feel this is quite a
big hole in the project harvester, is it worth a bug report?

Neil

-Original Message-
From: Bob Arnson [mailto:b...@joyofsetup.com] 
Sent: 08 April 2010 13:45
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] how to use heat to harvest VS projects

On 4/6/2010 5:23 PM, Neil Sleightholm wrote:
> I have checked this again and using heat with the options
"-pog:Binaries
> -pog:Satellites -pog:Content" the referenced assemblies are not
> included.
>
I thought they'd end up as "Content."

-- 
sig://boB
http://joyofsetup.com/



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] conditional installation if application path found

2010-04-08 Thread Alan Sinclair
what i'd do is
1 - have a property APPFOUND with a default value "false"
2 - use Appsearch to set the property to something (anything) different from 
"false"
3 - use a LaunchCondition that tests APPFOUND="false", with a suitable message 
shown when the test is true



From: subramanyeswari [sravi...@yahoo.com]
Sent: Thursday, April 08, 2010 9:56 AM
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] conditional installation if application path found

Hi,

i have to install my application if another application found else i want to
give error message like ' Application is not found.  Please install
Application'.   I am using registrysearch to find whether the application is
installed or not but i do not know how to give error message is another
application is not found.

Please help me.

Regards, Subramanyeswari
--
View this message in context: 
http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4872360.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Shortcut is not using specified icon

2010-04-08 Thread Alexander Shevchuk (Volt)
Hi Markus,

The Source (http://msdn.microsoft.com/en-us/library/aa369210) is saying:

"Icon files that are associated strictly with file name extensions or CLSIDs 
can have any extension, such as .ico. However, Icon files that are associated 
with shortcuts must be in the EXE binary format and must be named such that 
their extension matches the extension of the target. The shortcut will not work 
if this rule is not followed. For example, if a shortcut is to point to a 
resource having the key file Red.bar, then the icon file must also have the 
extension .bar. Multiple icons can be stuffed into the same icon file as long 
as all of the target files have the same extension. "

So, to fix that:




Regards,
Alex




-Original Message-
From: Markus Karg [mailto:k...@quipsy.de] 
Sent: Thursday, April 08, 2010 4:34 AM
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Shortcut is not using specified icon

I have a strange problem. Following the directions in the WiX manual, I added a 
ShortCut which is working well. Now I added a icon, but the shortcut is not 
using it - it still uses the icon of the EXE! The installation is per machine.

 



 









 

Any ideas?

--
Download Intel® Parallel Studio Eval Try the new software tools for 
yourself. Speed compiling, find bugs proactively, and fine-tune applications 
for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] C++ Custom Action Dll not running on Windows Server 2008 R2

2010-04-08 Thread Sam Domonkos
I know this is not specifically WiX 3.5, but I have a custom action that 
will run on XP 32bit, Windows7 32 and 64bit, but will not run on Windows 
Server 2008 R2.  I am using Msi.Lib - 7/14/2009 6:54 - ms sdk 7.0 when I 
build the Dll.  Which seemed to be the most recent version.  If anyone 
has any suggestions or could redirect me to the correct reference it 
would be greatly appreciated.

Thanks,
Sam

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] conditional installation if application path found

2010-04-08 Thread subramanyeswari

Hi,

i have to install my application if another application found else i want to
give error message like ' Application is not found.  Please install
Application'.   I am using registrysearch to find whether the application is
installed or not but i do not know how to give error message is another
application is not found.

Please help me.

Regards, Subramanyeswari
-- 
View this message in context: 
http://n2.nabble.com/conditional-installation-if-application-path-found-tp4872360p4872360.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Launching two Processes after a WiX installation

2010-04-08 Thread Xmun

Hi,

After a successful installation we currently launch our application using
the following custom action:




Is there a way to launch two applications?

If not I am planning to create a third application which simply launches
both applications and closes.  This third application will then be launched
by WiX.  This is a simple solution but it would be nice to launch both
directly from WiX.

Thanks in advance for your help!
Simon
-- 
View this message in context: 
http://n2.nabble.com/Launching-two-Processes-after-a-WiX-installation-tp4871679p4871679.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems launching application after install asnon-elevated

2010-04-08 Thread Xmun

Hi Pally,

Thank you for your reply.  I have been testing this temporary solution and
it is working well.  Do you know whether this is the "recommended" /
standard way of doing this?

I want to make sure that we don't get any surprises after we deploy the
software.

Thanks,
Simon
-- 
View this message in context: 
http://n2.nabble.com/Problems-launching-application-after-install-as-non-elevated-tp4870137p4871481.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX cannot install certificate - Error 26352 installing certificate

2010-04-08 Thread Andy Clugston
Upgrading to the RTM (5419) did not help.  Same issues.

Thank you.

On Thu, Apr 8, 2010 at 8:44 AM, Bob Arnson  wrote:

> On 4/7/2010 7:49 AM, Andy Clugston wrote:
> > WixIIsExtension.dll version:  3.0.5217.0
> >
>
> Try upgrading to WiX v3.0 RTM.
>
> --
> sig://boB
> http://joyofsetup.com/
>
>
>
> --
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
>
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] skip almost dialogs on upgrade

2010-04-08 Thread Pally Sandher
Look at the InstallUISequence of your built MSI (sort by sequence).
You'll see only MaintenanceWelcomeDlg, ResumeDlg & WelcomeDlg sequenced
before ProgressDlg so conditioning the WelcomeDlg appropriately will
also skip all the dialogs it calls if it is skipped since the user never
clicks on the next button to call a NewDialog event.

You can go directly to the ProgressDlg by just conditioning the
WelcomeDlg as I suggested & not bothering creating a new dialog but
personally I wouldn't do that as it's not very user friendly (user
double clicks MSI, it starts upgrading without warning, how do you know
that's what the user actually wanted to do?) but it's your product &
your call.

If you condition the dialogs correctly in the InstallUISequence, the
user will see the correct one. The VerifyReadyDlg doesn't show in the
InstallUISequence, it's spawned by other dialogs.

Look at the WiXUI .wxs files in the sources (they're under
src\ext\UIExtension\wixlib) & see how they do things, you're simply
trying to modify what they do. All the code is there you just need to
look at it & implement it in your own way.

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer


-Original Message-
From: lewisv [mailto:le...@nitorco.com] 
Sent: 08 April 2010 13:05
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] skip almost dialogs on upgrade


Ok, if i condition the welcome dialog. Would i need to also condition
all the following dialogs. ie setuptype, license, custom etc... It seems
to me, if i simply disable the welcome dialog then the next dialog in
order would show up.

Putting a new verifyreaddlg before progress makes sense. But this still
requires some human interaction. ie They must press the install button
on the new verifyreadydlg. Is it possible to skip all the dialogs and go
directly to install? 

Another question Is it possible to put the new verifyreadydlg before the
welcome dialog, and then tell the next button to start the install? Or
is that done automatically by putting the dialog before progressdlg?

I have already seen that article. Good one, i used it to take my license
dialog out. But i did not see a way to completly skip the ui except for
the progress dlg

--
View this message in context:
http://n2.nabble.com/skip-almost-dialogs-on-upgrade-tp4866051p4870613.ht
ml
Sent from the wix-users mailing list archive at Nabble.com.


--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Searching for existing files but only once

2010-04-08 Thread Markus Karg
We need to upgrade a preinstalled software. That software is very old
and knows nothing of MSI, Registry etc. We actually have to search all
local drives for the old EXE file and remove the surrounding folder. As
this is a time consuming task, this shall only happen if this is really
an update of that old version but not if this is an update / upgrade /
patch of a previous "new" MSI setup. I hope it is clear what I like to
tell.

 

We have no clue how to do that...

 

Can anybody paste a short code snippet describing an idea how this could
be done?

 

Thanks!

Markus

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Action: 'DuplicateFiles' in InstallExecuteSequence table must come after the 'InstallFiles' action.

2010-04-08 Thread Bob Arnson
On 4/6/2010 1:04 PM, Michael Schlitt wrote:
> I believe you have make something in the Component section point to a KeyPath 
> and if there is not something in the Component Section that points to KeyPath 
> then create a Registy Key that does this for you.
>

This occurs when the package doesn't install any files. It's fixed in 
v3.5.1602.0.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] run executable during install

2010-04-08 Thread Bob Arnson
On 4/7/2010 1:16 PM, Andrew Ziem wrote:
> My MSI installs an application called SideCIC.EXE. It needs to
> initialize a Windows Event Viewer container which can be done if I run
> 'SideCIC.EXE /initialize'.

WiX includes the EventSource element to create event sources without the 
need for fragile custom actions.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] WiX cannot install certificate - Error 26352 installing certificate

2010-04-08 Thread Bob Arnson
On 4/7/2010 7:49 AM, Andy Clugston wrote:
> WixIIsExtension.dll version:  3.0.5217.0
>

Try upgrading to WiX v3.0 RTM.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] how to use heat to harvest VS projects

2010-04-08 Thread Bob Arnson
On 4/6/2010 5:23 PM, Neil Sleightholm wrote:
> I have checked this again and using heat with the options "-pog:Binaries
> -pog:Satellites -pog:Content" the referenced assemblies are not
> included.
>
I thought they'd end up as "Content."

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Wix 3.0 with VS2010

2010-04-08 Thread Bob Arnson
On 4/8/2010 6:58 AM, Rhodes, John wrote:
> Does anyone know if  there any issues or even if its possible to run Wix 3.0 
> integrated with VS2010?
No, WiX v3.0 doesn't support it. There are no breaking changes in the 
core toolset, so I'd recommend v3.5 over trying to hack bits of it into 
v3.0.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Votive Missing Project Templates (VS 2008 SP1)

2010-04-08 Thread Bob Arnson
On 4/6/2010 6:31 PM, Alex Ivanoff wrote:
> 3.5.1602 still no project/item templates in VS 2008 SP1.
>
There's no bug on that issue. Please file one with details.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Forcing conditional feature install

2010-04-08 Thread Bob Arnson
On 4/7/2010 9:55 PM, Jeff Perrigo wrote:
> I am trying to do an admin install of an MSI with a conditional feature and I 
> need the feature to be installed regardless of the condition.

As documented, admin installs install all features except those with 
level 0.

-- 
sig://boB
http://joyofsetup.com/


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurrence

2010-04-08 Thread pmdarrow

IISMAJORVERSION >= "#6" should work. If not,
(IISMAJORVERSION="#6" OR IISMAJORVERSION="#7") definitely works.
-- 
View this message in context: 
http://n2.nabble.com/IIS-6-0-Detection-to-Skip-the-Custom-Dialog-Occurrence-tp4861003p4870655.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] skip almost dialogs on upgrade

2010-04-08 Thread lewisv

Ok, if i condition the welcome dialog. Would i need to also condition all the
following dialogs. ie setuptype, license, custom etc... It seems to me, if i
simply disable the welcome dialog then the next dialog in order would show
up.

Putting a new verifyreaddlg before progress makes sense. But this still
requires some human interaction. ie They must press the install button on
the new verifyreadydlg. Is it possible to skip all the dialogs and go
directly to install? 

Another question Is it possible to put the new verifyreadydlg before the
welcome dialog, and then tell the next button to start the install? Or is
that done automatically by putting the dialog before progressdlg?

I have already seen that article. Good one, i used it to take my license
dialog out. But i did not see a way to completly skip the ui except for the
progress dlg

-- 
View this message in context: 
http://n2.nabble.com/skip-almost-dialogs-on-upgrade-tp4866051p4870613.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Shortcut is not using specified icon

2010-04-08 Thread Markus Karg
I have a strange problem. Following the directions in the WiX manual, I
added a ShortCut which is working well. Now I added a icon, but the
shortcut is not using it - it still uses the icon of the EXE! The
installation is per machine.

 



 









 

Any ideas?

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Wix 3.0 with VS2010

2010-04-08 Thread Rhodes, John
Hi,
Does anyone know if  there any issues or even if its possible to run Wix 3.0 
integrated with VS2010? We have a bunch of VS2008 projects with installers 
written in wix 3.0. I now have to write an installer for a VS2010 project. I'd 
rather just use one (stable) version than try and use v3 and 3.5 side by side 
or upgrade and risk doing over our existing installer projects with breaking 
changes in 3.5.  I guess I just need the integration bits - can I just drop the 
votive2010.dll file into the 3.0 bin directory and then manually install the vs 
templates ?

Cheers,
John.




John Rhodes
Software Developer



t: +44 (0)117 970 3249

e: john.rho...@alterian.com



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Support Phone Number

2010-04-08 Thread Markus Karg
Thanks! It works pretty well! :-)


> -Original Message-
> From: Pally Sandher [mailto:pally.sand...@iesve.com]
> Sent: Donnerstag, 8. April 2010 11:27
> To: General discussion for Windows Installer XML toolset.
> Subject: Re: [WiX-users] Support Phone Number
> 
> http://msdn.microsoft.com/en-us/library/aa367588.aspx
> 
> Palbinder Sandher
> Software Deployment & IT Administrator
> T: +44 (0) 141 945 8500
> F: +44 (0) 141 945 8501
> 
> http://www.iesve.com
> **Design, Simulate + Innovate with the **
> Integrated Environmental Solutions Limited. Registered in Scotland No.
> SC151456
> Registered Office - Helix Building, West Of Scotland Science Park,
> Glasgow G20 0SP
> Email Disclaimer
> 
> 
> -Original Message-
> From: Markus Karg [mailto:k...@quipsy.de]
> Sent: 08 April 2010 09:49
> To: General discussion for Windows Installer XML toolset.
> Subject: [WiX-users] Support Phone Number
> 
> We'd like to provide a support phone number in our WiX-generated .msi
> in
> a way that this phone number is visible to the end user when looking
at
> "Support Details" in the Software Control Panel of Windows. How to do
> that?
> 
> 
> 
>
---
> -
> --
> Download Intel® Parallel Studio Eval Try the new software tools
> for
> yourself. Speed compiling, find bugs proactively, and fine-tune
> applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users
> 
> 
> 
>
---
> ---
> Download Intel® Parallel Studio Eval
> Try the new software tools for yourself. Speed compiling, find bugs
> proactively, and fine-tune applications for parallel performance.
> See why Intel Parallel Studio got high marks during beta.
> http://p.sf.net/sfu/intel-sw-dev
> ___
> WiX-users mailing list
> WiX-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems launching application after install asnon-elevated

2010-04-08 Thread Pally Sandher
Your "temporary workaround" sounds like the proper solution. Allow
Windows Installer to request elevation if/when required rather than
forcing it everywhere from the start. If you're using a stock WiX UI
your user will be prompted with a UAC shield on the VerifyReadyDlg
before the elevation request so it shouldn't be a complete surprise.

If you elevate the Iexpress SFX package, any child processes it spawns
will also be elevated. Hence your Setup.exe will be elevated which in
turn elevates msiexec when it runs your MSI which will then elevate your
application because of the waterfall of elevated processes you have
created. If you're worried about the .NET 2.0 Framework needing
elevation, don't. You didn't write it & it's not required on Vista or
later anyway.

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: Simon [mailto:xmu...@gmail.com] 
Sent: 08 April 2010 10:53
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Problems launching application after install
asnon-elevated

Hi,

I need some help in launching our Application correctly once the WiX MSI
installer has completed.

Currently I have the following setup:

(a) An IExpress Self Extracter executable.  This has a manifest set to
RunAsAdministrator for UAC compatibility.

(b) The self-extracter then runs a bootstrapper application "Setup.exe".
 This was created using Visual Studio 2005 and installs .NET 2.0 as a
prerequisite.  It then proceeds to run the MSI.  The bootstrapper also
has a manifest set to RunAsAdministrator.

(c) The bootstrapper launches the MSI which was written using WiX
version 3.0.  The MSI installs the application correctly and then shows
a checkbox in the last screen allowing the user to Launch the
Application.  The application is launched using a custom action as
follows:





The Problem:

Even though the application launches correctly I have noticed that the
application is running in UAC elevated mode.  We want to make sure that
the application is not run in elevated mode as it may cause issues for
us.

Temporary Workaround:
---
I was able to solve this issue by setting the manifest of the
Self-Extracter and the Bootstrapper to AsInvoker.  This causes the UAC
prompt to show up half way through the MSI install, and the application
is launched correctly.
 My concern is that unless we set the Self-Extracter and Bootstrapper to
RunAsAdministraor then we will have compatibility issues when deploying
our installers.

Ideal Situation:
--
Ideally we set the Self-Extracter, Bootstrapper and MSI to
RunAsAdministrator in elevated mode,  but the application is then
launched in non-elevated mode.


Does anyone know how to achieve this?  Thank you in advance for you
help!

Regards,
Simon

--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems launching application after install as non-elevated

2010-04-08 Thread Xmun

Hi,

Sorry to clarify - in my previous post, when I mentioned
"RunAsAdministrator" I meant manifested as "requiresAdministrator" .

Thanks,
Simon
-- 
View this message in context: 
http://n2.nabble.com/Problems-launching-application-after-install-as-non-elevated-tp4870137p4870177.html
Sent from the wix-users mailing list archive at Nabble.com.

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Problems launching application after install as non-elevated

2010-04-08 Thread Simon
Hi,

Sorry to clarify - in my previous post, when I mentioned
"RunAsAdministrator" I meant manifested as "requiresAdministrator" .

Thanks,
Simon

On Thu, Apr 8, 2010 at 11:52 AM, Simon  wrote:

> Hi,
>
> I need some help in launching our Application correctly once the WiX MSI
> installer has completed.
>
> Currently I have the following setup:
>
> (a) An IExpress Self Extracter executable.  This has a manifest set to
> RunAsAdministrator for UAC compatibility.
>
> (b) The self-extracter then runs a bootstrapper application "Setup.exe".
>  This was created using Visual Studio 2005 and installs .NET 2.0 as a
> prerequisite.  It then proceeds to run the MSI.  The bootstrapper also has a
> manifest set to RunAsAdministrator.
>
> (c) The bootstrapper launches the MSI which was written using WiX version
> 3.0.  The MSI installs the application correctly and then shows a checkbox
> in the last screen allowing the user to Launch the Application.  The
> application is launched using a custom action as follows:
>
> 
>   Impersonate="yes" Execute="immediate"/>
>
>
> The Problem:
> 
> Even though the application launches correctly I have noticed that the
> application is running in UAC elevated mode.  We want to make sure that the
> application is not run in elevated mode as it may cause issues for us.
>
> Temporary Workaround:
> ---
> I was able to solve this issue by setting the manifest of the
> Self-Extracter and the Bootstrapper to AsInvoker.  This causes the UAC
> prompt to show up half way through the MSI install, and the application is
> launched correctly.  My concern is that unless we set the Self-Extracter and
> Bootstrapper to RunAsAdministraor then we will have compatibility issues
> when deploying our installers.
>
> Ideal Situation:
> --
> Ideally we set the Self-Extracter, Bootstrapper and MSI to
> RunAsAdministrator in elevated mode,  but the application is then launched
> in non-elevated mode.
>
>
> Does anyone know how to achieve this?  Thank you in advance for you help!
>
> Regards,
> Simon
>
>
>
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Problems launching application after install as non-elevated

2010-04-08 Thread Simon
Hi,

I need some help in launching our Application correctly once the WiX MSI
installer has completed.

Currently I have the following setup:

(a) An IExpress Self Extracter executable.  This has a manifest set to
RunAsAdministrator for UAC compatibility.

(b) The self-extracter then runs a bootstrapper application "Setup.exe".
 This was created using Visual Studio 2005 and installs .NET 2.0 as a
prerequisite.  It then proceeds to run the MSI.  The bootstrapper also has a
manifest set to RunAsAdministrator.

(c) The bootstrapper launches the MSI which was written using WiX version
3.0.  The MSI installs the application correctly and then shows a checkbox
in the last screen allowing the user to Launch the Application.  The
application is launched using a custom action as follows:





The Problem:

Even though the application launches correctly I have noticed that the
application is running in UAC elevated mode.  We want to make sure that the
application is not run in elevated mode as it may cause issues for us.

Temporary Workaround:
---
I was able to solve this issue by setting the manifest of the Self-Extracter
and the Bootstrapper to AsInvoker.  This causes the UAC prompt to show up
half way through the MSI install, and the application is launched correctly.
 My concern is that unless we set the Self-Extracter and Bootstrapper to
RunAsAdministraor then we will have compatibility issues when deploying our
installers.

Ideal Situation:
--
Ideally we set the Self-Extracter, Bootstrapper and MSI to
RunAsAdministrator in elevated mode,  but the application is then launched
in non-elevated mode.


Does anyone know how to achieve this?  Thank you in advance for you help!

Regards,
Simon
--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] skip almost dialogs on upgrade

2010-04-08 Thread Pally Sandher
Easy way to do it would be to condition the WelcomeDlg in the
InstallUISequence with "NOT Installed AND NOT PREVFOUND".
Then you could make a new dialog (make the buttons a copy of the
VerifyReadyDlg ones so you get UAC shields where appropriate) &
condition it with "Installed AND PREVFOUND" so it will show instead.
Make sure you set it to Before="ProgressDlg". This would make the user
only see your new dialog & when they click the Install button & it goes
straight to the Progress Dialog & starts upgrading.

Neil Sleightholm wrote a pretty good article on Customizing the stock
WiX UI's which should help point you in the right direction if you need
help with this ->
http://neilsleightholm.blogspot.com/2008/08/customised-uis-for-wix.html

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: lewisv [mailto:le...@nitorco.com] 
Sent: 07 April 2010 17:51
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] skip almost dialogs on upgrade


When i am doing a upgrade of my application. ( i am un-installing an
re-installing ) I would like to skip all the user interaction dialogs. 

Right now i have this in my setup
  PREVFOUND

This of course will skip the license, setuptype etc... dialogs. 
but the user still has to press next on the welcomedialog, and press
next on the verifyreadydlg

I would like to minimize the amount of clicks the user has to do. 
My best is once the msi is run, that it goes directly to the progess
dialog and starts the install. 

I do want to show the progress dialog, so the user will see the install
working. 
And during a first time install i still want to go though all the
standard dialogs. 

How do i do this?

--
View this message in context:
http://n2.nabble.com/skip-almost-dialogs-on-upgrade-tp4866051p4866051.ht
ml
Sent from the wix-users mailing list archive at Nabble.com.


--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Run the CA only on the first install (no upgrades)

2010-04-08 Thread Viv Coco
Hi all,

I would like to run a CA only on the first install. The CA shouldn't be 
run on an upgrade. The condition i used is:
(NOT Installed) AND (NOT UPGRADINGPRODUCTCODE)
but it's not working, as the CA is still run on upgrade also.

I found the nice and detailed answer from Blair here:
http://www.mail-archive.com/wix-users@lists.sourceforge.net/msg31160.html
which explains how this condition should look like, but what I didn't 
understand is why can't we use the UPGRADINGPRODUCTCODE property in 
order to detect when it's an upgrade. Can someone pls explain that or 
point to a link that contains the explanation? I mean why the condition 
I set is not correct?

Thx,
Viv

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Forcing conditional feature install

2010-04-08 Thread Pally Sandher
Properties should be set after msiexec parameters. Move the "/lv*!
install.log" to before you declare your properties.

If that doesn't work try without the # in your properties or try
changing the Feature Level to something arbitrarily high like  which
will be above your standard INSTALLLEVEL.

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: Jeff Perrigo [mailto:jeff.perr...@microsoft.com] 
Sent: 08 April 2010 02:55
To: wix-users@lists.sourceforge.net
Subject: [WiX-users] Forcing conditional feature install

Hi all,

I am trying to do an admin install of an MSI with a conditional feature
and I need the feature to be installed regardless of the condition.  The
condition is a property which I've tried setting on the command line,
but the feature still isn't installed.  It appears that the condition is
being ignored.  Is there a way with an admin install to force all
features to be installed?  Any help would be much appreciated.

Here is the command I am running:
msiexec.exe /qn /a "myinstall.msi" TARGETDIR="C:\temp\msitest"
MY_PROPERTY="#1" ADDLOCAL=ALL /lv*! install.log

Here is a line from my log file showing that request and action are null
for this feature:
MSI (s) (04:64) [15:00:39:123]: Feature: FT.MyFeature; Installed:
Absent;   Request: Null;   Action: Null

Below is the authoring for my feature:



  


Thanks!

Jeff

--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Support Phone Number

2010-04-08 Thread Pally Sandher
http://msdn.microsoft.com/en-us/library/aa367588.aspx

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer


-Original Message-
From: Markus Karg [mailto:k...@quipsy.de] 
Sent: 08 April 2010 09:49
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Support Phone Number

We'd like to provide a support phone number in our WiX-generated .msi in
a way that this phone number is visible to the end user when looking at
"Support Details" in the Software Control Panel of Windows. How to do
that?

 


--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] Support Phone Number

2010-04-08 Thread Yan Sklyarenko
Set the ARPHELPTELEPHONE property:
http://msdn.microsoft.com/en-us/library/aa367588(v=VS.85).aspx

-- Yan

-Original Message-
From: Markus Karg [mailto:k...@quipsy.de] 
Sent: Thursday, April 08, 2010 11:49
To: General discussion for Windows Installer XML toolset.
Subject: [WiX-users] Support Phone Number

We'd like to provide a support phone number in our WiX-generated .msi in
a way that this phone number is visible to the end user when looking at
"Support Details" in the Software Control Panel of Windows. How to do
that?

 


--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog Occurrence

2010-04-08 Thread Pally Sandher
Put a greater than '>' before the equals in your condition?

Palbinder Sandher 
Software Deployment & IT Administrator
T: +44 (0) 141 945 8500 
F: +44 (0) 141 945 8501 

http://www.iesve.com 
**Design, Simulate + Innovate with the **
Integrated Environmental Solutions Limited. Registered in Scotland No.
SC151456 
Registered Office - Helix Building, West Of Scotland Science Park,
Glasgow G20 0SP
Email Disclaimer

-Original Message-
From: Vishwajit Walke [mailto:vishwajit.wa...@matrikon.com] 
Sent: 08 April 2010 01:24
To: General discussion for Windows Installer XML toolset.
Subject: Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog
Occurrence

Hi,

Is it possible to extend this condition to detect the version of IIS
installed is 6 AND greater than 6 ? Currently, I'm able to detect the
version # 6 with this. Just wanted to make this condition flexible so as
to run on any platform having different versions of IIS.

Vishwajit

-Original Message-
From: pmdarrow [mailto:pdar...@metaworks.com]
Sent: Wednesday, April 07, 2010 7:03 AM
To: wix-users@lists.sourceforge.net
Subject: Re: [WiX-users] IIS 6.0 Detection to Skip the Custom Dialog
Occurrence


Detecting IIS is easy, link with WixIIsExtension.dll and then the
following "just works":


IISMAJORVERSION="#6"

--
View this message in context:
http://n2.nabble.com/IIS-6-0-Detection-to-Skip-the-Custom-Dialog-Occurre
nce-tp4861003p4864761.html
Sent from the wix-users mailing list archive at Nabble.com.


--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users

READER BEWARE: Unencrypted, unsigned Internet e-mail is inherently
insecure.

Internet messages may be corrupted, incomplete, misdirected or may
incorrectly identify the sender. Therefore, nothing in this message or
attachments may be considered legally binding.

THIS MESSAGE IS ONLY INTENDED FOR THE USE OF THE INDIVIDUAL OR ENTITY TO
WHICH IT IS ADDRESSED AND MAY BE PRIVILEGED.

If you are not the intended recipient or their authorized agent, you may
not forward or copy this information and must delete or destroy all
copies of this message and attachments received.

If you have received this communication in error, please notify Matrikon
Inc. by telephone at (780) 448-1010 or emailing ad...@matrikon.com.


--
Download Intel® Parallel Studio Eval Try the new software tools for
yourself. Speed compiling, find bugs proactively, and fine-tune
applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users



--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users


[WiX-users] Support Phone Number

2010-04-08 Thread Markus Karg
We'd like to provide a support phone number in our WiX-generated .msi in
a way that this phone number is visible to the end user when looking at
"Support Details" in the Software Control Panel of Windows. How to do
that?

 

--
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
___
WiX-users mailing list
WiX-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wix-users