Afraid it is not possible.
Have you considered running your .NET 2.0 app in 4.0 using this in app.config:
It doesn't always work but might be worth trying.
Neil
-Original Message-
From: Marco Tognacci [mailto:mark...@live.it]
Sent: 28 May 2013 19:12
To: wix-users@lists
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:
http://windows-installer-xml-wix-toolset.687559.n2.nabble.com/Create-Apppool-se
You shouldn't modify InstallExecuteSequence, that's why I asked if you did
it. <
The MSI SDK says the following about error 2902:
May indicate that the installation of Win32
assemblieswas
authored incorrectly. A Win32 side-by-side component may need a key
path.
Do you using Win32 SxS stuff in yo
WebAppPool element?
On Tue, May 28, 2013 at 1:14 PM, chennam wrote:
> 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 go
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 ar
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 .
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 i
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 th
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
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 Happens
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 wrote:
> >From your InstallExecuteSequence code it looks like the Custom Actions
> should be called after the file is writt
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 wrote:
> Have you modified the InstallExecuteSequence in your MSI?
>
>
> On Tue, May 28, 2013 at 5:32 AM, andy smith wrote:
>
> > Hi, I have a wix 3.6 install using b
I would not recommend restricting your deployment to the same server you are
installing on. SQL Server instances are expensive, and the likelihood you'll
be able to install your app and your database on the same server would be
unusual. Looking for whether the SQL services are active will rest
Have you modified the InstallExecuteSequence in your MSI?
On Tue, May 28, 2013 at 5:32 AM, andy smith 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..
>
> [0814:0E98][2013-05-28T11:15:54]
I think there is a bug open on this issue.
On Mon, May 27, 2013 at 8:52 PM, narendra kumar 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 the system af
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 wrote:
> Hi all,
> i've read posts saying that wix bootstrapper will never run elevated by
> design and b
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 manifes
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 as
>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
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 **
Integrated Environmental Solutions Limit
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
GetTar
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
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 **
Integrated Environmental Solutions Limited. Registered in Scotland No. S
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
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
Pro
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
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 t
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
Data\Packag
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 fi
29 matches
Mail list logo