zoukankan      html  css  js  c++  java
  • WIN10 无法访问2003 server共享

    With Windows 10 v1803 or Spring Creators update released I have decided to do a fresh installation on my PC. Once everything was done I have tried to map network share on my Popcorn Hour VTEN media streamer. Unfortunately, I wasn’t able to do so as it seems that Microsoft disabled SMB1 protocol with this release.

    When I have tried to map a network drive I have received the following error message:

    You can’t connect to the file share because it’s not secure. This share requires the obsolete SMB1 protocol, which is unsafe and could expose your system to attack.

    You can't connect to the file share

    Since Popcorn Hour is using Linux and the latest available update is installed I didn’t have many options to fix this problem. In order to fix this, I had to install and enable the SMB1 protocol by using Powershell.

    Here’s how to do it:

    Run Powershell command processor in elevated mode (run as admin)
    Type the following command:

    get-windowsoptionalfeature -online –featurename smb1protocol

    Once SMB has been installed please type the following command to activate it:

    enable-windowsoptionalfeature -online –featurename smb1protocol

    Once done, press Y and hit enter to restart your computer.

    You can't connect to the file share

    Please have in mind that SMBv1 protocol is now obsolete and that Microsoft strongly advises consumers to use SMB2 or higher protocol. If you really need SMBv1 protocol like I do I would recommend you to enable SMBv1 only when you are using this network share. When you don’t need to access the share you can disable the SMBv1 protocol with the following command:

    disable-windowsoptionalfeature -online –featurename smb1protocol

  • 相关阅读:
    各类 HTTP 返回状态代码详解
    ANDROID内存优化——大汇总(转)
    Process Stats:了解你的APP如何使用内存(转)
    Android开发之AlarmManager详解
    转 16 jmeter中的监听器以及测试结果分析
    转 15 jmeter分布式性能测试
    转 14 jmeter性能测试实战--数据库MySQL
    转 12 jmeter性能测试实战--web程序
    转 11 jmeter之图形监控扩展
    转 10 jmeter之动态关联
  • 原文地址:https://www.cnblogs.com/Devopser/p/9405264.html
Copyright © 2011-2022 走看看