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应用,将其加入到任务栏即可。

效果图:

相关推荐
小白也有IT梦5 天前
VSCode代理配置导致的SSL证书验证错误及解决方案
vscode·copilot·代理
海森大数据7 天前
AI实验室copilot自动化科研,AMD联手约翰霍普金斯大学:成本节约84%!
人工智能·自动化·copilot
切糕师学AI7 天前
idea 如何安装 github copilot
github·intellij-idea·copilot
TE-茶叶蛋10 天前
啥!GitHub Copilot也免费使用了
github·copilot
张3蜂11 天前
Copilot 和 Windsurf哪个更适合于.netcore开发
.netcore·copilot
张3蜂11 天前
比较分析:Windsurf、Cody、Cline、Roo Cline、Copilot 和 通义灵码
c#·copilot·ai编程
我明天再来学Web渗透19 天前
【2024年-11月-9日-开源社区openEuler实践记录】OpenAMDC:开启智能边缘计算与系统管控的新征程
开发语言·人工智能·架构·开源·边缘计算·copilot·开源软件
dxwd32021 天前
试用ChatGPT的copilot编写一个程序从笔记本电脑获取语音输入和图像输入并调用开源大模型进行解析
chatgpt·copilot
深度学习机器21 天前
GitHub Copilot免费上线!快速上手指南与功能解析
人工智能·开源·github·copilot
ZERO-A-ONE24 天前
Github Copilot 插件更新失败
github·copilot