Peter van der Woude Posted December 9, 2009 Report post Posted December 9, 2009 That's why you can install WebDAV as a part of your IIS installation in Windows Server 2008 R2 (by adding Roles and Features) Quote Share this post Link to post Share on other sites More sharing options...
iqaruzz Posted May 27, 2010 Report post Posted May 27, 2010 I thought I should share my experience with WebDav. Just recently installed Server 2008 R2.. I couldnt make SCCM work well with webdav. Also discovered that WebDav_schema.xml is not updating even though you have changed it in MMC IIS console. To fix this.. navigate to %windir%\System32\inetsrv\config\schema take ownership of webdav_schema.xml remove the readonly attributes edit them to these: <attribute name="allowAnonymousPropfind" type="bool" defaultValue="true" /> <attribute name="allowInfinitePropfindDepth" type="bool" defaultValue="true" /> <attribute name="allowCustomProperties" type="bool" defaultValue="false" /> save it and continue with sccm. it worked for me. Quote Share this post Link to post Share on other sites More sharing options...
BenjAdmin Posted June 20, 2010 Report post Posted June 20, 2010 I thought I should share my experience with WebDav. Just recently installed Server 2008 R2.. I couldnt make SCCM work well with webdav. Also discovered that WebDav_schema.xml is not updating even though you have changed it in MMC IIS console. To fix this.. navigate to %windir%\System32\inetsrv\config\schema take ownership of webdav_schema.xml remove the readonly attributes edit them to these: <attribute name="allowAnonymousPropfind" type="bool" defaultValue="true" /> <attribute name="allowInfinitePropfindDepth" type="bool" defaultValue="true" /> <attribute name="allowCustomProperties" type="bool" defaultValue="false" /> save it and continue with sccm. it worked for me. Thanks, This solved my problem in my testenvironment. Quote Share this post Link to post Share on other sites More sharing options...
Vertexx Posted December 23, 2011 Report post Posted December 23, 2011 Start IIS Manager. Select the server and select Stop from the actions. Start Explorer and navigate to C:\Windows\System32\inetsrv\config\schema. Right-click WebDAV_schema.xml and select Properties. Select the Security tab and click the Advanced button. Select the Owner tab and click Edit. Change the owner to administrators so the permissions can be changed. Select the Permissions tab and grant your user or administrators Full Control via the Change Permissions button. Click OK. Open the WebDAV_schema.xml file in Notepad. Find the area below and make sure the values are set as shown: <attribute name="allowAnonymousPropfind" type="bool" defaultValue="true" /> <attribute name="allowInfinitePropfindDepth" type="bool" defaultValue="true" /> <attribute name="allowCustomProperties" type="bool" defaultValue="false" /> Click Save. Start the IIS service in IIS Manager. Quote Share this post Link to post Share on other sites More sharing options...