Mounting WebDAV drive in Windows Server 2012
I having problems mounting a webdav drive via explorer or cmd with the following command:
net use z: "https://.." /user:username password
System error 67 has occured.
The network name cannot be found.
Everything working fine on my other machines.
Thought I had to install the "Desktop Experience" Feature but cant find it in Server Manager / Add Features. I`ve already added the "Media Foundation" Feature and the "WebDAV Publishing" is even installed with IIS. I cant find the WebClient Service in services.msc.
Any suggestions, how enable client side webdav support?
webdav windows-server network-drive net-use
migrated from stackoverflow.com Nov 13 '12 at 19:33
This question came from our site for professional and enthusiast programmers.
add a comment |
I having problems mounting a webdav drive via explorer or cmd with the following command:
net use z: "https://.." /user:username password
System error 67 has occured.
The network name cannot be found.
Everything working fine on my other machines.
Thought I had to install the "Desktop Experience" Feature but cant find it in Server Manager / Add Features. I`ve already added the "Media Foundation" Feature and the "WebDAV Publishing" is even installed with IIS. I cant find the WebClient Service in services.msc.
Any suggestions, how enable client side webdav support?
webdav windows-server network-drive net-use
migrated from stackoverflow.com Nov 13 '12 at 19:33
This question came from our site for professional and enthusiast programmers.
add a comment |
I having problems mounting a webdav drive via explorer or cmd with the following command:
net use z: "https://.." /user:username password
System error 67 has occured.
The network name cannot be found.
Everything working fine on my other machines.
Thought I had to install the "Desktop Experience" Feature but cant find it in Server Manager / Add Features. I`ve already added the "Media Foundation" Feature and the "WebDAV Publishing" is even installed with IIS. I cant find the WebClient Service in services.msc.
Any suggestions, how enable client side webdav support?
webdav windows-server network-drive net-use
I having problems mounting a webdav drive via explorer or cmd with the following command:
net use z: "https://.." /user:username password
System error 67 has occured.
The network name cannot be found.
Everything working fine on my other machines.
Thought I had to install the "Desktop Experience" Feature but cant find it in Server Manager / Add Features. I`ve already added the "Media Foundation" Feature and the "WebDAV Publishing" is even installed with IIS. I cant find the WebClient Service in services.msc.
Any suggestions, how enable client side webdav support?
webdav windows-server network-drive net-use
webdav windows-server network-drive net-use
asked Nov 13 '12 at 15:03
electronico
migrated from stackoverflow.com Nov 13 '12 at 19:33
This question came from our site for professional and enthusiast programmers.
migrated from stackoverflow.com Nov 13 '12 at 19:33
This question came from our site for professional and enthusiast programmers.
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)
- Install Desktop Experience
server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience
- Start and set to Automatic WebClient Service
services > WebClient > Properties > Set from Manual to Automatic then start it
- Enable BasicAuthLevel in regedit
open regedit.exe and go to this key
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
set the DWORD value "BasicAuthLevel" to "1"
- reboot
- connect to your WebDAV
net use z: "https://.." /user:username password
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
add a comment |
Here is the solution to this problem for Windows Server 2016:
Install WebDAV-Redirector component via PowerShell
Install-WindowsFeature WebDAV-Redirector –Restart
Verify that WebDAV-Redirector is installed properly
Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize
WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.
Reboot
All credits for this answers goes to IT Bros.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f505191%2fmounting-webdav-drive-in-windows-server-2012%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)
- Install Desktop Experience
server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience
- Start and set to Automatic WebClient Service
services > WebClient > Properties > Set from Manual to Automatic then start it
- Enable BasicAuthLevel in regedit
open regedit.exe and go to this key
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
set the DWORD value "BasicAuthLevel" to "1"
- reboot
- connect to your WebDAV
net use z: "https://.." /user:username password
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
add a comment |
Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)
- Install Desktop Experience
server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience
- Start and set to Automatic WebClient Service
services > WebClient > Properties > Set from Manual to Automatic then start it
- Enable BasicAuthLevel in regedit
open regedit.exe and go to this key
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
set the DWORD value "BasicAuthLevel" to "1"
- reboot
- connect to your WebDAV
net use z: "https://.." /user:username password
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
add a comment |
Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)
- Install Desktop Experience
server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience
- Start and set to Automatic WebClient Service
services > WebClient > Properties > Set from Manual to Automatic then start it
- Enable BasicAuthLevel in regedit
open regedit.exe and go to this key
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
set the DWORD value "BasicAuthLevel" to "1"
- reboot
- connect to your WebDAV
net use z: "https://.." /user:username password
Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)
- Install Desktop Experience
server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience
- Start and set to Automatic WebClient Service
services > WebClient > Properties > Set from Manual to Automatic then start it
- Enable BasicAuthLevel in regedit
open regedit.exe and go to this key
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
set the DWORD value "BasicAuthLevel" to "1"
- reboot
- connect to your WebDAV
net use z: "https://.." /user:username password
edited Jan 26 '15 at 18:28
Enigma
2,31183359
2,31183359
answered Jan 26 '15 at 17:39
penzoiderspenzoiders
8616
8616
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
add a comment |
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
you can use also the Windows Explorer "Map Network Drive" feature with same results
– penzoiders
Jan 26 '15 at 17:44
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
for some reason this worked on one machine, the other one gives me SystemError 53.... Windows ...
– spankmaster79
Sep 28 '16 at 14:48
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
this works, thank you! but the registry hack is not necessary, at least on windows server 2012 R2, if the webdav server supports digest authentication.
– Kemal Erdogan
Jun 21 '17 at 8:01
add a comment |
Here is the solution to this problem for Windows Server 2016:
Install WebDAV-Redirector component via PowerShell
Install-WindowsFeature WebDAV-Redirector –Restart
Verify that WebDAV-Redirector is installed properly
Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize
WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.
Reboot
All credits for this answers goes to IT Bros.
add a comment |
Here is the solution to this problem for Windows Server 2016:
Install WebDAV-Redirector component via PowerShell
Install-WindowsFeature WebDAV-Redirector –Restart
Verify that WebDAV-Redirector is installed properly
Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize
WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.
Reboot
All credits for this answers goes to IT Bros.
add a comment |
Here is the solution to this problem for Windows Server 2016:
Install WebDAV-Redirector component via PowerShell
Install-WindowsFeature WebDAV-Redirector –Restart
Verify that WebDAV-Redirector is installed properly
Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize
WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.
Reboot
All credits for this answers goes to IT Bros.
Here is the solution to this problem for Windows Server 2016:
Install WebDAV-Redirector component via PowerShell
Install-WindowsFeature WebDAV-Redirector –Restart
Verify that WebDAV-Redirector is installed properly
Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize
WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.
Reboot
All credits for this answers goes to IT Bros.
answered Dec 22 '18 at 21:56
SuncatcherSuncatcher
3631315
3631315
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f505191%2fmounting-webdav-drive-in-windows-server-2012%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown