Fork me on GitHub

windows知识点2

 

最近在使用win10系统的过程中,无法获取dns报错,上不了网。经过一番折腾,最终在用下面
的方法,解决了问题。第二步很关键。完成步一下步骤重启电脑应该就可以上网了。
1
2
第一步:使用 ipconfig /flushdns 命令刷新DNS解析缓存
第二步:使用 netsh winsock reset 命令重置 Winsock 目录。
第三步:使用自动获得DNS服务器地址

 

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

 


win10连接共享的问题

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.
Your system requires SMB2 or higher. For more info on resolving this issue, see: https://go.microsoft.com/fwlink/?linkid=852747


powershell执行这两条命令就可以了
get-windowsoptionalfeature -online –featurename smb1protocol
enable-windowsoptionalfeature -online –featurename smb1protocol
不用的时候禁用
disable-windowsoptionalfeature -online –featurename smb1protocol

posted on 2018-12-20 15:20  阳光-源泉  阅读(193)  评论(0编辑  收藏  举报

导航