zoukankan      html  css  js  c++  java
  • 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

  • 相关阅读:
    数据库连接池
    一致性hash
    java 集合大家族
    linkedlist
    HashMap
    hashcode
    Job 逻辑执行图
    CDN
    网站缓存
    Mysql临时文件目录控制
  • 原文地址:https://www.cnblogs.com/createyuan/p/10149581.html
Copyright © 2011-2022 走看看