Creating the WebSite using WIX includes some simple issues as we some time cannot expect the QA, UAT and Prod environment Installation and their topology.
As we know there is simple way to create WebSite and Virtual Directoy using wix, Extension of this targets creating without any issues irrespective of Website name Port, IP address
<component directory="TARGETDIR" guid="{FED64D24-10B1-4c3f-BA53-2D1074E6FAB4}" id="MPCWebSite">
<condition>"*" ]]> OR 80 ]]></condition><webapppool id="AppPool1" identity="networkService" name="[TARGETPOOL]"></webapppool>
<website configureifexists="no" description="[WEBSITENAME]" directory="TARGETDIR" id="DefWebSite1" startoninstall="yes">
<webaddress id="WebSiteTCPAddress1" ip="[TARGETWEBSITEIP]" port="[TARGETPORT]"></webaddress>
<webdirproperties anonymousaccess="no" basicauthentication="yes" id="websiteProperties1" read="yes" script="yes" write="yes"></webdirproperties><webvirtualdir alias="[VIRTUALDIRNAME]" directory="MPCGov" id="MPCVDir1">
<webdirproperties anonymousaccess="no" defaultdocuments="default.aspx,default.asp,default.htm,index.htm,iisstart.htm" execute="no" id="AccessAll1" index="yes" logvisits="yes" read="yes" script="yes" windowsauthentication="yes" write="no"></webdirproperties>
<webapplication id="VDirWebApplication1" name="[VIRTUALDIRNAME]" webapppool="AppPool1"></webapplication>
</webvirtualdir>
</website>
</component><component directory="TARGETDIR" guid="{7019D0ED-1EEF-4ac5-8CE3-DF1E385895EB}" id="MPCVDir">
<condition>
</condition><webapppool id="AppPool" identity="networkService" name="[TARGETPOOL]"></webapppool>
<webvirtualdir alias="[VIRTUALDIRNAME]" directory="MPCGov" id="MPCVDir" website="DefWebSite">
<webdirproperties anonymousaccess="no" defaultdocuments="default.aspx,default.asp,default.htm,index.htm,iisstart.htm" execute="no" id="AccessAll" index="yes" logvisits="yes" read="yes" script="yes" windowsauthentication="yes" write="no"></webdirproperties>
<webapplication id="VDirWebApplication" name="[VIRTUALDIRNAME]" webapppool="AppPool"></webapplication>
</webvirtualdir>
</component><website description="[WEBSITENAME]" id="DefWebSite">
<webaddress id="WebSiteTCPAddress" ip="[TARGETWEBSITEIP]" port="[TARGETPORT]"></webaddress>
</website>
This shows that for Port 80 and for Default IP (*), perform oneway of configuration as this is already existing. for that we need to use the Website ID so in the last statemetn, we have Tag webSite referencing the same.
For others, we create and use the existing Website.
If you have someother Port or IP as default, then you can accept that and update the CDATA conditions accordingly.
Happy coding.
You can always use appcmd.exe on top to configure explict settings…
I know this is a oooold post.. but is there a way to conditionally set windowsauthentication?
or is it simply a case of making the whole component that creates the virtual dir conditional?