Beytan Kurt
Beytan Kurt

Reputation: 2263

Use WebDav in Sharepoint 2010

I have done some research, based on the problem that my single server gives me when I try to open a document library in windows explorer from the ribbon menu item "Open in Windows Explorer".

The same problem occurs when I try to map sharepoint to a folder in windows explorer too.

The error is:

Your client does not support opening this list with Windows Explorer

From the net, suggestions are:

  • (Since I'm trying this operation from server itself) enable Desktop Experience
  • Install the KB907306 update.
  • Enable IIS webDav service (Some say, it's just for additional functions from the MS Whitepaper)
  • (Edit) Started webClient service

I've already done them. Nothing changed. Proper machine restart and iis too have done.

Need some serious advice.

Thanks in advance.

Upvotes: 1

Views: 11032

Answers (5)

Briann
Briann

Reputation: 1

This issue nearly killed me. I found that I was using a 64 bit version of my browser and that is'nt supported. I changed over to the 32 bit and it works.

Upvotes: 0

Praveen Kumar Thalluri
Praveen Kumar Thalluri

Reputation: 1147

Make sure that WebClient windows service is running in the server. This shall appear in client operating systems like Windows 7, windows 8 however, on the server operating systems like Windows Server 2008, it shall be installed by enabling the server feature "Desktop experience" using Server Manager

Upvotes: 0

edelwater
edelwater

Reputation: 2802

  • make sure your webdav is installed as feature

  • make the following registry fix (http://support.microsoft.com/kb/841215) :

    1. HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebClient\Parameters
    2. Add a new DWORD "BasicAuthLevel" and change this to "2"

Restart your machine (and make sure it is enabled in IIS)

Upvotes: 0

alirobe
alirobe

Reputation: 906

  • If you are trying to do this from the server, test it from a server which is not on the SharePoint farm (or better yet, a client machine). Ensure all of your testing is done from machines which are not on the farm.

  • Do NOT enable the IIS WebDAV service, as SharePoint provides its own WebDAV service and the IIS one overrides it in the pipeline. Enabling this service is a sure path to breaking WebDAV.

  • If you have SSL enabled, you may be in for a rough time getting it to work. Start by understanding how to use the 'net use' command, and the @SSL suffix.

Upvotes: 0

Luke
Luke

Reputation: 1870

Not sure if we are having exactly the same problem BUT I have had similar problem while accessing SP via Windows Explorer in Windows Server 2k8.

What I done to fix it is following:

  • Install new server feature called Desktop Experience (it comes with WebDAV redirector, which allows you to connect to WebDAV) - Note: Server will need to be restarted.
  • In Services start WebClient service (go to properties and make sure it starts automatically)

You will now be able to access your sharepoint via entering network path such as \sharepointhost\application\myawesomeapplication\ etc.

Hope that helps.

Upvotes: 3

Related Questions