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

效果图:

相关推荐
舞动青春883 天前
vscode copilot配置kimi k3
ide·vscode·copilot
ms365copilot5 天前
告别复制粘贴!Copilot聊天记录一键转Pages可编辑文档
copilot
HAHAXX86 天前
RPA机器人开发全解:Copilot+大模型接口集成,从源码到架构的深度拆解
机器人·copilot·rpa
该用户可能存在6 天前
【Win11优化】StartAllBack实战:解决任务栏合并、右键折叠等痛点
windows·性能优化·win11·windows 11·startallback·任务栏·开始菜单
其实防守也摸鱼7 天前
GitHub Actions 自动化运维实战:从入门到企业级应用
运维·数据库·安全·自动化·github·copilot
ms365copilot7 天前
Word Copilot提取文档关键信息
copilot
MicrosoftReactor7 天前
技术速递|GitHub Copilot App 中的堆叠会话与拉取请求
ai·github·copilot·agent
撑伞的鱼99378 天前
2026年前端能力较强的AI编程工具对比:从Figma2Code到Agent闭环
前端·copilot·ai编程·编程工具·figma2code
ms365copilot9 天前
Copilot Chat对话直接生成信息图
copilot
七牛开发者9 天前
Codex 实践系列 Vol.04:用 Goal 和 Plan 管住一个长任务
java·数据库·人工智能·github·copilot