Webdav windows 7 присоединенное к системе устройство не работает

Hi, I am an IT Consultant, but this is my first time setting up WebDAV for a client. I cannot figure out what I've done wrong and the client is getting impatient. Help will be much appreciated!

Hi, I am an IT Consultant, but this is my first time setting up WebDAV for a client. I cannot figure out what I’ve done wrong and the client is getting impatient. Help will be much appreciated!

I am trying to set up Secure WebDAV access to a file share on their file server (Windows Server 2012 (not R2)).

First off, why is there no straightforward documentation from Microsoft on how to share one folder via WebDAV?!  Why is this so complicated?   I understand some need granular control of settings, but geez, why can’t a newb just «flip a switch»
and share a folder via WebDAV?  Okay, rant over, please help me figure this out.

I followed these articles to install WebDAV, create Certificate Signing Request (CSR), create Root and SSL Certificates using OpenSSL, install the SSL Certificate into IIS on the server and bind to port 443, set Port Forwarding on their Verizon router for port
443 to the server’s LAN IP, and import the Root Certificate into the Trusted Root Certificate Store of the client PC.
http://advancedhomeserver.com/webdav-and-windows-server-2012/
http://advancedhomeserver.com/if-you-plan-to-use-ssl-read-this-first/
http://advancedhomeserver.com/making-a-pc-a-secure-webdav-server/
http://advancedhomeserver.com/iis-and-the-certificate-signing-request/
http://advancedhomeserver.com/openssl-and-your-root-certificate/
http://advancedhomeserver.com/domain-certificates-and-windows-server-2012/
http://advancedhomeserver.com/exporting-and-importing-root-certificates/
http://advancedhomeserver.com/webdav-and-windows-server-2012/

Verizon Static IP:  xxx.xxx.xxx.38
Server name: SERVER12
Domain:  COMPANYDOMAIN
Physical folder: E:TestWebDAV
Virtual directory: TestWebDAV

When I attempt to Map Network Drive using this path:  https://xxx.xxx.xxx.38/TestWebDAV

I get challenged, enter my domain username and password 2 or 3 times, and receive the following error. Same error if I use the administrator username/password.

   The mapped network drive could not be created because the following error has occurred:

   A device attached to the system is not functioning.

Note: I cannot use their domain name address (https:\www.companydomain.comTestWebDAV) since their website is hosted by an external provider.  I got them a Static IP address from Verizon and have Port Forwarding configured on the Verizon router for TCP
443.

============================================================
After I enabled Directory Browsing for the Default Web Site in IIS, I can now browse to https://localhost/TestWebDAV and its subfolders from within IIS, Internet Explorer, and Google Chrome on the server.

The problem occurs when I attempt to connect across the Internet.  I have tried to Map Network Drive from the client’s laptop (from my office) which is a member of the domain, and from my desktop PC.  Both are Windows 7.

============================================================

I followed these instructions for converting the Virtual Directory to an Application and associating a different application pool to the Application instead of using the DefaultAppPool:
http://blogs.msdn.com/b/benjaminperkins/archive/2013/08/01/setting-up-webdav-on-iis-using-windows-authentication-and-a-unc-mapped-drive-or-file-share.aspx

I ran thru the instructions a week ago, then reverted the changes when it did not get WebDAV working. I then discovered the SSL Certificate I had installed on the server had disappeared somehow. I reinstalled and re-did the binding, so I am now following the
instructions again, but:

I am stuck on the SETSPN commands, I cannot figure out what «accountname to use». I have tried:

SETSPN -L administrator
SETSPN -L COMPANYDOMAINadministrator
SETSPN -L SERVER12administrator

None are working now, although when I tried this previously, I got the SETSPN commands to work.

============================================================

As a sanity check, I had a friend create a WebDAv share on his website, which is hosted at hostgator.com

I can successfully Map Network Drive to:

https://gatorNNNN.hostgator.com:2078

using the username and password he set up for me.

So the problem getting WebAV working for my client is not my computer/router/firewall, etc.

I do wonder if I am formulating the URL correctly using the Static IP (https://xxx.xxx.xxx.38/TestWebDAV)?

============================================================
Server = Windows Server 2012 (not R2)

Roles — File Server / IIS / Desktop Experience feature added

Here are the things I have done already:

1. Created a test file share (TestWebDAV) with subfolders, some Full Control for the Sales group, others explicitly denied Full Control for the Sales group.  Exploring those same file shares from a LAN computer works fine: folders are either Read/Write
or «invisible» per their permissions.

2. Added webDAV/IIS role and created virtual directory, pointing to that file share.

3. Created WebDAV Authoring Rule and allowed all users to access all content.

4. At this point with basic configuration it failed, so then I tried other things.

 
5. Enabled Windows authentication, but have tried Basic and Digest.   Currently I’m allowing Windows Authentication only.

    
6. After I enabled Directory Browsing for the Default Web Site in IIS, I can now browse to https://localhost/TestWebDAV and its subfolders from within IIS, Internet Explorer, and Google Chrome ON SERVER12.  But when I attempt to Map Network Drive across
the Internet, I get the error  «A device attached to the system is not functioning».

7. Since I have the SSL cert on SERVER12 and the clients, i have enforced Use SSL only. The bindings are 80 and 443.  

8. I increased the Registry values:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
   FileAttributesLimitInBytes = 200000000
   FileSizeLimitInBytes = 4200000000

============================================================

Here is the bottom section of the applicationHost.config file in C:WindowsSystem32inetsrvconfig:

    </system.webServer>
    <location path=»Default Web Site»>
        <system.webServer>
            <security>
                <requestFiltering>
                    <fileExtensions applyToWebDAV=»false» />
                    <verbs applyToWebDAV=»false» />
                    <hiddenSegments applyToWebDAV=»false» />
                </requestFiltering>
                <authentication>
                    <windowsAuthentication enabled=»true» />
                    <anonymousAuthentication enabled=»false» />
                    <basicAuthentication enabled=»false» />
                    <digestAuthentication enabled=»false» />
                </authentication>
                <access sslFlags=»Ssl» />
            </security>
            <webdav>
                <authoring enabled=»true» requireSsl=»true» />
                <authoringRules>
                    <add users=»*» path=»*» access=»Read, Write, Source» />
                </authoringRules>
            </webdav>
        </system.webServer>
    </location>
    <location path=»Default Web Site/TestWebDAV»>
        <system.webServer>
            <security>
                <authentication>
                    <digestAuthentication enabled=»false» />
                    <basicAuthentication enabled=»false» />
                    <windowsAuthentication enabled=»true» useAppPoolCredentials=»true» />
                </authentication>
                <access sslFlags=»Ssl» />
            </security>
        </system.webServer>
    </location>

</configuration>

============================================================

Thank you very much for any assistance.  Let me know if you need more info.

Hi, I am an IT Consultant, but this is my first time setting up WebDAV for a client. I cannot figure out what I’ve done wrong and the client is getting impatient. Help will be much appreciated!

I am trying to set up Secure WebDAV access to a file share on their file server (Windows Server 2012 (not R2)).

First off, why is there no straightforward documentation from Microsoft on how to share one folder via WebDAV?!  Why is this so complicated?   I understand some need granular control of settings, but geez, why can’t a newb just «flip a switch»
and share a folder via WebDAV?  Okay, rant over, please help me figure this out.

I followed these articles to install WebDAV, create Certificate Signing Request (CSR), create Root and SSL Certificates using OpenSSL, install the SSL Certificate into IIS on the server and bind to port 443, set Port Forwarding on their Verizon router for port
443 to the server’s LAN IP, and import the Root Certificate into the Trusted Root Certificate Store of the client PC.
http://advancedhomeserver.com/webdav-and-windows-server-2012/
http://advancedhomeserver.com/if-you-plan-to-use-ssl-read-this-first/
http://advancedhomeserver.com/making-a-pc-a-secure-webdav-server/
http://advancedhomeserver.com/iis-and-the-certificate-signing-request/
http://advancedhomeserver.com/openssl-and-your-root-certificate/
http://advancedhomeserver.com/domain-certificates-and-windows-server-2012/
http://advancedhomeserver.com/exporting-and-importing-root-certificates/
http://advancedhomeserver.com/webdav-and-windows-server-2012/

Verizon Static IP:  xxx.xxx.xxx.38
Server name: SERVER12
Domain:  COMPANYDOMAIN
Physical folder: E:TestWebDAV
Virtual directory: TestWebDAV

When I attempt to Map Network Drive using this path:  https://xxx.xxx.xxx.38/TestWebDAV

I get challenged, enter my domain username and password 2 or 3 times, and receive the following error. Same error if I use the administrator username/password.

   The mapped network drive could not be created because the following error has occurred:

   A device attached to the system is not functioning.

Note: I cannot use their domain name address (https:\www.companydomain.comTestWebDAV) since their website is hosted by an external provider.  I got them a Static IP address from Verizon and have Port Forwarding configured on the Verizon router for TCP
443.

============================================================
After I enabled Directory Browsing for the Default Web Site in IIS, I can now browse to https://localhost/TestWebDAV and its subfolders from within IIS, Internet Explorer, and Google Chrome on the server.

The problem occurs when I attempt to connect across the Internet.  I have tried to Map Network Drive from the client’s laptop (from my office) which is a member of the domain, and from my desktop PC.  Both are Windows 7.

============================================================

I followed these instructions for converting the Virtual Directory to an Application and associating a different application pool to the Application instead of using the DefaultAppPool:
http://blogs.msdn.com/b/benjaminperkins/archive/2013/08/01/setting-up-webdav-on-iis-using-windows-authentication-and-a-unc-mapped-drive-or-file-share.aspx

I ran thru the instructions a week ago, then reverted the changes when it did not get WebDAV working. I then discovered the SSL Certificate I had installed on the server had disappeared somehow. I reinstalled and re-did the binding, so I am now following the
instructions again, but:

I am stuck on the SETSPN commands, I cannot figure out what «accountname to use». I have tried:

SETSPN -L administrator
SETSPN -L COMPANYDOMAINadministrator
SETSPN -L SERVER12administrator

None are working now, although when I tried this previously, I got the SETSPN commands to work.

============================================================

As a sanity check, I had a friend create a WebDAv share on his website, which is hosted at hostgator.com

I can successfully Map Network Drive to:

https://gatorNNNN.hostgator.com:2078

using the username and password he set up for me.

So the problem getting WebAV working for my client is not my computer/router/firewall, etc.

I do wonder if I am formulating the URL correctly using the Static IP (https://xxx.xxx.xxx.38/TestWebDAV)?

============================================================
Server = Windows Server 2012 (not R2)

Roles — File Server / IIS / Desktop Experience feature added

Here are the things I have done already:

1. Created a test file share (TestWebDAV) with subfolders, some Full Control for the Sales group, others explicitly denied Full Control for the Sales group.  Exploring those same file shares from a LAN computer works fine: folders are either Read/Write
or «invisible» per their permissions.

2. Added webDAV/IIS role and created virtual directory, pointing to that file share.

3. Created WebDAV Authoring Rule and allowed all users to access all content.

4. At this point with basic configuration it failed, so then I tried other things.

 
5. Enabled Windows authentication, but have tried Basic and Digest.   Currently I’m allowing Windows Authentication only.

    
6. After I enabled Directory Browsing for the Default Web Site in IIS, I can now browse to https://localhost/TestWebDAV and its subfolders from within IIS, Internet Explorer, and Google Chrome ON SERVER12.  But when I attempt to Map Network Drive across
the Internet, I get the error  «A device attached to the system is not functioning».

7. Since I have the SSL cert on SERVER12 and the clients, i have enforced Use SSL only. The bindings are 80 and 443.  

8. I increased the Registry values:
HKEY_LOCAL_MACHINESYSTEMCurrentControlSetServicesWebClientParameters
   FileAttributesLimitInBytes = 200000000
   FileSizeLimitInBytes = 4200000000

============================================================

Here is the bottom section of the applicationHost.config file in C:WindowsSystem32inetsrvconfig:

    </system.webServer>
    <location path=»Default Web Site»>
        <system.webServer>
            <security>
                <requestFiltering>
                    <fileExtensions applyToWebDAV=»false» />
                    <verbs applyToWebDAV=»false» />
                    <hiddenSegments applyToWebDAV=»false» />
                </requestFiltering>
                <authentication>
                    <windowsAuthentication enabled=»true» />
                    <anonymousAuthentication enabled=»false» />
                    <basicAuthentication enabled=»false» />
                    <digestAuthentication enabled=»false» />
                </authentication>
                <access sslFlags=»Ssl» />
            </security>
            <webdav>
                <authoring enabled=»true» requireSsl=»true» />
                <authoringRules>
                    <add users=»*» path=»*» access=»Read, Write, Source» />
                </authoringRules>
            </webdav>
        </system.webServer>
    </location>
    <location path=»Default Web Site/TestWebDAV»>
        <system.webServer>
            <security>
                <authentication>
                    <digestAuthentication enabled=»false» />
                    <basicAuthentication enabled=»false» />
                    <windowsAuthentication enabled=»true» useAppPoolCredentials=»true» />
                </authentication>
                <access sslFlags=»Ssl» />
            </security>
        </system.webServer>
    </location>

</configuration>

============================================================

Thank you very much for any assistance.  Let me know if you need more info.

Иногда на компьютерах с Windows возникает ошибка «Присоединённое к системе устройство не работает» при подключении устройств с iOS и iPadOS. Это происходит, когда система Windows не может подключиться к вашему iPhone или iPad, а причин может быть много.

обл

Если вы столкнулись с такой ошибкой, не расстраивайтесь. Переустанавливать Windows не придётся. Ниже мы расскажем о нескольких способах решить проблему.

Отметим, что такая ошибка возникает только на компьютерах с Windows, но не на Mac.

Как исправить ошибку «Присоединённое к системе устройство не работает»

Есть пять способов исправить возникающую ошибку, и ниже мы рассмотрим каждый из них.

Установите/обновите iTunes

Даже если вы не используете программу iTunes для синхронизации и резервных копий, лучше всё равно установить её на компьютер. Если у вас стоит старая версия iTunes, из-за этого тоже могут возникать проблемы. Если доступно обновление, установите его.

Обновите драйвер iPhone на ПК с Windows

Также можно вручную обновить драйверы iPhone/iPad на компьютере. Для этого зайдите в Диспетчер устройств, выберите свой смартфон или планшет правой кнопкой мыши и обновите его драйверы.

Переносите оригиналы фото

Начиная с iOS 11, на iPhone и iPad стандартным форматом для изображений стал HEIF. Однако при переносе на компьютер фотографии конвертируются в формат JPEG. Вы можете решить проблему, исключив конвертирование. Для этого зайдите в Настройки > Фото > Переносить оригиналы.

1

Сбросьте геонастройки

При первом подключении iPhone или iPad к компьютеру на устройстве появляется уведомление с просьбой «доверять этому компьютеру». Если вы случайно отклоните просьбу, то не сможете переносить фото с устройства на компьютер. Чтобы снова получить такое уведомление, можно сбросить настройки геолокации. Для этого зайдите в Настройки > Основные > Сброс > Сбросить геонастройки. После этого снова подключите устройство к компьютеру.

2

Используйте другой кабель USB/Lightning или USB Type-C

Со временем кабели Apple изнашиваются, иногда они даже перестают заряжать устройство. Из-за этого могут возникать и ошибки при подключении к компьютеру. Попробуйте использовать другой кабель, чтобы понять, не в нём ли проблема.

Используйте другой USB-разъём

Отключите своё устройство от USB-разъёма компьютера и попробуйте использовать другой разъём. Возможно, проблема не в устройстве, а в разъёме компьютера.

Обновите iOS или iPadOS

Иногда проблему может решить обычное обновление системы iPhone или iPad. Установить его можно через Настройки > Основные > Обновление ПО.

Если вам не помог ни один из этих способов, попробуйте принудительно перезагрузить своё устройство. Также может помочь восстановление с копии iTunes или iCloud.

В большинстве случаев один из способов выше решает проблему. Те же способы можно использовать, когда программа iTunes не видит ваше устройство.

Если у вас Mac, то можете почитать о том, почему iTunes не видит ваш iPhone.

Windows

  • Remove From My Forums
  • Общие обсуждения

  • Здравствуйте.

    Пытаюсь подключить сетевой диск webdav средствами проводника Windows 10 Pro.
    Webdav развернут на Windows Server 2019. Это не сервер, а просто файловое хранилище. Домена нет, пользователи локальные, права розданы, по локальной сети все ок работает.
    Webdav виртуальный каталог. Адрес в интернете https://*.*.*.*/shares. Сертификат ssl самоподписанный. Базовая аутентификация. Доступ всем пользователям.

    С Мака сетевой диск подключается, с приложений в смартфоне подключается. В Windows через плагин Total commander подключается, через Internet Explorer (и другие браузеры) – ругается на сертификат, но подключается. Через проводник – никак. Запрашивает
    имя пользователя и пароль, указываю корректные, но подключение не происходит: Вход в сеть не произведен. Через командную строку: Системная ошибка 1244. Запрошенная операция не была выполнена, так как пользователь не зарегистрирован.

    На клиентской машине стоит Windows 10 Pro. Сертификат добавлен в доверенные, служба webclient запущена, параметры реестра аутентификации и доверенных адресов BasicAuthLevel и AuthForwardServerList пробовал изменять, брандмауэр отключал,
    параметры безопасности IE снижал – ничего не помогает.

    Учитывая, что любые сторонние программы и приложения могут без проблем подключаться и работать, я предполагаю, что проблема в клиенте Windows, а не сервере. Задача вроде довольно простая, но никак не могу найти решение.

    Помогите советом, или скажите, к кому можно обратиться за помощью в настройке — очень нужно для удаленной работы.

    • Изменен тип

      13 июля 2020 г. 7:24
      Отсутствие активности

Привет! Тема дня – ошибка «Присоединенное к системе устройство не работает». Когда она появляется:

  • Подключение к компьютеру через USB смартфона, накопителя, любого другого внешнего устройства.
  • Передача файлов на ПК через USB кабель.
  • Попытка открыть или перенести, скопировать файл.
  • Запуск точки доступа Wi-Fi в Windows (при этом ошибка может обозначаться как «Не удалось запустить размещенную сеть»).

Что означает такая ошибка:

  • Подключаемый гаджет неисправен.
  • Поврежден кабель USB.
  • Кривые или неустановленные драйверы для подсоединяемого устройства.
  • Вирусы на ПК.
  • Поврежденные файлы.
  • Отсутствие или некорректная работа Wi-Fi адаптера.

Давайте разбираться, как можно решить проблему.

Содержание

  1. Ошибка при подключении через USB
  2. Ошибка при раздаче Wi-Fi
  3. Задать вопрос автору статьи

Ошибка при подключении через USB

Присоединенное к системе устройство не работает: причины и решения

Начнем с того, когда ошибка «Присоединенное к системе устройство не работает» появляется, если подключенное устройство или ПК некорректно работают.

  1. Просканируйте ПК или ноутбук антивирусником, очистите машину от мусора.
  2. Обновите драйверы для USB адаптера. Это можно сделать через «Диспетчер устройств» в разделе «Контроллеры USB». Выберите нужный, кликните по нему ПКМ и в выпадающем меню нажмите «Обновить драйвер».

Присоединенное к системе устройство не работает: причины и решения

  1. Установить/проверить драйверы для подключаемого устройства. Скачивать микропрограммы лучше с официального сайта.
  2. Перезагрузить ПК и подсоединяемый гаджет после установки/обновления драйверов.
  3. Если ошибка появляется при попытке передачи/копирования файлов, их нужно восстановить. В этом нам поможет запуск командной строки от имени администратора. Там нужно по очереди прописать следующие команды (после каждой не забываем нажимать «Ввод»):
  • sfc
  • scannow
  • dism
  • online
  • cleanup-image
  • restorehealth
  1. Крайний вариант – сделать откат ОС к прошлой версии, когда ошибка не появлялась. Сделать это можно через утилиту «Восстановление системы», которая запускается командой rstrui (нужно написать в окне «Выполнить» и нажать ОК).

Присоединенное к системе устройство не работает: причины и решения

Если после этого ошибка не устранилась, переходим к другому этапу: проверяем работу USB. Что тут может быть:

  • Поврежден шнур.
  • Не работает USB порт.

В первом случае поможет покупка нового кабеля. Во втором посоветую использовать для подключения другой порт. Если и другой разъем не работает, значит повреждена плата и придется нести ПК в ремонт.

Если ошибка появляется периодически, при переходе ноутбука в спящий режим, можно сделать следующее:

  • В «Диспетчере устройств» найти нужное USB устройство.
  • Кликнуть ПКМ и выбрать «Свойства».
  • Выбрать вкладку «Управление электропитанием».
  • Убрать галочку у строки «Разрешить отключение этого устройства для экономии энергии».

Присоединенное к системе устройство не работает: причины и решения

Перезагружаем ПК. Теперь временная проблема с подключением должна исчезнуть.

Ошибка при раздаче Wi-Fi

Описание разделе в формате видео смотрите тут:

Что делать, если надпись: «Присоединенное к системе устройство не работает» (или «Не удалось запустить размещенную сеть») появилась при попытке создания точки доступа Wi-Fi на Windows 7/10? Сначала простые советы:

  • Проверьте, точно ли на ПК есть беспроводной адаптер и установлены/обновлены ли драйверы на него.
  • Убедитесь, что адаптер включен.
  • Если вы выполняете раздачу Wi-Fi через текстовый интерфейс (командную строку), запускайте ее с правами администратора.
  • На «десятке» используйте функцию «Мобильный хот-спот».

Включить Wi-Fi адаптер и обновить драйверы беспроводного устройства проще всего через «Диспетчер устройств» в разделе «Сетевые адаптеры».

Если по этим пунктам порядок, вот еще несколько вариантов исправления ошибки «Присоединенное к системе устройство не работает» на «семерке» (для Windows 10 также актуально):

  1. Проверяем виртуальный адаптер. Заходим в «Диспетчер устройств», сверху выбираем вкладку «Вид» и ставим галочку у «Показать скрытые устройства». Ищем те, в названии которых есть слова «Virtual Adapter», и включаем их (жмем по каждому ПКМ и выбираем «Задействовать»).

Присоединенное к системе устройство не работает: причины и решения

  1. Проверяем, может ли вообще наш адаптер работать как точка доступа. Открываем окно «Выполнить» ( + R) и пишем cmd. Откроется текстовый интерфейс, где набиваем команду netsh wlan show drivers. Напротив строки «Поддержка размещенной сети» должно быть «Да».
  2. Попробуйте отключить и вновь включить Wi-Fi адаптер.
  3. Если у вас ноутбук, возможно, адаптер включается горячими клавишами (Fn + одна из функциональных клавиш ряда F1F12).
  4. Попробуйте включить точку доступа командой netsh wlan start hostednetwork. Для этого открываем командную строку с повышенными правами и вписываем команду.

Хочу добавить по пункту, где мы проверяли поддержку размещенной сети. У меня Windows 10 и стоит значение «Нет». Я включала раздачу Wi-Fi через «Мобильный хот-спот» и у меня все работало. Нашла информацию, что практически у всех на «десятке» стоит «Нет» у строки «Поддержка размещенной сети». Так что имейте в виду!

Присоединенное к системе устройство не работает: причины и решения

На этом заканчиваю. Напишите, помогла ли статья решить проблему. Мы всегда рады обратной связи с нашими читателями!

Понравилась статья? Поделить с друзьями:
  • Webdav windows 10 не воспроизводит видео
  • Webdav nextcloud windows 10 не подключается
  • Webdav client windows server 2012 r2
  • Webcash print module windows installer скачать
  • Webcammax для windows 7 скачать бесплатно