How to connect to an HTTPS WebDAV Folder on Windows 7?

7

8

I'm trying to connect to an HTTPS WebDAV folder on Windows 7. I go to a "Computer" Explorer window, right click, and click "Add a Network Location." I follow the prompts and get "The folder you entered does not appear to be valid. Please choose another." It works fine on Windows XP. How do I make this work?

A Student at a University

Posted 2011-03-07T01:58:58.157

Reputation: 391

Did you create a second account to answer this? – user1686 – 2011-03-07T10:52:42.673

Answers

5

Instead of going through the GUI it said you should go to a command prompt and type in a command similar to this one:

net use * https://webdav.example.com:port/folder

It prompted me for a username and password and then mapped the drive.

I was able to access my files this way. Hope it works for you.

-Source

A Student at a University

Posted 2011-03-07T01:58:58.157

Reputation: 66

2Should that be net use * https://webdav.example.com:port/folder *? According to the docs, the second * means it should prompt for a password. – Ken Williams – 2013-07-17T20:59:24.760

3

This works for Windows 10:

net use drive_letter: \\sitename@ssl@port/folder/subfolder password /user:userID

The @port is the port number if required. For example

net use x: \\webdav.example.edu@ssl@5050/proj/xyz correct.horse.battery.staple /user:stu

Jim Constantine

Posted 2011-03-07T01:58:58.157

Reputation: 31

Thanks a lot !! The best answer here. I wonder why it doesn't work with GUI... – Konrad – 2019-10-24T13:44:18.667

2

Go to a "Computer" Explorer window, right click, and click "Add a Network Location.

In the dialog box you write like this

\\yourserverfqdn@SSL\folder

for example if your webdav URL is https://www.netshahr.com/tech should be

\\www.netshahr.com@SSL\tech

Notes:

Don't add 'https://' at start of you address

Your SSL certificate should be added to windows store if it is self signed.

Sometimes it fails at first time but with second try it works .

Omid Kosari

Posted 2011-03-07T01:58:58.157

Reputation: 349

1Now, how does get the certificate and add it to the store? – Felix – 2018-06-05T09:18:28.143

1

By default, the Webclient service is not running on windows 8.1+ client. But for windows 7 client this service is running by default.

So please try to start the WebClient service on windows 8.1+ client to check if it helps.

I just got it working by doing this =)

dark

Posted 2011-03-07T01:58:58.157

Reputation: 11

0

You can also use mklink in Windows 7+

mklink /J "%appdata%\Microsoft\Windows\Network Shortcuts\RemoteResourceName" \\remoteserver.com.pl@SSL@2078\DavWWWRoot

test30

Posted 2011-03-07T01:58:58.157

Reputation: 101