Skip to content

Commit

Permalink
remove iis version check, fixes #3
Browse files Browse the repository at this point in the history
  • Loading branch information
ph1ll committed Nov 19, 2016
1 parent 97ec337 commit cc53f4f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Installer/Product.wxs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<!-- Ensure IIS is installed -->
<Property Id="IISVERSION">
<DirectorySearch Id="IISVersion" Path="[SystemFolder]\inetsrv">
<FileSearch Name="w3wp.exe" MinVersion="7.0" />
<FileSearch Name="w3wp.exe"/>
</DirectorySearch>
</Property>
<Condition Message="This module is only supported on systems running IIS 7.0 or above.">
Expand All @@ -35,7 +35,7 @@
<!-- Ensure appcmd is available to install and remove modules -->
<Property Id="APPCMDVERSION">
<DirectorySearch Id="APPCMDVersion" Path="[SystemFolder]\inetsrv">
<FileSearch Name="appcmd.exe" MinVersion="7.0" />
<FileSearch Name="appcmd.exe" />
</DirectorySearch>
</Property>
<Condition Message="This module requires the IIS appcmd.exe command line tool in order to enable the module.">
Expand Down

0 comments on commit cc53f4f

Please sign in to comment.