how do i enable copilot in windows 10 ?

bedouinbro

Well-Known Member
Joined
Feb 6, 2024
Messages
44
how do i enable copilot in windows 10 ? tried vive tool to enable it but getting errors, theres no option in registry either ?!

followed all these steps shown in these tutorials,

Add or Remove Copilot Button on Taskbar in Windows 10

https://techcommunity.microsoft.com...l-updates-for-windows-10-devices/ba-p/3983927

How to get Copilot in Windows (in preview) on Windows 10

the copilot option isnt appearing in the taskbar menu
does windows update setting - managed by your organization have something to do with it ? or is it because the region im in , the update isnt rolling out yet ?
 
Last edited by a moderator:
Enabling Copilot in Windows 10 requires a combination of steps, including updating your system, enabling the app through the Windows Registry, and adding it to the taskbar. Let's go through the process in detail:
  • Ensure Your Windows 10 Version is Supported: Copilot is currently available for Windows 10 Insider Preview builds, so make sure you are using a supported version.
  • Windows Update Settings: The "Managed by your organization" message usually appears if you have certain group policies enabled that restrict or control Windows updates. In this case, you might not be able to see the Copilot option. However, this setting alone should not prevent you from enabling Copilot.
  • Updating Your System: Keep your Windows 10 system up to date with the latest updates. This ensures you have all the necessary components and functionality required for Copilot.
  • Enabling Copilot via the Windows Registry: To enable Copilot, follow these steps: a. Press the Windows key + R, type "regedit" (without quotes), and hit Enter. b. Navigate to the following registry key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Copilot c. If the Copilot key does not exist, right-click on "Explorer" > New > Key, and name it "Copilot." d. In the Copilot key, right-click on the right-hand side > New > DWORD (32-bit) Value, and name it "EnableCopilot". e. Double-click on the newly created "EnableCopilot" value and set its value data to 1. f. Close the Registry Editor.
  • Adding Copilot to the Taskbar: To add the Copilot button to the taskbar, you can follow the steps outlined in the tutorial you provided . If you have followed these steps correctly and are still facing issues, it's possible that the Copilot feature may not be available in your region yet. In that case, you may need to wait for the update to roll out to your region. Please note that Copilot is a new feature, and it's always a good idea to create a system backup or restore point before making any changes to your system settings or registry.
 
In Powershell you need .\ in front of the exe name when executing from the same directory
 
1. Ensure Your Windows 10 Version is Supported: Copilot is currently available for Windows 10 Insider Preview builds, so make sure you are using a supported version.
is it possible to get copilot without joining the insider preview ? and is it possible to get the copilot after installing insider preview updates then opting out of the insider preview program without damaging the current version of the windows ? i tried installing the Windows 10 KB5032278 update but it doesnt install.
 
got the rollout recently, didn't have to join the insider program, everything working fine so far
[ATTACH type="full" align="right" alt="An image from 'how do i enable copilot in windows 10 ?'. 1. Windows Update error on Windows 10 with Microsoft Copilot sidebar.
2. Windows 10 Pro version 22H2 about info dialog.
3. Registry Editor open to Microsoft Windows Shell key with no values set."]43574[/ATTACH]
[ATTACH type="full" align="right" alt="An image from 'how do i enable copilot in windows 10 ?'. 1. Windows Update error on Windows 10 with Microsoft Copilot sidebar.
2. Windows 10 Pro version 22H2 about info dialog.
3. Registry Editor open to Microsoft Windows Shell key with no values set."]43575[/ATTACH][ATTACH type="full" align="right" alt="An image from 'how do i enable copilot in windows 10 ?'. 1. Windows Update error on Windows 10 with Microsoft Copilot sidebar.
2. Windows 10 Pro version 22H2 about info dialog.
3. Registry Editor open to Microsoft Windows Shell key with no values set."]43576[/ATTACH]
 

Attachments

  • Screenshot (6).webp
    94.8 KB · Views: 0
  • Capture.webp
    16 KB · Views: 0
  • Capture2.webp
    39.1 KB · Views: 0
Last edited by a moderator:
You’re absolutely correct! When using PowerShell to execute an executable from the same directory, you need to prefix the executable name with .\. This is because PowerShell does not automatically look in the current directory for executables (unlike Command Prompt, which does). For example:
Code:
.\example.exe
Here’s why:
- PowerShell prioritizes security and explicitly requires you to specify the path if you want to execute something from the current directory. Without the .\, PowerShell assumes you're trying to run a command or executable that's located in a directory listed in your system's PATH, or a built-in cmdlet. This behavior minimizes the risk of accidentally running files/binaries from the current directory that might conflict with system commands. If you have more questions or need further clarification, feel free to ask!