当前位置: 首页 > article >正文

win11 恢复任务栏copilot图标, 亲测有效

1、修改C:\Windows\System32\IntegratedServicesRegionPolicySet.json,解除中国不能使用copilot的限制。

使用Notepad++搜索copilot全文搜索,将下面两处的“CN,”删除,删除后如下:

    {
      "$comment": "Show Copilot on taskbar by default when definitive answer is not received from Bing on user eligibility",
      "guid": "{ff9e2d65-8af9-4235-a8c0-e4126475fb99}",
      "defaultState": "enabled",
      "conditions": {
        "region": {
          "disabled": ["RU" , "BY", "IR", "CU", "KP", "SY"]
        }
      }
    },
    {
      "$comment": "Copilot PWA is available on Windows in these countries",
      "guid": "{e0b9c4fb-0f29-4cd5-9ef1-a198cbe10a49}",
      "defaultState": "enabled",
      "conditions": {
        "region": {
          "disabled": ["RU" , "BY", "IR", "CU", "KP", "SY"]
        }
      }
    },

注意,该文件存在权限问题,无法直接修改,先copy到其他地方进行修改,修改完后再粘贴替换,也会因为报权限问题无法替换,以管理员身份运行poweshell,执行以下命令后,即可替换成功。

$filePath = "$env:WINDIR\System32\IntegratedServicesRegionPolicySet.json"
$acl = (Get-Item $filePath).GetAccessControl()
$accessRule = New-Object System.Security.AccessControl.FileSystemAccessRule("Administrators", "FullControl", "Allow")
$acl.SetAccessRule($accessRule)
Set-Acl -Path $filePath -AclObject $acl

2、修改注册表

创建一个copilot.bat文件,主要用于开机修改注册表,以打开copilot。内容如下:

reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\Shell\Copilot\BingChat" /v IsUserEligible /t REG_DWORD /d 1 /f

然后运行WIN+R,打开 “shell:Common Startup”进入C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Startup, 将copilot.bat文件拷贝到Startup下

完成以上两步后,重启电脑,在开始菜单搜索copilot,即可搜索到copilot应用,将其加入到任务栏即可。

效果图:


http://www.kler.cn/a/429647.html

相关文章:

  • 从源码角度分析SpringMVC执行流程
  • Webpack和Vite的区别
  • Android 对接口的封装使用
  • 深度学习笔记11-优化器对比实验(Tensorflow)
  • 【ArcGIS微课1000例】0137:色彩映射表转为RGB全彩模式
  • ansible 检查目录大小
  • 数据分析Python转置文档代码
  • 分布式搜索引擎Elasticsearch(三)
  • 告别充电焦虑:移动充电机器人的革命性解决方案
  • 3D 目标检测:从萌芽到前沿的技术演进之路
  • linux间隔记录服务器的CPU占用率TOP10的进程
  • 使用Nexus3搭建Maven私有镜像仓库
  • Burp(8)-验证码爆破插件
  • 基于FPGA的PI环调节电压
  • Xcode编译的时候运行python脚本
  • 计算机网络——三大交换技术
  • 准确率99.9%的离线IP地址定位库 ip2region - python 示例
  • GauHuman阅读笔记【3D Human Modelling】
  • 知从科技闪耀汽车智能底盘大会:共探软件安全新篇章
  • ElasticSearch常见面试题汇总
  • 《maven 常用知识详解 3:聚合与继承》
  • Blender均匀放缩模型
  • 第8章:CSS预处理器 --[CSS零基础入门]
  • vue3 实现音频转文字组件
  • 深入理解 React 状态管理:useState 和 useReducer
  • java工具包介绍