On the official SharePoint blog you can find a blogpost that states SharePoint 2013 is RTM. Woop Woop…
Category: IIS
Sharepoint 2013 preview is here…!
Yes that’s right… A preview version of SharePoint 2013 is out and the homework that’s come with it, also arrived.
Checkout the download links…
Exam 70-668 PRO: Microsoft SharePoint 2010, Administrator
Today I passed this exam with 815 points. So I can call myself:
Yeah, still adaptive enough. 😉
Kernel-mode authentication with a domain account
You may know that kernel-mode authentication is faster then user-mode authentication. You also may know that when you have a webfarm, network service isn’t the “user” you can use for kernel-mode authentication. With thew following command you can configure that the application pool user is used for kernel-mode authentication.
%windir%\system32\inetsrv\appcmd.exe set config -section:system.webServer/security/authentication/windowsAuthentication -useAppPoolCredentials:true
This wil result in the following configuration in the applicationHost.config
<system.webServer> Â Â <security> Â Â Â Â Â <authentication> Â Â Â Â Â Â Â Â <windowsAuthentication enabled="true" useAppPoolCredentials="true" /> Â Â Â Â Â </authentication> Â Â </security> </system.webServer>
You can configure this at the webserver/website/application level.