Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Under the hood, it will add back the module called "DasIIS7Native" into web.config file. For instance, you protected owa applicationhave owa node enabled with DualShield 2FA. In IIS Manager, locate that the owa node, right click it, then choose "Explore"

...

It will bring you to the physical folder, C:\Program Files\Microsoft\Exchange Server\V15\FrontEnd\HttpProxy\owa. Open web.config, you should see that module. "DasIIS7Native" in the modules list, as illustrated below.

Code Block
languagexml
firstline1
titleweb.config sample
linenumberstrue
collapsetrue
<?xml version="1.0" encoding="UTF-8"?>
<configuration
<!-- .... -->
<configSections>
<section name="microsoft.identityModel" type="Microsoft.IdentityModel.Configuration.MicrosoftIdentityModelSection, Microsoft.IdentityModel, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
</configSections>
<location inheritInChildApplications="false">
<system.webServer>
<serverRuntime appConcurrentRequestLimit="65535" uploadReadAheadSize="0"/>
<modules>
<add name="DasIIS7Native"/>
<!-- .... -->
</modules>
</system.webServer>
</location>
<!-- .... -->
</configuration>

...