Windows Authentication する適当な ASP .Net を作る方法。

  1. IIS インストールする
  2. Windows Authentication と ASP.NET 有効にする
  3. wwwroot に適当にフォルダ掘る
  4. Default.aspx を置く
     <%=http://User.Identity.Name%>
    
  5. web.config を描く
     <?xml version="1.0" encoding="utf-8"?>
     <configuration>
       <system.web>
         <authentication mode="Windows" />
       </system.web>
     </configuration>
    
  6. IIS Manager で該当のディレクトリを右クリック、Convert to Application する Convert to Application
  7. Authentication のメニューから Anonymous Authentication を Disabled、Windows Authentication を Enable にする

    Autentication menu Authentication method

  8. ブラウザで開けば Dialog も出ずに自分の user name がでると authenticated

Reference

https://support.microsoft.com/ja-jp/help/323176/how-to-implement-windows-authentication-and-authorization-in-asp-net なんだけどあんまり参考にならなかった。。