From 84b685f7c5b754a4337549bb4c355adaf30f14f6 Mon Sep 17 00:00:00 2001 From: thePineapple <83741557+the-P1neapple@users.noreply.github.com> Date: Sat, 6 Dec 2025 05:58:00 +0000 Subject: [PATCH 1/5] feat: add guide for reverting install --- src/content/docs/en/faq/reverting.mdx | 171 ++++++++++++++++++++++++++ 1 file changed, 171 insertions(+) create mode 100644 src/content/docs/en/faq/reverting.mdx diff --git a/src/content/docs/en/faq/reverting.mdx b/src/content/docs/en/faq/reverting.mdx new file mode 100644 index 0000000..966e9f5 --- /dev/null +++ b/src/content/docs/en/faq/reverting.mdx @@ -0,0 +1,171 @@ +--- +title: Reverting Atlas +metaDescription: Instructions for reverting your AtlasOS install back to a normal Windows install. Learn where to find support before choosing to revert back to Windows, download the setup again, and reinstall Windows. +description: Reverting AtlasOS back to a normal Windows install. +order: 32 +--- + +import Callout from '@/components/docs/Callout.astro'; +import CommunityLink from '@/components/docs/CommunityLink.astro'; +import IconArrow from '@/components/ui/IconArrow.astro'; +import QuickLinkCard from '@/components/docs/QuickLinkCard.astro'; +import QuickLinksGrid from '@/components/docs/QuickLinksGrid.astro'; +import Tabs from '@/components/ui/Tabs.astro'; +import TabPanel from '@/components/ui/TabPanel.astro'; + +# Reverting Atlas + +Important information for reverting back to Windows 11. + +## Before Uninstalling + +We are sorry to hear that you are not satisfied with AtlasOS. If you are not using the [latest playbook](docs/faq/general/#keeping-atlasos-updated), please consider [upgrading](/docs/upgrade/requirements). This may address certain issues found in older playbooks. + +Please also use our support channels + + + + + + + +### Still having problems? + +We are sorry to see you go. Please know that we are constantly improving AtlasOS to ensure issues are resolved for future releases. + +Before you continue, please consider [reporting your issue](docs/contributing/reporting) so we can address it in a future release. Alternatively, provide us feedback through Discord and GitHub Discussions. + + + Looking to reinstall/install Atlas? Follow the [installation guide](docs/install/requirements/) instead. + + +## Prerequisites + +Before proceeding, ensure you have: + +- **Backed up all important data** to a safe location: + - Cloud storage (Google Drive, Microsoft OneDrive, Dropbox) + - External storage (NAS, portable drive, USB drive) + +## Step 1: Download Windows ISO + +1. Visit [Microsoft's Windows 11 download page](https://www.microsoft.com/en-us/software-download/windows11) +2. Choose the appropriate ISO: + - For **Intel/AMD CPUs**: Click **Download Windows 11 Disk Image (ISO) for x64 devices** + - For **ARM CPUs**: Click **Download Windows 11 Disk Image (ISO) for ARM64 devices** +3. Select **Windows 11 (multi-edition ISO)** **Confirm** +4. Choose your language **Confirm** +5. Click the appropriate download option: + - **64-bit Download** for x64 systems + - **ARM64 Download** for ARM systems + + + **Which version?** Intel/AMD CPUs use x64. ARM (Snapdragon) systems use ARM64. Make sure you + download the correct ISO for your CPU architecture. + + +## Step 2: Prepare network drivers (recommended) + +You may lose internet connection after Windows installation if network drivers aren't available. + +**Download now:** + +1. Search for your motherboard or device model + "network drivers" +2. Download the latest drivers +3. Save to a USB drive or external storage + + + **Can't find drivers?** Check your manufacturer's support page or search Device Manager for your + network adapter name. + + +## Step 3: Reinstall Windows + +Choose your installation method below. + + + + **Best for:** Users already running Windows who want the easiest installation method. + + 1. **Disconnect internet** (unplug ethernet, disable Wi-Fi) + + 2. **Mount the ISO:** + - Right-click downloaded ISO **Open With** **File Explorer** + - Note the drive letter (e.g., ) + + 3. **Launch Windows Setup:** + - Press + - Type: (replace H with your drive letter) + - Press Accept UAC prompt + + 4. **Complete Windows Setup:** + - Click **No thanks** (updates) + - Uncheck "I want to help make Windows installation better" + - Click **I don't have a product key** + - Select **Windows Pro** (or Pro for Workstations/Enterprise) + - Accept license **Custom: Install Windows only (advanced)** + - Select your Windows drive **Next** **OK** (Windows.old warning) + - Wait for installation (~15-20 minutes) + + + See [troubleshooting](/docs/faq/installation/) to suspend BitLocker first. + + + + + + **Best for:** Users wanting a fresh install or those currently on Linux. + + 1. **Create bootable USB:** + - Download [Ventoy](https://github.com/ventoy/Ventoy/releases/) + - Run **Ventoy2Disk.exe** + - Select USB drive **Install** ( erases USB data!) + - Copy Windows ISO to USB drive + + 2. **Boot from USB:** + - Restart Enter BIOS/UEFI (usually F12 or Del) + - Select your USB drive as the boot device (you may need to change boot order in BIOS settings) + - In Ventoy menu: Select Windows ISO **Boot in normal mode** + + 3. **Complete Windows Setup:** + - Click **Next** twice **Previous version of setup** (bottom left) + - Select language **Next** **Install Now** + - Click **I don't have a product key** + - Select **Windows Pro** (or Pro for Workstations/Enterprise) + - Accept license **Custom: Install Windows only (advanced)** + - Select partition **Next** + - Wait for installation (~15-20 minutes) + + + If Ventoy shows an error, [enroll the key](https://ventoy.net/doc_secure.html). + + + + + +## Step 4: Continue with the Windows setup + +You should now be at the regular Windows initial setup and back on stock Windows. + +### Step 4.1: Removing the Old Windows folder + +If you previously followed steps that mentioned a Windows.Old folder, you can find your previous installation data in this folder. + +When you are sure you have retrieved any important data from this folder, follow these steps. + +1. Open **Windows Settings System Storage** +2. Click **Temporary files**, and wait for it to scan your files. +3. Select **Previous versions of Windows**, and then click **Remove files**. From aca90b336481ed13ac1e39921f0f6f8c2a56207b Mon Sep 17 00:00:00 2001 From: thePineapple <83741557+the-P1neapple@users.noreply.github.com> Date: Sat, 6 Dec 2025 06:08:36 +0000 Subject: [PATCH 2/5] fix: missing imports --- src/content/docs/en/faq/reverting.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/docs/en/faq/reverting.mdx b/src/content/docs/en/faq/reverting.mdx index 966e9f5..719a549 100644 --- a/src/content/docs/en/faq/reverting.mdx +++ b/src/content/docs/en/faq/reverting.mdx @@ -6,8 +6,10 @@ order: 32 --- import Callout from '@/components/docs/Callout.astro'; +import CodeInline from '@/components/docs/CodeInline.astro'; import CommunityLink from '@/components/docs/CommunityLink.astro'; import IconArrow from '@/components/ui/IconArrow.astro'; +import IconInline from '@/components/ui/IconInline.astro'; import QuickLinkCard from '@/components/docs/QuickLinkCard.astro'; import QuickLinksGrid from '@/components/docs/QuickLinksGrid.astro'; import Tabs from '@/components/ui/Tabs.astro'; From 08185014a5f32b7f259d3717b25a3019066432a5 Mon Sep 17 00:00:00 2001 From: thePineapple <83741557+the-P1neapple@users.noreply.github.com> Date: Sat, 6 Dec 2025 06:12:11 +0000 Subject: [PATCH 3/5] fix: wrong import --- src/content/docs/en/faq/reverting.mdx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/content/docs/en/faq/reverting.mdx b/src/content/docs/en/faq/reverting.mdx index 719a549..4f0884f 100644 --- a/src/content/docs/en/faq/reverting.mdx +++ b/src/content/docs/en/faq/reverting.mdx @@ -8,10 +8,9 @@ order: 32 import Callout from '@/components/docs/Callout.astro'; import CodeInline from '@/components/docs/CodeInline.astro'; import CommunityLink from '@/components/docs/CommunityLink.astro'; +import Grid from '@/components/ui/Grid.astro'; import IconArrow from '@/components/ui/IconArrow.astro'; import IconInline from '@/components/ui/IconInline.astro'; -import QuickLinkCard from '@/components/docs/QuickLinkCard.astro'; -import QuickLinksGrid from '@/components/docs/QuickLinksGrid.astro'; import Tabs from '@/components/ui/Tabs.astro'; import TabPanel from '@/components/ui/TabPanel.astro'; From f0a4e753819ce8413508a8eecab36b490e2d30b0 Mon Sep 17 00:00:00 2001 From: thePineapple <83741557+the-P1neapple@users.noreply.github.com> Date: Sat, 6 Dec 2025 06:20:02 +0000 Subject: [PATCH 4/5] fix: correct sidebar order --- src/content/docs/en/faq/ame.mdx | 2 +- src/content/docs/en/faq/reverting.mdx | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/en/faq/ame.mdx b/src/content/docs/en/faq/ame.mdx index 31cf4a7..355dc28 100644 --- a/src/content/docs/en/faq/ame.mdx +++ b/src/content/docs/en/faq/ame.mdx @@ -2,7 +2,7 @@ title: AME Beta FAQ metaDescription: Find answers to common questions about AME Beta and troubleshooting AtlasOS installation issues. Learn about AME Beta being flagged, installation failures, and upgrades. description: Common questions about AME Beta and troubleshooting. -type: faq +order: 30 --- import Callout from '@/components/docs/Callout.astro'; diff --git a/src/content/docs/en/faq/reverting.mdx b/src/content/docs/en/faq/reverting.mdx index 4f0884f..8dc26f4 100644 --- a/src/content/docs/en/faq/reverting.mdx +++ b/src/content/docs/en/faq/reverting.mdx @@ -2,7 +2,7 @@ title: Reverting Atlas metaDescription: Instructions for reverting your AtlasOS install back to a normal Windows install. Learn where to find support before choosing to revert back to Windows, download the setup again, and reinstall Windows. description: Reverting AtlasOS back to a normal Windows install. -order: 32 +order: 31 --- import Callout from '@/components/docs/Callout.astro'; @@ -44,10 +44,10 @@ Please also use our support channels We are sorry to see you go. Please know that we are constantly improving AtlasOS to ensure issues are resolved for future releases. -Before you continue, please consider [reporting your issue](docs/contributing/reporting) so we can address it in a future release. Alternatively, provide us feedback through Discord and GitHub Discussions. +Before you continue, please consider [reporting your issue](/docs/contributing/reporting) so we can address it in a future release. Alternatively, provide us feedback through Discord and GitHub Discussions. - Looking to reinstall/install Atlas? Follow the [installation guide](docs/install/requirements/) instead. + Looking to reinstall/install Atlas? Follow the [installation guide](/docs/install/requirements/) instead. ## Prerequisites From 81fc48ba94d3f3d2404e8c118c7f1b0e28555283 Mon Sep 17 00:00:00 2001 From: thePineapple <83741557+the-P1neapple@users.noreply.github.com> Date: Sat, 6 Dec 2025 06:23:28 +0000 Subject: [PATCH 5/5] fix: link typo --- src/content/docs/en/faq/reverting.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/en/faq/reverting.mdx b/src/content/docs/en/faq/reverting.mdx index 8dc26f4..d2ab220 100644 --- a/src/content/docs/en/faq/reverting.mdx +++ b/src/content/docs/en/faq/reverting.mdx @@ -20,7 +20,7 @@ Important information for reverting back to Windows 11. ## Before Uninstalling -We are sorry to hear that you are not satisfied with AtlasOS. If you are not using the [latest playbook](docs/faq/general/#keeping-atlasos-updated), please consider [upgrading](/docs/upgrade/requirements). This may address certain issues found in older playbooks. +We are sorry to hear that you are not satisfied with AtlasOS. If you are not using the [latest playbook](/docs/faq/general/#keeping-atlasos-updated), please consider [upgrading](/docs/upgrade/requirements). This may address certain issues found in older playbooks. Please also use our support channels