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

效果图:

相关推荐
WebCandy3 天前
用Trae编辑器写一个Trae的AI对话记录导出脚本
人工智能·编辑器·github·copilot·ai编程
PowerBI学谦4 天前
Copilot:Excel中的Python高级分析来了
python·excel·copilot
佛曰我不想说话4 天前
通过VSCode直接连接使用 GPT的编程助手
ide·vscode·copilot
不是伍壹5 天前
【R语言】GitHub Copilot安装-待解决
github·copilot
PowerBI学谦5 天前
Copilot基于企业PPT模板生成演示文稿
copilot
pitt19976 天前
IntelliJ IDEA 接入 AI 编程助手(Copilot、DeepSeek、GPT-4o Mini)
chatgpt·copilot·intellij idea·deepseek
Black_Rock_br6 天前
智能编程助手功能革新与价值重塑之:GitHub Copilot
copilot
万事ONES10 天前
ONES 功能上新|ONES Copilot、ONES TestCase、ONES Wiki 新功能一览
copilot
老黄浅谈质量10 天前
如何通过腾讯 ima.copilot 训练自己的知识库
copilot
MicrosoftReactor10 天前
技术速递|5 分钟用 GitHub Copilot Agent Mode 创建 Copilot Chat 应用
github·copilot