Skip to main content

Search: #Windows

  1. Windows 11 第三方工具 Flyoobe 11 允许用户移除微软在操作系统中捆绑的臃肿软件。它最近释出了更新 v1.7,允许用户在安装操作系统后发现并禁用所有 AI 和 Copilot 功能。开发者称,最新版本能更深入挖掘 AI 在 Windows 11 中的嵌入方式。Flyoobe 托管在微软旗下的 GitHub 上,采用 MIT 许可证。

    www.neowin.net/news/unofficial-windows-11-requirements-bypass-tool-now-allows-you-to-disable-all-ai-features/

    https://github.com/builtbybel/Flyby11

    #Windows #Github #工具

    via Memos
  2. 限制navicat联网的火绒规则,保存为json文件,在访问控制->IP协议控制中导入
    {
        "ver":"6.0",
        "tag":"ipproto",
        "data":[
            {
                "priority":50,
                "rport":"*",
                "recname":"Navicat阻止外网",
                "tmp_field_sel":false,
                "enabled":true,
                "tmp_field_desc_overview":"操作:阻止 方向:所有 协议:TCP/UDP",
                "protocol":260,
                "icmp_type":0,
                "lport":"*",
                "procname":"*\\Navicat*",
                "block":1,
                "tmp_field_desc_detail":"本地IP:任意IP 本地端口:任意端口 远程IP:任意IP 远程端口:任意端口 ",
                "id":113,
                "direction":0,
                "laddr":"*",
                "raddr":"*",
                "notlog":false
            },
            {
                "priority":10,
                "rport":"*",
                "recname":"Navicat放行内网",
                "protocol":260,
                "tmp_field_desc_overview":"操作:放行 方向:所有 协议:TCP/UDP",
                "tmp_field_sel":false,
                "enabled":true,
                "block":0,
                "tmp_field_desc_detail":"本地IP:任意IP 本地端口:任意端口 远程IP:10.0.0.0-11.0.0.0;192.168.0.0-192.169.0.0 远程端口:任意端口 ",
                "id":114,
                "procname":"*\\Navicat*",
                "icmp_type":0,
                "lport":"*",
                "laddr":"*",
                "direction":0,
                "raddr":"10.0.0.0-11.0.0.0;192.168.0.0-192.169.0.0",
                "notlog":false
            },
            {
                "recname":"PremiumSoft Navicat阻止联网",
                "rport":"*",
                "priority":51,
                "tmp_field_desc_overview":"操作:阻止 方向:所有 协议:TCP/UDP",
                "protocol":260,
                "tmp_field_sel":false,
                "enabled":true,
                "icmp_type":0,
                "lport":"*",
                "procname":"*\\PremiumSoft\\*",
                "block":1,
                "tmp_field_desc_detail":"本地IP:任意IP 本地端口:任意端口 远程IP:任意IP 远程端口:任意端口 ",
                "id":115,
                "direction":0,
                "laddr":"*",
                "raddr":"*",
                "notlog":false
            },
            {
                "priority":11,
                "rport":"*",
                "recname":"PremiumSoft Navicat放行内网",
                "protocol":260,
                "tmp_field_desc_overview":"操作:放行 方向:所有 协议:TCP/UDP",
                "tmp_field_sel":false,
                "enabled":true,
                "block":0,
                "tmp_field_desc_detail":"本地IP:任意IP 本地端口:任意端口 远程IP:10.0.0.0-11.0.0.0;192.168.0.0-192.169.0.0 远程端口:任意端口 ",
                "id":116,
                "procname":"*\\PremiumSoft\\*",
                "icmp_type":0,
                "lport":"*",
                "laddr":"*",
                "direction":0,
                "raddr":"10.0.0.0-11.0.0.0;192.168.0.0-192.169.0.0",
                "notlog":false
            }
        ]
    }

    #Windows #工具 #本地配置

    via Memos
  3. 解决无法访问局域网共享

    1.打开组策略,在“本地计算机策略 > 计算机配置 > 管理模板 > 网络 > Lanman 工作站”中启用“启用不安全的来宾登录”。

    2.打开组策略,在”本地计算机策略 > 计算机配置 > Windows 设置 > 安全设置 > 本地策略>安全选项”中禁用“Microsoft 网络客户端:对通信进行数字签名(始终)”。

    立即生效。

    Powershell 以管理员身份运行

    ``Set-SmbClientConfiguration -RequireSecuritySignature $false``

    输入A 回车

    #技术 #知识 #Windows

    via Memos
  4. How to Activate Windows / Office?

    如何激活Windows/Office

    Method 1 - PowerShell (Windows 8 and later) ❤️

    info

    1. Open PowerShell To do that, press the Windows key + X, then select PowerShell or Terminal.
    2. Copy and paste the code below, then press enter.

    irm https://get.activated.win | iex

    Alternatively, you can use the following (this will be deprecated in the future):

    irm https://massgrave.dev/get | iex

    1. You will see the activation options. Choose the activation options highlighted in green.
    2. That's all

    来自 https://massgrave.dev

    #网络资源 #office365 #Windows #网络工具

    via Memos