I'm in task of migrating our product's installer from InstallShield to WiX.
To deploy web applications, the previous developers used Custom Actions (written in C#) in InstallShield. In Wix, this is no longer necessary because wix supports IIS deployment.
Anyway, one of the code in the Custom Action uses the DirectoryEntry object to set the property of a Web Directory:
DirectoryEntry.Properties["AuthNTLM"][0] = true;
What does this setting do? I know it has something to do with security/permission, but what setting does it actually set in IIS? Does it enable one of the following:
- Integrated Windows Authentication
- Digest Authentication
- Basic Authentication
- .NET Passport Authentication
Thanks!