Canary Channel back to Beta Channel

gmooney100

New member
Joined
Aug 21, 2023
Messages
1
Reaction score
0
Hello All,

I was on Beta and moved to Canary for a day or 2. I think changed by Insider program back to Beta.

My update history shows Windows 11 Insider Preview 10.0.22624.1391 (ni_release), however, whenever I try to update I get the following error: "There were some problems installing updates, but we'll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: (0x8024401f)".

Whenever I click on Windows Update, Windows Insider program is shows Installed Build: 23403.1001. ni_prerelease

My windows wallpaper show in the bottom right hand corner that I am on Evaluation copy.Build 23403.ni-prerelease.23025.1635.

I know that I would have to a fresh install on Windows to get myself back to the true Beta channel.

My question is "if I wait" will an update finally come out that catches the Beta channel up to this version that I have in the 23403? I assume that is the Canary Channel?

Looking for options besides doing a fresh install.
 

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
781
Reaction score
73
Last year, Microsoft shared how they were evolving the Windows Insider Program to have more emphasis on trying out different concepts with their features and services. This 2023 year, Microsoft is continuing that evolution to better support delivering continuous innovation to Windows 11 by rebooting the Dev Channel from the ground up, to become the best place for Insiders to try out new long-lead features and experiences in development. Microsoft is also creating a new Canary Channel, to support preview builds of platform changes, similar to what was previously flighted to the Dev Channel. Microsoft is excited to roll these changes out and give folks more options to preview builds, but it does require a few initial tactical adjustments outlined below. Read on to understand what Insider Channel may be best for you and the action you may need to take to initiate changes.
  • If you are an Insider in the Beta Channel who wants to be closer to the latest new features and experiences, Microsoft recommends you switch to the Dev Channel today.
  • It is important to note that when switching channels, Insiders can’t switch to a channel that is receiving builds with lower build numbers without doing a clean installation of Windows 11 due to technical setup requirements.
For Insiders who are automatically moved to the Canary Channel but want to be in the Dev Channel instead, they will need to do a clean installation of Windows 11 to make the switch.

Initial build series per channel:
  • Canary Channel: 25000 series.
  • Dev Channel: 23000 series.
  • Beta Channel: 22000 series.
  • Release Preview: Released versions of Windows 10 and Windows 11.
Here is how the Insider Channels will look going forward with the updated channel descriptions:
New-Channels.png
  • [NEW!] Canary Channel: Ideal for highly technical users. Preview the latest platform changes early in the development cycle. These builds can be unstable and are released with limited to no documentation.
  • [REBOOTED!] Dev Channel: Ideal for enthusiasts. Access the latest Windows 11 preview builds as we incubate new ideas and develop long lead features. There will be some rough edges and low stability.
  • [Unchanged] Beta Channel: Ideal for early adopters. These Windows 11 builds will be more reliable than builds from our Dev Channel, with updates validated by Microsoft. Your feedback has the greatest impact here.
  • [Unchanged] Release Preview Channel: Ideal if you want to preview fixes and certain key features, plus get optional access to the next version of Windows before it’s generally available to the world. This channel is also recommended for commercial users.
As mentioned last year, Microsoft controls the state of individual features and experiences included in the builds released to Windows Insiders across the channels. Microsoft does this with Controlled Feature Rollout (CFR) technology. This allows Microsoft to roll out features in stages to monitor quality and your feedback in addition to trying out different variations of features (often referred to as “A/B testing”).

With this level of control over individual features and experiences, Microsoft may release a build to the Dev Channel with a feature enabled but intentionally disabled in a build released to the Beta Channel or Canary Channel. Microsoft will enable features in the builds when they are ready to do so. Microsoft will only communicate about features that they are purposefully enabling for Insiders to try out and give feedback on. Microsoft will communicate to Insiders about new features and experiences that get enabled across all the Insider Channels via blog posts on the Windows Insider Blog including the Canary Channel. But as Microsoft mentioned above, they will offer only limited documentation for the Canary Channel.

References https://blogs.windows.com/windows-insider/
 

Vote:

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
781
Reaction score
73

Change Windows Insider Program Channel for Windows 11 in Settings


1 Open Settings (Win+I).
2 Click/tap on Windows Update on the left side, and click/tap on Windows Insider Program on the right side. (see screenshot below)

Open Windows Insider Program settings
1692673358379.png

3 Click/tap on Choose your Insider settings on the right side to expand it open. (see screenshot below)

If Choose your Insider settings is missing from your Settings, then perform the following steps to restore it:

1) Open an elevated Windows Terminal, and select Command Prompt.
2) Copy and paste the bcdedit /set flightsigning on command into the elevated terminal, and press Enter.
3) Copy and paste the bcdedit /set {bootmgr} flightsigning on command into the elevated terminal, and press Enter.
4) Restart the computer to apply.

4 Select (dot) an available Canary Channel, Dev Channel, Beta Channel, or Release Preview Channel you want to switch to. If a channel is grayed out, it means you may not able to switch to that channel without having to do a clean install of Windows 11.

5 You can now close Settings.

1692673393278.png
 

Vote:

Xploit Machine

Well-known member
Joined
Nov 29, 2022
Messages
781
Reaction score
73
Else;

Change Insider Settings to Canary Channel (Save below code as .REG file and run it, then restart)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="CanaryChannel"
"ContentType"="Mainline"
"Ring"="External"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIBranch"="CanaryChannel"
"UIContentType"="Mainline"
"UIRing"="External"

Change Insider Settings to Dev Channel (Save below code as .REG file and run it, then restart)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="Dev"
"ContentType"="Mainline"
"Ring"="External"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIBranch"="Dev"
"UIContentType"="Mainline"
"UIRing"="External"

Change Insider Settings to Beta Channel (Save below code as .REG file and run it, then restart)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="Beta"
"ContentType"="Mainline"
"Ring"="External"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIBranch"="Beta"
"UIContentType"="Mainline"
"UIRing"="External"

Change Insider Settings to Release Preview Channel (Save below code as .REG file and run it, then restart)

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\Applicability]
"BranchName"="ReleasePreview"
"ContentType"="Mainline"
"Ring"="External"

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Selection]
"UIBranch"="ReleasePreview"
"UIContentType"="Mainline"
"UIRing"="External"

or Download the compiled .REG files here https://download.gg/file-15577125_692128a2e8d7eb2a

Have fun ! :D
 
Last edited:

Vote:

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top