[WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Tom -
Good afternoon, I am creating a database installation. First I try to migrate a database from SQL 2005 to SQL 2008, but should no database be on a SQL 2005 on the machine, I am installing a new one. To make this happen, I thought I'll put a backup file into the TempFolder and reference that

[WiX-users] Error 2902: Operation ixfAssemblyCopy called out of sequence.

2013-05-28 Thread andy smith
Hi, I have a wix 3.6 install using burn. One of my MSIPackages (SharedDX.msi) within the setup fails to install. In the overall log I get.. [0814:0E98][2013-05-28T11:15:54]: Applying execute package: msi_SharedDX, action: Install, path: C:\Documents and Settings\All Users\Application

Re: [WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Pally Sandher
Which Temp directory are you looking in? The TempFolder property page on MSDN says Windows Installer uses the GetTempPath function to retrieve the path -http://msdn.microsoft.com/en-us/library/aa372067.aspx GetTempPath retrieves the first valid path stored in certain environment variables in

Re: [WiX-users] Heat -ke error (empty directories)

2013-05-28 Thread Pally Sandher
1 - use the -suid flag with heat.exe to make your id's more readable. 2 - what's the Component throwing that error actually contain? The opening tag doesn't actually give enough info by itself. 3 - heat.exe isn't designed to be used directly after generation. You will more often than not have to

Re: [WiX-users] Checking Edit field for minimum length

2013-05-28 Thread Pally Sandher
I think you'd need to pass the property to a Custom Action to check that. The only things you can do in Conditional Statements are listed at http://msdn.microsoft.com/en-us/library/windows/desktop/aa368012.aspx and I can't see anything which you could use there to test for the length of the

Re: [WiX-users] Heat -ke error (empty directories)

2013-05-28 Thread BGINFO4X
Hello again, I need your help. The problem with heat -ke + light seems to be related to the fact that the guid of empty directories can't be an *. It must be a normal GUID, so light doesn't crash with the error LGHT0230. Do you know how to create a GUID (not *) for empty directories with heat

Re: [WiX-users] Unhandled exception

2013-05-28 Thread Pally Sandher
Try building your Bundle using the x86 platform rather than x64. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated Environmental Solutions Limited.

Re: [WiX-users] Error code 2727 when selecting path in PathEdit control

2013-05-28 Thread Pally Sandher
http://msdn.microsoft.com/en-us/library/aa372835.aspx says error 2727 is The directory entry '[2]' does not exist in the Directory table. Without the log entries relating to this error there's only speculation and conjecture. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945

Re: [WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Tom -
True. The custom action uses: TempDir = session.GetTargetPath(TempFolder); According to the msiexec-log: MSI (c) (70:88) [14:19:49:505]: Dir (target): Key: TempFolder , Object: C:\Users\Tom\AppData\Local\Temp\ And according to my log-messages from within the custom action that does

Re: [WiX-users] Heat -ke error (empty directories)

2013-05-28 Thread Pally Sandher
No it's not a bug. See #3 from my previous message. Then read it again until you understand it. Palbinder Sandher Software Platform Engineer T: +44 (0) 141 945 8500 F: +44 (0) 141 945 8501 http://www.iesve.com **Design, Simulate + Innovate with the Virtual Environment** Integrated

Re: [WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Pally Sandher
From your InstallExecuteSequence code it looks like the Custom Actions should be called after the file is written to TempFolder. InstallFiles should be long before your Custom Actions but I would double check by opening the generated MSI in InstEd! or Orca (or any other package which you can

[WiX-users] Wix Windows Service installer depdendent on SQL Server

2013-05-28 Thread Freedman, Mark P.
I'm looking to make a wix installer for a service that will be dependent on sql server. The name of the SQL Server service is dependent on the name of the SQL instance and other things. In a windows depoloyment project, I'm scanning the list of services that start with MSSQL$ and setting them

[WiX-users] embed manifest to elevate automatically bootstrapper, and why it is required

2013-05-28 Thread Benjamin Mayrargue
Hi all, i've read posts saying that wix bootstrapper will never run elevated by design and because of a political decision. Quote from http://msdn.microsoft.com/en-us/library/bb756929.aspx In future releases, the only way to run an application elevated will be to have a signed application

Re: [WiX-users] embed manifest to elevate automatically bootstrapper, and why it is required

2013-05-28 Thread Rob Mensching
I think you have that backwards. Burn does *not* elevate up front and will only elevate when necessary following the Microsoft guidelines. On Tue, May 28, 2013 at 8:09 AM, Benjamin Mayrargue benja...@vapolia.frwrote: Hi all, i've read posts saying that wix bootstrapper will never run elevated

Re: [WiX-users] WiX-users Digest, Vol 84, Issue 108

2013-05-28 Thread Rob Mensching
I think there is a bug open on this issue. On Mon, May 27, 2013 at 8:52 PM, narendra kumar naren...@gmail.com wrote: Hello , I've created a managed bootstrapper in WPF using Wix 3.7, the bundle installs .net 4.0 as a pre requisite before installing my .msi package, the bootstrapper reboots

Re: [WiX-users] Error 2902: Operation ixfAssemblyCopy called out of sequence.

2013-05-28 Thread Rob Mensching
Have you modified the InstallExecuteSequence in your MSI? On Tue, May 28, 2013 at 5:32 AM, andy smith andysmi...@gmail.com wrote: Hi, I have a wix 3.6 install using burn. One of my MSIPackages (SharedDX.msi) within the setup fails to install. In the overall log I get..

Re: [WiX-users] Error 2902: Operation ixfAssemblyCopy called out of sequence.

2013-05-28 Thread andy smith
No. I didn't know this was something I needed to do haven't done so before... On Tue, May 28, 2013 at 4:22 PM, Rob Mensching r...@robmensching.com wrote: Have you modified the InstallExecuteSequence in your MSI? On Tue, May 28, 2013 at 5:32 AM, andy smith andysmi...@gmail.com wrote:

Re: [WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Edwin Castro
The custom action will execute before file copy if it is an immediate custom action rather than deferred. -- Edwin G. Castro On Tue, May 28, 2013 at 7:05 AM, Pally Sandher pally.sand...@iesve.comwrote: From your InstallExecuteSequence code it looks like the Custom Actions should be called

Re: [WiX-users] Putting File in TempFolder - Nothing Happens

2013-05-28 Thread Hoover, Jacob
And installing something to the temp folder would be bad... -Original Message- From: Edwin Castro [mailto:egca...@gmail.com] Sent: Tuesday, May 28, 2013 10:56 AM To: General discussion for Windows Installer XML toolset. Subject: Re: [WiX-users] Putting File in TempFolder - Nothing

Re: [WiX-users] Error 2902: Operation ixfAssemblyCopy called out of sequence.

2013-05-28 Thread Phil Wilson
Try doing a build with loose uncompressed files and see if it installs ok. It may be something to do with the sizes of the individual files or the CAB file. Phil -Original Message- From: andy smith [mailto:andysmi...@gmail.com] Sent: Tuesday, May 28, 2013 8:58 AM To: General discussion

[WiX-users] How to install Net Framework 3.5 on WIndows 8 Without Internet connection and Windows 8 DVD

2013-05-28 Thread Marco Tognacci
I have a burn setup that I have installe using Net Framework 4.0 as a prerequisite.If I install on Windows 8 all the setup works well, but I need to have the Net framework 2.0 installed on the pc to make one of the programs that I have installed working fine.After installation if I try to run

Re: [WiX-users] Heat - Include question

2013-05-28 Thread Mike Carlson
It's not a good idea for your application to write to allow non-elevated users to write to its installed application folder under program files folder. Allowing users to overwrite the application binaries is a security hole for any customers who might have untrusted users on the machine. Did you

[WiX-users] Create Apppool set up IIS for website

2013-05-28 Thread chennam
Hi Until now I got familiar on how to create a folder which has all the website content through MSI .Now I need to start on Creating the App-pool setup IIS for the site Dynamically while Installation; where I am going to pass the Identity values (username/PWD) for app-pool setup as Property .

[WiX-users] HEAT1108 warning

2013-05-28 Thread Phill Hogland
I am trying to learn WiX (and MSI, with a background in non-MSI setup development). I hope to contribute to the WiX community at some point, but for now I am experimenting with heat.exe and dark.exe as I learn. There are various examples of using heat.exe which have command line switches that

Re: [WiX-users] Error 2902: Operation ixfAssemblyCopy called out of sequence.

2013-05-28 Thread Rob Mensching
You shouldn't modify InstallExecuteSequence, that's why I asked if you did it. smile/ The MSI SDK says the following about error 2902: May indicate that the installation of Win32

Re: [WiX-users] Create Apppool set up IIS for website

2013-05-28 Thread Rob Mensching
WebAppPool element? On Tue, May 28, 2013 at 1:14 PM, chennam chatrapathi.chen...@gmail.comwrote: Hi Until now I got familiar on how to create a folder which has all the website content through MSI .Now I need to start on Creating the App-pool setup IIS for the site Dynamically while

Re: [WiX-users] Create Apppool set up IIS for website

2013-05-28 Thread chennam
Yes creating the WebAppPool and setting up the site(configuration) during Installation and Deleting the Apppool and the Site which was setup during Uninstall of MSI. Thanks Chatra -- View this message in context:

Re: [WiX-users] How to install Net Framework 3.5 on WIndows 8 Without Internet connection and Windows 8 DVD

2013-05-28 Thread Neil Sleightholm
Afraid it is not possible. Have you considered running your .NET 2.0 app in 4.0 using this in app.config: startup useLegacyV2RuntimeActivationPolicy=true supportedRuntime version=v4.0 / supportedRuntime version=v2.0.50727/ /startup It doesn't always work but might be worth trying.