Mounting WebDAV drive in Windows Server 2012












8















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?










share|improve this question













migrated from stackoverflow.com Nov 13 '12 at 19:33


This question came from our site for professional and enthusiast programmers.




















    8















    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?










    share|improve this question













    migrated from stackoverflow.com Nov 13 '12 at 19:33


    This question came from our site for professional and enthusiast programmers.


















      8












      8








      8


      3






      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      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.
























          3 Answers
          3






          active

          oldest

          votes


















          8














          Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)




          1. Install Desktop Experience


          server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience




          1. Start and set to Automatic WebClient Service


          services > WebClient > Properties > Set from Manual to Automatic then start it




          1. Enable BasicAuthLevel in regedit


          open regedit.exe and go to this key
          HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters



          set the DWORD value "BasicAuthLevel" to "1"




          1. reboot

          2. connect to your WebDAV


          net use z: "https://.." /user:username password






          share|improve this answer


























          • 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



















          0














          Here is the solution to this problem for Windows Server 2016:





          1. Install WebDAV-Redirector component via PowerShell



            Install-WindowsFeature WebDAV-Redirector –Restart



          2. Verify that WebDAV-Redirector is installed properly



            Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize


          3. WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.


          4. Reboot



          All credits for this answers goes to IT Bros.






          share|improve this answer































            0














            For a Server 2012R2 Essentials, penzoiders' answer does not work because Essentials does not have the server manager and I couldn't find a way to install the Desktop Experience through Dashboard.



            However, the installation via PowerShell described in the IT Bros link in Suncatcher's answer also works on Server 2012R2 Essentials:



            Install-WindowsFeature Desktop-Experience


            Right after the reboot I was finally able to mount Magentacloud via WebDAV.






            share|improve this answer























              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
              });


              }
              });














              draft saved

              draft discarded


















              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
























              3 Answers
              3






              active

              oldest

              votes








              3 Answers
              3






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes









              8














              Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)




              1. Install Desktop Experience


              server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience




              1. Start and set to Automatic WebClient Service


              services > WebClient > Properties > Set from Manual to Automatic then start it




              1. Enable BasicAuthLevel in regedit


              open regedit.exe and go to this key
              HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters



              set the DWORD value "BasicAuthLevel" to "1"




              1. reboot

              2. connect to your WebDAV


              net use z: "https://.." /user:username password






              share|improve this answer


























              • 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
















              8














              Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)




              1. Install Desktop Experience


              server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience




              1. Start and set to Automatic WebClient Service


              services > WebClient > Properties > Set from Manual to Automatic then start it




              1. Enable BasicAuthLevel in regedit


              open regedit.exe and go to this key
              HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters



              set the DWORD value "BasicAuthLevel" to "1"




              1. reboot

              2. connect to your WebDAV


              net use z: "https://.." /user:username password






              share|improve this answer


























              • 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














              8












              8








              8







              Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)




              1. Install Desktop Experience


              server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience




              1. Start and set to Automatic WebClient Service


              services > WebClient > Properties > Set from Manual to Automatic then start it




              1. Enable BasicAuthLevel in regedit


              open regedit.exe and go to this key
              HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters



              set the DWORD value "BasicAuthLevel" to "1"




              1. reboot

              2. connect to your WebDAV


              net use z: "https://.." /user:username password






              share|improve this answer















              Just solved this on a 2012 R2 for connecting a WebDAV drive from OwnCloud 7 server via HTTPS (think it's same on 2012)




              1. Install Desktop Experience


              server manager > Add Features > User Interfaces and Infrastructure > Desktop Experience




              1. Start and set to Automatic WebClient Service


              services > WebClient > Properties > Set from Manual to Automatic then start it




              1. Enable BasicAuthLevel in regedit


              open regedit.exe and go to this key
              HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters



              set the DWORD value "BasicAuthLevel" to "1"




              1. reboot

              2. connect to your WebDAV


              net use z: "https://.." /user:username password







              share|improve this answer














              share|improve this answer



              share|improve this answer








              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



















              • 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













              0














              Here is the solution to this problem for Windows Server 2016:





              1. Install WebDAV-Redirector component via PowerShell



                Install-WindowsFeature WebDAV-Redirector –Restart



              2. Verify that WebDAV-Redirector is installed properly



                Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize


              3. WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.


              4. Reboot



              All credits for this answers goes to IT Bros.






              share|improve this answer




























                0














                Here is the solution to this problem for Windows Server 2016:





                1. Install WebDAV-Redirector component via PowerShell



                  Install-WindowsFeature WebDAV-Redirector –Restart



                2. Verify that WebDAV-Redirector is installed properly



                  Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize


                3. WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.


                4. Reboot



                All credits for this answers goes to IT Bros.






                share|improve this answer


























                  0












                  0








                  0







                  Here is the solution to this problem for Windows Server 2016:





                  1. Install WebDAV-Redirector component via PowerShell



                    Install-WindowsFeature WebDAV-Redirector –Restart



                  2. Verify that WebDAV-Redirector is installed properly



                    Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize


                  3. WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.


                  4. Reboot



                  All credits for this answers goes to IT Bros.






                  share|improve this answer













                  Here is the solution to this problem for Windows Server 2016:





                  1. Install WebDAV-Redirector component via PowerShell



                    Install-WindowsFeature WebDAV-Redirector –Restart



                  2. Verify that WebDAV-Redirector is installed properly



                    Get-WindowsFeature WebDAV-Redirector | Format-Table –Autosize


                  3. WebClient service should appear in your system. By default it is started in Manual mode, just set it to Automatic and that's it.


                  4. Reboot



                  All credits for this answers goes to IT Bros.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Dec 22 '18 at 21:56









                  SuncatcherSuncatcher

                  3801315




                  3801315























                      0














                      For a Server 2012R2 Essentials, penzoiders' answer does not work because Essentials does not have the server manager and I couldn't find a way to install the Desktop Experience through Dashboard.



                      However, the installation via PowerShell described in the IT Bros link in Suncatcher's answer also works on Server 2012R2 Essentials:



                      Install-WindowsFeature Desktop-Experience


                      Right after the reboot I was finally able to mount Magentacloud via WebDAV.






                      share|improve this answer




























                        0














                        For a Server 2012R2 Essentials, penzoiders' answer does not work because Essentials does not have the server manager and I couldn't find a way to install the Desktop Experience through Dashboard.



                        However, the installation via PowerShell described in the IT Bros link in Suncatcher's answer also works on Server 2012R2 Essentials:



                        Install-WindowsFeature Desktop-Experience


                        Right after the reboot I was finally able to mount Magentacloud via WebDAV.






                        share|improve this answer


























                          0












                          0








                          0







                          For a Server 2012R2 Essentials, penzoiders' answer does not work because Essentials does not have the server manager and I couldn't find a way to install the Desktop Experience through Dashboard.



                          However, the installation via PowerShell described in the IT Bros link in Suncatcher's answer also works on Server 2012R2 Essentials:



                          Install-WindowsFeature Desktop-Experience


                          Right after the reboot I was finally able to mount Magentacloud via WebDAV.






                          share|improve this answer













                          For a Server 2012R2 Essentials, penzoiders' answer does not work because Essentials does not have the server manager and I couldn't find a way to install the Desktop Experience through Dashboard.



                          However, the installation via PowerShell described in the IT Bros link in Suncatcher's answer also works on Server 2012R2 Essentials:



                          Install-WindowsFeature Desktop-Experience


                          Right after the reboot I was finally able to mount Magentacloud via WebDAV.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Jan 15 at 20:46









                          mowmow

                          1




                          1






























                              draft saved

                              draft discarded




















































                              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.




                              draft saved


                              draft discarded














                              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





















































                              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







                              Popular posts from this blog

                              Plaza Victoria

                              In PowerPoint, is there a keyboard shortcut for bulleted / numbered list?

                              How to put 3 figures in Latex with 2 figures side by side and 1 below these side by side images but in...