I am creating an installer for an ASP.Net website using WiX. How do you set the ASP.Net version in IIS using WiX?
|
|
We use this: First determine the .Net framework root directory from the registry:
Then, inside the component that installs your website in IIS:
For an x64 installer (THIS IS IMPORTANT) Add Win64='yes' to the registry search, because the 32 bits environment on a 64 bits machine has a different registry hive (and a different frameworkroot)
|
|||
|
|
|
|
Here is what worked for me after wrestling with it:
[WEBSITEID] and [VIRTUALDIR] are properties you have to define yourself. [VIRTUALDIR] is only necessary if you are setting the ASP.NET version for an application rather than an entire website. The sequencing of the custom action is critical. Executing it before InstallFinalize will cause it to fail because the web application isn't available until after that. Thanks to Chris Burrows for a proper example of finding the aspnet_regiis executable (Google "Using WIX to Secure a Connection String"). jb |
||
|
|
|
I found a different way by using the WiX WebApplicationExtension. You can check out the full solution here and here. I like Wix so far, but man does it takes a lot of digging to find what you are looking for. |
||
|
|
|
Don't forget to enable ASP 2.0 on the server
|
||
|
|
|
|
I do something like this // declare Custom action <CustomAction Id="MakeWepApp20" Value="[NETFRAMEWORK20DIR]aspnet_regiis.exe" -sn "W3SVC/[WEBSITEIISID]/Root/" /> <InstalllExecuteSequence>
...
<Custom Action="MakeWepApp20" after="ConfigureIIs"> |
||
|
|
|
|
|
|||
|
|
|
|
But where can I get [WEBSITEID] of my site for command-line parameters of aspnet_regiis command? I found it is varies IIS by IIS from server to server... |
||
|
|
