Re: [WiX-users] WinRt/Metro App Sideloading installer

2013-05-16 Thread David Watson
Interesting, I looked into it briefly and didn't think it would be possible due to all the hoops you have to jump through. -Original Message- From: Rob Mensching [mailto:r...@robmensching.com] Sent: 15 May 2013 21:58 To: General discussion for Windows Installer XML toolset. Subject:

Re: [WiX-users] Speed up installer for copy file using Heat

2013-05-16 Thread David Watson
Do you use the -suid heat option? -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: 15 May 2013 23:26 To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Speed up installer for copy file using Heat Yes, it could be possible to make an

Re: [WiX-users] [SPAM] Re: [SPAM] Re: Detect Complete- freezed

2013-05-16 Thread Kannan24
Hi Rob, Thanks, The installation goes fine in my development machine, so i can't check the reason. While am testing in any other machine, it freeze. I wait a long time, but no response. If i clean up the temp location or clean up and restart the test machine then installation progressing fine. I

Re: [WiX-users] WinRt/Metro App Sideloading installer

2013-05-16 Thread Rob Mensching
Its possible just a lot of work that I don't want to do if no one is interested. smile/ On Thu, May 16, 2013 at 2:02 AM, David Watson dwat...@sdl.com wrote: Interesting, I looked into it briefly and didn't think it would be possible due to all the hoops you have to jump through.

Re: [WiX-users] [SPAM] Re: [SPAM] Re: Detect Complete- freezed

2013-05-16 Thread Rob Mensching
It appears the engine is waiting for the BA to do something. You'll need to debug your BA on a repro'ing machine. Nothing obvious from the outside. On Thu, May 16, 2013 at 8:04 AM, Kannan24 skan...@syncfusion.com wrote: Hi Rob, Thanks, The installation goes fine in my development machine, so

[WiX-users] 64 bit msi Registry Search for Message Queue registry entry

2013-05-16 Thread norman lough
In a 32 bit msi I use the following property Property Id=MSMQAVAILABLE RegistrySearch Id=MSMQIsInstalled Root=HKLM Key=System\CurrentControlSet\Services\MSMQ Name=ImagePath

[WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Tom -
And the directory in question is Program Files\Manufacturer\Product, which translates to C:\Program Files (x86)\SupersecretCompany\My Product Name. The error message says log on as administrator or contact your system administrator. The user, however, has administrative rights on the computer.

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Hoover, Jacob
Ensure it's a per-machine installation package (Product/Package/@InstallPrivileges='elevated' and/or Product/Package/@InstallScope=' perMachine'). -Original Message- From: Tom - [mailto:mittegetm...@hotmail.com] Sent: Thursday, May 16, 2013 10:45 AM To: wix-users@lists.sourceforge.net

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Jeremiahf
I always use InstallPrivileges=elevated under Package id. J On Thu, May 16, 2013 at 10:45 AM, Tom - mittegetm...@hotmail.com wrote: And the directory in question is Program Files\Manufacturer\Product, which translates to C:\Program Files (x86)\SupersecretCompany\My Product Name. The error

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Jeremiahf
Hi Jacob, True, I left that one out InstallScope=perMachine/ I include that as well under InstallPrivileges=elevated under Package element. J On Thu, May 16, 2013 at 10:52 AM, Hoover, Jacob jacob.hoo...@greenheck.comwrote: Ensure it's a per-machine installation package

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Hoover, Jacob
The log files in the temp folder will tell us what exactly is failing. If you have any CA's that are running at inappropriate times you could have issues as well. -Original Message- From: Jeremiahf [mailto:jeremi...@gmail.com] Sent: Thursday, May 16, 2013 11:02 AM To: General

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Phil Wilson
... And it doesn't have to an issue in your MSI. There seems to be a problem where the system account loses access to some folders, so see if this is the issue, like this: http://support.microsoft.com/kb/228658 And try it on some other fresh virtual machines to see if it's happening everywhere

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Tom -
Thank you, guys! I'd had it set perUser because it sounded the most similar to what I had set as installscope for my previous package, I believe. I don't dare open it up in VS 2010 to look at what it says. I've rebuild with perMachine and elevated and I'll send off for a test-install to the guy

[WiX-users] MultiLingual MSIs – Error applying transforms. Verify that the specified transform paths are valid.

2013-05-16 Thread ashish thomas
Hi All, I am planning to create a multilingual MSI. I have created MSI file for the English local and have created MST File for German using MSITran.exe . I am invoking the msi from the bootstrapper. I specify German language to be shown in the MSI ui by specifying the following in the WIx

Re: [WiX-users] The installer has insufficient privileges to access this directory

2013-05-16 Thread Hoover, Jacob
Or you could use Orca or similar tools to just look at your old MSI. IMO, it's best to get used to using tools like these, as they will make debugging issues much easier and it makes it possible to compare two MSI's to figure out what's changed. -Original Message- From: Tom -

Re: [WiX-users] MultiLingual MSIs – Error applying transforms. Verify that the specified transform paths are valid.

2013-05-16 Thread Hoover, Jacob
This isn't a WIX specific question, and it certainly isn't a wix-devs question. In the future, please limit wix-devs questions to the development of the Wix toolset. The two options you have are to embed the MST into the MSI, in which case you can use the : prefix or if you want it external

[WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
I have a Burn setup with managed UI in WPF so I need to install The net framework 4 as prerequisite for the installer and my application, but as in the Net Framework 4.5 there are some usefull fix, I want to install the net framework 4.5 if possible.I'd like to make this: 1 - On WIndows XP - I

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Nick Miller
Here is what I use: util:RegistrySearch Root=HKLM Key=SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full Value=Version Variable=Netfx4FullVersion / util:RegistrySearch Root=HKLM Key=SOFTWARE\Microsoft\Net Framework Setup\NDP\v4\Full Value=Version Variable=Netfx4x64FullVersion Win64=yes /

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread John Cooper
There's an undocumented NETFRAMEWORK45 Property in the NetFX extension in Wix 3.6 that does the business. -- John Merryweather Cooper Build Install Engineer - ESA Jack Henry Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434 x791011 jocoo...@jackhenry.com www.jackhenry.com

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
The NetFX extension make the trick but it work with a web based installation of the Net Framework, so if you want to install the full version without douwnloading it while running the setup you have to add the net framework by yourself as posted by Nick.I use exactly this fragment of code, but

[WiX-users] how to read a value from an xml app config file using WIX 3.6

2013-05-16 Thread Marty Offe
How can I read a value from an application's xml config file and present the value in a dialog? Scenario: During an install a dialog prompts the user for a port number. That port number is written to an application config file using the WIXUtilExtension XmlFile custom action element. During

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Nick Miller
Ah, set your BootstrapperCore.config like this: startup useLegacyV2RuntimeActivationPolicy=true supportedRuntime version=v4.0 sku=.NETFramework,Version=v4.5 / /startup -Original Message- From: Marco Tognacci [mailto:mark...@live.it] Sent: Thursday, May 16, 2013 5:51 PM To: General

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread John Cooper
It is possible, but there will be a lot of edge cases. It may be better to simplify. What does your application really need? It sounds like it needs .NET Frame 4.0. If that's the case, .NET 4.5 is a superset and will satisfy the need for 4.0 in most cases. In which case, you'd be better

Re: [WiX-users] how to read a value from an xml app config file using WIX 3.6

2013-05-16 Thread John Cooper
Use an immediate custom action that runs just after AppSearch to load the file, process the XPATH, and load the appropriate MSI property with the value. -- John Merryweather Cooper Build Install Engineer - ESA Jack Henry Associates, Inc.® Shawnee Mission, KS  66227 Office:  913-341-3434

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Nick Miller
I ran into a similar situation, and in the end, I too just set 4.5 as the prerequisite for my installer. -Original Message- From: John Cooper [mailto:jocoo...@jackhenry.com] Sent: Thursday, May 16, 2013 6:04 PM To: General discussion for Windows Installer XML toolset. Subject: Re:

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
Using this SupportedRuntime I set the Net Framework 4.5 as needed for the application, but this is not what I need. From: nmil...@livetechnology.com To: wix-users@lists.sourceforge.net Date: Thu, 16 May 2013 21:57:16 + Subject: Re: [WiX-users] Install Net Framework 4.5 as prerequisite

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
My application work with the only Net 4.0. But we have seen some minor problems that were fixed with an hotfix made by microsoft and bundled only with the net 4.5.So if it's possible to install the Net 4.5 I prefer to install this versione to make my application working good at 100%If this is

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Nick Miller
So, if I understand correctly, you want to install .Net 4.5 only if 4.0 is not already installed. Try adding this to your InstallCondition: AND (NOT (Netfx4FullVersion=quot;4.0.30319quot; OR Netfx4x64FullVersion=quot;4.0.30319quot;)) So the whole thing would be: InstallCondition=(VersionNT =

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
In this case you can't install on Windows XP.I need to preserve the WIndows XP compatibility and build only one setup for Windows XP and Windows 7 From: nmil...@livetechnology.com To: wix-users@lists.sourceforge.net Date: Thu, 16 May 2013 22:08:12 + Subject: Re: [WiX-users] Install Net

Re: [WiX-users] Install Net Framework 4.5 as prerequisite only if on windows 7-8 and not installed

2013-05-16 Thread Marco Tognacci
this is what I have just do, the problem is that for running the Burn WPF UI I need to add the net framework as prerequisite as the burn engine will run the installation of this prereq before to show the WPF UI.I don't know if t's possible to use a condition for setting this variable. From:

[WiX-users] error: system cannot open the device or file specified

2013-05-16 Thread jo...@msli.com
I am trying to setup a new wix project, but I am running into a few problems and would love some help. Below I include links to my wxs, wxi, ant build, and install logs so that you may save me from this fiery hell. Link to resources:https://gist.github.com/johnstile/5595744 It includes: