OS Installation & Configuration
Installation and recovery types
A laptop lands on your bench with a broken Windows install, and the first question is not which button to click but what has to survive: the user's files, their installed apps, both, or nothing. That one answer picks one of four install paths, and getting it wrong either destroys data you needed or wastes an afternoon rebuilding a machine you could have repaired in place. The figure below sorts the four install types by exactly that line, whether the volume is preserved or wiped, and places the two Reset this PC modes alongside them as the on-box recovery paths they are rather than as a fifth and sixth install type. This chapter owns getting an OS onto the machine: the install and recovery types, boot media, firmware and partitioning, and first-boot setup. Picking between NTFS, FAT32, and exFAT for everyday storage and keeping a running system patched belong to File Systems & Updates, and the consoles that manage disks after the install finishes are in Windows Management Tools.
The four install types
- Clean install: boot from installation media, delete or format the target partition, and lay down a fresh copy of Windows. Nothing carries over, so you reinstall every app and driver afterward. Use it for a new disk, a resale, or a machine so compromised you no longer trust the old install.
- In-place upgrade: run Windows Setup from inside the running OS (or through Windows Update) and choose to keep personal files and apps. This is the supported path from Windows 10 to Windows 11 and between Windows feature versions (Windows Setup process[1]).
- Image deployment: capture one reference machine as an image and clone it onto many. You prepare the reference with Sysprep run with the
/generalizeswitch, which strips the machine-specific security identifier (SID) and hardware bindings so the image is safe to duplicate (Sysprep generalize[2]). WDS, MDT, or Microsoft Configuration Manager then push the image, commonly over the network. - Repair installation: reinstall the same Windows version over itself to replace corrupt system files while keeping apps, settings, and data. It is an in-place upgrade pointed at the version already running.
Recovery paths that live on the machine
Two recovery options need no external media because Windows ships them on the disk. The recovery partition is a small OEM-created partition holding the Windows Recovery Environment (WinRE) and sometimes a factory image. Reset this PC (push-button reset) rebuilds Windows from those on-box files and offers two modes: Keep my files removes apps and settings but leaves personal files, and Remove everything wipes the volume, with an added data-cleaning option for a device you are handing on (push-button reset[3]). Newer builds can also pull a fresh copy from Microsoft's servers (cloud download) instead of using the local image.
Before any upgrade: four checks
CompTIA frames upgrades around four go or no-go checks, and the exam expects you to run them before you commit:
- Back up files and user preferences first, because even an in-place upgrade can fail.
- Confirm application and driver compatibility, including backward compatibility for older line-of-business software.
- Confirm hardware compatibility with the target OS.
- Meet or exceed the minimum system requirements. For Windows 11 that floor is strict (UEFI, Secure Boot, TPM 2.0, and an approved 64-bit CPU), covered in the firmware section below.
Deciding between these types, and reading the requirement the question hands you, is the heart of A+ Core 2 objective 1.2, perform OS installations and upgrades in a diverse environment[4].
Boot methods and installation media
Setup has to come from somewhere, and the source you boot from is a delivery choice, not a change to the finished OS. A single desktop takes a USB stick; a room of machines being re-imaged takes a network boot; a Mac with a wiped disk takes an internet reinstall. Match the medium to the hardware in front of you and the number of machines behind it.
The boot methods A+ expects
- USB flash drive: the everyday installer. You write a bootable Windows image to an 8 GB or larger stick (the Media Creation Tool or a Windows ISO), then boot the target from it. Fast, reusable, and the default for one-off installs.
- Optical media (CD/DVD): the same idea on a disc, now rare because images outgrew a DVD and drives are disappearing, but still listed as a method.
- Network boot (PXE): the machine's network card carries a PXE (Preboot Execution Environment) ROM that asks DHCP for an address and the name of a boot server, then pulls a small boot program over TFTP (Trivial File Transfer Protocol) and loads a WinPE (Windows Preinstallation Environment[5]) boot image that runs Setup or applies a deployment image. This needs a server role such as WDS and is how techs image many identical PCs without carrying media to each one.
- Internet-based installation: the source lives on the vendor's servers. Windows can reinstall by cloud download during a reset, and macOS reinstalls from Internet Recovery. Useful when there is no local media and the recovery partition is gone.
- External or hot-swappable drive: boot an installer or a full OS from an external SSD or a swappable drive bay, handy for servicing or a portable environment.
- Internal drive / recovery partition: the on-box recovery partition covered earlier is itself a boot source for repair and reset.
Solid-state and flash considerations
The media you boot from and the disk you install to can both be flash. Booting from a USB flash drive is standard, and installing onto an SSD or NVMe drive is now the norm. The one gotcha is that installers on older media sometimes need the storage controller's driver loaded before they can see an NVMe disk, so keep the vendor driver handy. Where the finished disk is partitioned and formatted is the next section.
Choosing a boot method for the scenario is part of A+ Core 2 objective 1.2, perform OS installations and upgrades in a diverse environment[4].
Firmware, partitioning, and formatting
Two firmware modes exist, and each demands its own partition style on the boot disk: UEFI boots Windows from a GPT disk, legacy BIOS boots it from an MBR disk, and you cannot mix them for the volume Windows starts from. Get this pairing right at install time and the rest of partitioning follows; get it wrong and Setup either refuses the disk or the machine will not boot.
GPT versus MBR
MBR (Master Boot Record) is the older scheme: it stores the partition table in the first sector, tops out at four primary partitions (or three primary plus one extended holding logical drives), and cannot address a disk larger than 2 TB. GPT (GUID Partition Table), part of the UEFI standard, removes both limits: Windows supports up to 128 partitions on a GPT disk and boots disks far larger than 2 TB, and GPT keeps a backup partition table plus CRC checksums so a single corrupt sector does not lose the layout (Windows and GPT FAQ[6]).
| Trait | MBR (BIOS boot) | GPT (UEFI boot) |
|---|---|---|
| Max primary partitions | 4 (or 3 + 1 extended) | 128 in Windows |
| Max disk addressed | 2 TB | Well beyond 2 TB |
| Partition table backup | None | Backup copy + CRC |
| Firmware to boot Windows | Legacy BIOS / CSM | UEFI |
You do not have to wipe a disk to switch: mbr2gpt.exe converts a system disk from MBR to GPT in place before you flip the firmware to UEFI (mbr2gpt[7]), while the destructive path is DiskPart's clean followed by convert gpt.
Converting a data disk to GPT with DiskPart
The command below wipes the selected disk, so use it only on a disk whose contents you can lose (a fresh install disk, never the system volume you are booted from) (DiskPart[8]):
diskpart
list disk
select disk 1
clean
convert gpt
# ... create and format partitions from here ...
The select disk 1 line targets the second disk; confirm the number against list disk first, because clean erases whatever disk is selected.
The Windows 11 firmware floor
Windows 11 raises the bar the upgrade checklist points to: the machine must boot UEFI with Secure Boot, carry a TPM 2.0 (Trusted Platform Module), and run an approved 64-bit CPU with at least 4 GB RAM and 64 GB storage (Windows 11 requirements[9]). Because Secure Boot and this TPM requirement are UEFI features, a compliant Windows 11 disk is always GPT. The TPM also anchors BitLocker drive encryption, which is why so many install-time questions turn on whether the firmware is UEFI. Two Microsoft tools read this floor for you, and the cheat sheet below assumes you can tell them apart: PC Health Check is a free app that tests one PC against the Windows 11 requirements and names the requirement it fails, while the Windows 11 Installation Assistant is the tool you run inside a working Windows 10 install to perform the in-place upgrade once the machine passes.
Formatting: the file system you pick at install
Formatting writes a file system onto a partition so the OS can store files. Windows installs its system volume as NTFS (New Technology File System), which adds journaling, per-file permissions (ACLs), encryption, and compression, and handles very large files and volumes (NTFS overview[10]). Two other formats appear at install and on removable media:
- FAT32 is old and universal but limited: a single file cannot exceed 4 GB, and Windows will only format a new FAT32 volume up to 32 GB. Its one required modern job is the EFI System Partition (ESP), a small FAT32 partition (about 100 MB) the UEFI firmware reads to find boot loaders.
- exFAT removes FAT32's 4 GB file cap and is the cross-platform choice for large USB drives and SD cards that both Windows and macOS must read (exFAT specification[11]).
A standard UEFI/GPT Windows disk therefore ends up with the layout in the figure: a FAT32 ESP (about 100 MB), a tiny Microsoft Reserved (MSR) partition (about 16 MB) with no drive letter, the NTFS Windows volume on C, and an NTFS recovery partition holding WinRE (UEFI/GPT partitions[12]). More on NTFS versus FAT choices and update servicing lives in File Systems & Updates; the disk tools that create these partitions after install are in Windows Management Tools. Partition schemes and formatting are core to A+ Core 2 objective 1.2, perform OS installations and upgrades in a diverse environment[4].
macOS, Linux, and mobile OS setup
Hand a technician a MacBook to wipe, a spare laptop to put Linux on, and a new iPhone to set up, and the same install-and-configure logic covers all three with different tools. The pattern holds everywhere: choose a source, lay down the OS, pick a file system, then run first-boot setup.
macOS
A Mac reinstalls from macOS Recovery rather than a USB stick in most cases. On Apple silicon you hold the power button to reach recovery; on older Intel Macs you hold Command-R at boot, and Internet Recovery downloads the installer when the local one is gone. Disk Utility in Recovery erases and formats the disk, and the modern format is APFS (Apple File System), the default since macOS High Sierra and the right choice for SSDs; older or mechanical drives may still use Mac OS Extended (HFS+). Migration Assistant then moves apps, accounts, and files from another Mac, a Time Machine backup, or a Windows PC during setup. The App Store and Software Update handle patches after that.
Linux
Most Linux installs boot from a live USB: you write a distribution image (Ubuntu, Fedora, and others) to a stick, boot it, try the desktop, then run the installer. The installer partitions the disk, commonly ext4 for the root file system with a swap partition or swap file, and on a machine that already runs Windows it can install alongside it. That dual-boot setup leaves Windows in place and installs the GRUB boot loader, which shows a menu at power-on to pick Windows or Linux. Package managers such as apt and dnf install and update software afterward.
Mobile operating systems
Phones and tablets run a guided first-boot setup assistant rather than a disk installer, because the OS ships on the device. iOS and iPadOS setup walks through language, region, Wi-Fi, an Apple ID, Face ID or Touch ID, and a restore from an iCloud or computer backup, then activates the device with the carrier. Android setup mirrors this with a Google account, a screen lock, and a restore from a prior device or cloud backup. In a managed workplace, both enroll into mobile device management (MDM) during setup, which pushes configuration and apps automatically. Recognizing these cross-platform equivalents is part of A+ Core 2 objective 1.2, perform OS installations and upgrades in a diverse environment[4].
First-boot configuration (OOBE)
The install is not done when files finish copying; it is done when the out-of-box experience (OOBE) finishes and the desktop loads ready to use. OOBE runs in a fixed order on first boot, and each step is a support decision, as the figure lays out: localization, network, account, privacy, and updates.
Localization
The first screens set localization: country or region, the display language, one or more keyboard layouts, and the time zone and date/time format. These are easy to click past and annoying to fix later, since a mismatched keyboard layout types the wrong symbols, so set them correctly the first time.
Network
OOBE asks the machine to join a network next, over Wi-Fi or Ethernet. Connectivity matters here because the later steps depend on it: Windows 11 Home requires an internet connection and a Microsoft account to finish setup (Windows 11 requirements[9]), and updates cannot download without it.
The account decision
Choosing the first account type is the configuration choice with the longest reach:
- Local account: credentials stored only on that PC, with no cloud sync. Simple, offline, common for shared or lab machines.
- Microsoft account (MSA): a cloud identity that syncs settings and unlocks Store and OneDrive features; the default on Home.
- Domain join: the PC joins an on-premises Active Directory domain, so users sign in with domain credentials and administrators manage it by policy. Requires Windows Pro or higher.
- Microsoft Entra join: the cloud equivalent of a domain join for organizations that manage identity in Microsoft Entra ID (Entra device identity[13]), also Pro or higher.
Do not confuse a Microsoft account, which is one person's cloud login, with a domain or Entra join, which is an organization taking management of the device; questions lean on that distinction. Between the account and updates, OOBE also offers privacy and sign-in options (telemetry, location, and a Windows Hello PIN); accept or tighten these per policy.
Updates
The last OOBE step, and the first thing to do on any fresh or newly imaged machine, is Windows Update. A freshly installed image is months behind on security patches, so it pulls cumulative updates, and often driver and feature updates, before the machine is trustworthy on the network (how Windows Update works[14]). Ongoing update servicing and channels are covered in File Systems & Updates.
Localization, network, account type, and updates map to the settings groups A+ Core 2 objective 1.6 lists as Time and Language, Network and Internet, Accounts, and Update and Security (exam objectives[4]).
Exam-pattern recognition
A+ install questions rarely ask for a definition; they hand you a scenario with a constraint and ask what to do FIRST or NEXT. The winning move is to name the constraint (data must survive, disk over 2 TB, Windows 11 required, many machines) and pick the option that respects it, then reject the option that ignores it.
How the stems read
| Question stem says | Right answer | Common wrong answer |
|---|---|---|
| Move Windows 10 to 11, keep apps and files | In-place upgrade | Clean install, which discards apps and files |
| Windows 11 upgrade is blocked | Machine lacks TPM 2.0, Secure Boot, or UEFI | Add RAM, which is not the failing check |
| Deploy 40 identical lab PCs | Image deployment (Sysprep + PXE) | Installing each one by hand from USB |
| Boot disk is 3 TB but only 2 TB is usable | Disk is MBR; use GPT under UEFI | Replace the drive, which is not the fault |
| Repurpose a PC for another user, wipe data | Reset: Remove everything or clean install | Reset: Keep my files, which leaves data behind |
| OS is corrupt but user data must stay | Repair installation or Reset: Keep my files | Clean install, which erases the data |
| Freshly imaged PC before handover | Run Windows Update first | Going straight to production use |
| USB installer cannot see the NVMe disk | Load the storage controller driver | Reformatting, which the installer cannot reach yet |
Each row rewards reading the stated constraint literally: the drive count, the 2 TB ceiling, the TPM check, or the words keep versus remove. Naming the constraint first, then matching the install type or partition scheme to it, is the whole skill A+ Core 2 objective 1.2, perform OS installations and upgrades in a diverse environment[4], tests here. When the corruption runs deeper than a reinstall fixes, the next stop is OS and application troubleshooting.
Windows install types: what each keeps and when to run it
| Factor | Clean install | In-place upgrade | Image deployment | Repair installation |
|---|---|---|---|---|
| Existing files & apps | Erased | Preserved | Replaced by the image | Preserved |
| Best for | New disk, resale, malware cleanup | Windows 10 to 11 keeping the setup | Many identical machines | Corrupt OS, keep everything |
| Started from | USB / ISO boot media | Setup run inside Windows or Windows Update | Sysprep image via WDS / MDT / USB | Setup 'Repair' or Reset (Keep files) |
| Effort at scale | One machine at a time | One machine at a time | Fast and standardized | One machine at a time |
| Reinstall drivers & apps? | Yes | No | Baked into the image | No |
Decision tree
Sharp facts the exam loves — give these one last read before exam day.
Cheat sheet
Sharp facts the exam loves — scan these before test day.
- Choose the install type by what must survive
Four Windows install paths differ mainly by what they preserve: a clean install wipes the volume and starts fresh, an in-place upgrade keeps files, apps, and settings, image deployment clones one standard image onto many machines, and a repair installation reinstalls the same version over itself to fix corruption while keeping data. Name the goal first (keep data, wipe, or standardize) and the path follows.
Trap Running a clean install to fix a single corrupt OS, erasing data that a repair installation or Reset with Keep my files would have preserved.
- In-place upgrade is the supported Windows 10 to 11 path
An in-place upgrade runs Windows Setup from inside the running OS and keeps personal files, apps, and settings, which is how you move Windows 10 to Windows 11 and between feature versions. Aimed at the same version already installed, it also becomes a repair. Nothing needs reinstalling afterward, unlike a clean install.
Trap Assuming a clean install is required to go from Windows 10 to 11; the in-place upgrade carries apps and files across.
9 questions test this
- A technician creates a Windows 11 bootable USB flash drive using the Media Creation Tool. The technician inserts the USB into a Windows 10…
- A technician must upgrade a workstation running Windows 7 Professional directly to Windows 11 Pro while the user is on vacation. Which of…
- A technician must move a fleet of compatible Windows 10 Pro workstations to Windows 11 Pro while preserving each user's installed…
- A technician is preparing several machines running Windows 10 Enterprise to move to Windows 11 Enterprise, and the business requires that…
- A technician is upgrading several computers from Windows 10 Pro to Windows 11 Pro and must retain the installed applications and user…
- A technician needs to upgrade a workstation from Windows 10 Pro to Windows 11 Pro while preserving all user files, applications, and…
- A technician needs to upgrade a workstation from Windows 10 to Windows 11 while preserving the user's installed applications and personal…
- A technician inserts a USB drive with Windows 11 installation media created by the Media Creation Tool into a Windows 10 workstation and…
- A technician creates a bootable USB using the Windows 11 Media Creation Tool and runs setup.exe from the USB while logged into Windows 10…
- Sysprep generalize strips the SID before you capture an image
Before capturing a reference machine for image deployment, run Sysprep with the /generalize switch, which removes the machine-specific security identifier (SID) and hardware bindings so every cloned PC ends up with a unique identity. Deployment tools such as WDS, MDT, or Configuration Manager then push the image, usually over the network.
Trap Cloning a Windows image without running Sysprep generalize first; duplicate SIDs break domain membership and some management tooling.
- Reset this PC offers Keep my files or Remove everything
Push-button reset rebuilds Windows from on-box recovery files, or a cloud download, in two modes: Keep my files removes apps and settings but leaves personal data, while Remove everything wipes the volume and adds a data-cleaning option for a device you are handing on. Neither needs external media.
Trap Selecting Keep my files when repurposing a PC for a new user; personal data survives, so Remove everything is the correct wipe.
- UEFI boots GPT; legacy BIOS boots MBR
Firmware mode fixes the boot disk's partition style: UEFI boots Windows from a GPT disk and legacy BIOS boots it from an MBR disk, and the two are not interchangeable for the volume Windows starts from. Match them at install time or Setup rejects the disk or the machine will not boot.
Trap Installing to a GPT disk while firmware is still in legacy BIOS mode (or MBR under UEFI); the mismatched pair will not boot.
- MBR caps at 4 primary partitions and a 2 TB disk
An MBR (Master Boot Record) disk stores its partition table in the first sector, allows only four primary partitions (or three primary plus one extended holding logical drives), and cannot address space beyond 2 TB. A disk that shows only 2 TB usable out of a larger drive is the classic MBR symptom.
Trap Treating a 3 TB drive that shows only 2 TB as failing hardware; it is an MBR disk that cannot address the rest, so convert it to GPT.
- GPT allows 128 partitions and disks beyond 2 TB
A GPT (GUID Partition Table) disk, part of the UEFI standard, supports up to 128 partitions in Windows and boots disks far larger than 2 TB, and it keeps a backup partition table with CRC checksums so one corrupt sector does not lose the layout. It is the required style for a Windows 11 system disk.
- Convert MBR to GPT in place with mbr2gpt, no wipe
mbr2gpt.exe converts a system disk from MBR to GPT without deleting data, after which you switch firmware from BIOS to UEFI. The destructive alternative is DiskPart's clean followed by convert gpt, which erases the selected disk, so it fits a fresh install disk only.
Trap Running DiskPart clean against the wrong disk number; it erases whatever disk is selected, so confirm the number against list disk first.
- PXE boot pulls the installer over the network
A PXE (Preboot Execution Environment) boot uses the network card's ROM to get an address and boot-server name from DHCP, then downloads a WinPE boot image over TFTP that runs Setup or applies a deployment image. Backed by a server role such as WDS, it images many identical machines without carrying media to each one.
- No drives in Setup usually means a missing storage driver
When Windows Setup lists no disks to install to, the installer is missing the storage controller driver (often NVMe or RAID), so you supply the vendor driver via Load driver rather than assuming the disk is dead. Newer install media usually include it; older media may not.
Trap Concluding the disk has failed when Setup shows no drives; the missing storage controller driver is the far more common cause.
- macOS reinstalls from Recovery and formats APFS in Disk Utility
A Mac reinstalls from macOS Recovery, reached by holding the power button on Apple silicon or Command-R on Intel, and Disk Utility there erases the disk to APFS, the default file system since macOS High Sierra and the right choice for SSDs. Migration Assistant then brings apps, accounts, and files from another Mac, a Time Machine backup, or a PC.
- Linux dual-boot installs GRUB and leaves Windows in place
Installing a Linux distribution from a live USB alongside Windows partitions free space for Linux (commonly ext4 for root plus swap) and installs the GRUB boot loader, which shows a menu at power-on to pick Windows or Linux. Choosing to use the whole disk instead would overwrite the existing Windows install.
Trap Selecting erase disk or use entire disk in the Linux installer when you meant to dual-boot; it wipes the Windows partition.
- First-boot account type: local, Microsoft, domain, or Entra
OOBE's account choice has the longest reach: a local account is offline and specific to that PC, a Microsoft account is a cloud identity that syncs settings, a domain join hands management to on-premises Active Directory, and a Microsoft Entra join does the same for cloud identity. Domain and Entra joins require Windows Pro or higher.
Trap Confusing a Microsoft account (one person's cloud login) with a domain or Entra join (an organization taking management of the device); they are different choices.
- Run Windows Update first on any fresh or imaged machine
A freshly installed or newly imaged Windows machine is months behind on security patches, so Windows Update (cumulative, driver, and feature updates) is the first task before the machine is trusted on the network. Windows 11 Home also requires an internet connection and a Microsoft account to finish OOBE at all.
- Match the Linux distribution to its niche
The common distributions split by purpose: Ubuntu and its friendly Mint spin suit general desktops with long-term-support releases and huge communities, while Lubuntu's lightweight desktop revives old, low-RAM hardware. Debian is the rock-solid, fully community-run upstream that many other distributions are built on; Fedora is the fast-moving upstream proving ground for Red Hat Enterprise Linux; and Rocky Linux (like AlmaLinux) is a free, RHEL-binary-compatible drop-in replacement for CentOS.
Trap Treating Fedora as a stable long-term server base, when it is the bleeding-edge upstream and Debian or Rocky is the stable choice.
6 questions test this
- A nonprofit wants to repurpose a batch of aging PCs that have very limited RAM and older processors into usable workstations. The IT…
- A startup is deploying Linux servers to host its public-facing web applications. The team wants a free, widely adopted distribution that…
- An organization is moving office staff from older Windows PCs to a free operating system. Users want a traditional desktop with a familiar…
- Following the discontinuation of CentOS Linux, an IT department needs a free, community-supported server OS that is binary-compatible with…
- A software developer wants a free, community-supported Linux distribution that delivers the newest open-source technologies and the latest…
- An infrastructure team wants a Linux distribution for long-running servers that is entirely community-driven rather than backed by a single…
- The Media Creation Tool builds a bootable USB or an ISO
The Windows Media Creation Tool downloads Windows and writes it either to a bootable USB flash drive of 8 GB or larger or to an ISO file you can burn to DVD, which makes it the way to upgrade a PC that has no internet by preparing the media on another machine. It requires administrator rights on the computer running it.
Trap Assuming the Installation Assistant can upgrade an offline PC, when only Media Creation Tool media works without internet on the target.
7 questions test this
- A standard user on a Windows 10 workstation attempts to run the Windows 11 Media Creation Tool to create installation media for an in-place…
- A technician plans to upgrade several workstations from Windows 10 to Windows 11 and downloads the Media Creation Tool. When creating the…
- A technician needs to upgrade several workstations at a remote office from Windows 10 to Windows 11. The workstations have limited internet…
- A technician needs to create Windows 11 installation media to perform in-place upgrades on multiple Windows 10 workstations. Which of the…
- A technician needs to perform an in-place upgrade from Windows 10 to Windows 11 on a workstation that does not currently have internet…
- A technician is using the Windows 11 Media Creation Tool to create bootable installation media for upgrading several workstations. Which of…
- A technician is using the Media Creation Tool to create a bootable USB flash drive for a Windows 11 in-place upgrade on another…
- Windows 11 Pro adds the business features Home lacks
Home is the low-cost consumer edition for everyday use; stepping up to Pro adds domain and Entra join, BitLocker, the Hyper-V hypervisor, Group Policy and Windows Update for Business controls, and support for far more RAM, since Home caps at 128 GB while Pro reaches into terabytes. Education and Enterprise carry Pro's capabilities plus academic or large-organization management and licensing.
Trap Reaching for Home when the requirement is domain join, Hyper-V, Group Policy, or more than 128 GB of RAM, all of which need at least Pro.
5 questions test this
- A home user wants a single personal computer for web browsing, streaming, office documents, and gaming. The user has no need for domain…
- A university is deploying computers across its student labs and wants advanced management and security features comparable to the…
- An engineering firm is building a workstation with 256 GB of installed RAM for memory-intensive simulation software. The technician needs a…
- A software developer running Windows 11 Home needs to create and run multiple local virtual machines using the operating system's built-in…
- An administrator wants to use the Local Group Policy Editor and configure deferral of feature updates through Windows Update for Business…
- Go back reverts a Windows 11 upgrade for only 10 days
After an in-place upgrade to Windows 11, Settings > System > Recovery offers Go back to the previous Windows version, but only for a default window of 10 days, after which Windows deletes the old files in the Windows.old folder to reclaim space and the option greys out. Once that window has passed, reverting to Windows 10 requires a clean installation from media.
Trap Assuming Go back is available indefinitely, when reverting after the 10-day window needs a full clean install.
6 questions test this
- A user upgraded a workstation from Windows 10 to Windows 11 using the Installation Assistant five days ago. The user reports application…
- A technician upgraded a workstation to Windows 11. After the upgrade, the user reports compatibility issues with a critical business…
- A user upgraded their Windows 10 workstation to Windows 11 using the Windows 11 Installation Assistant. Two weeks later, the user reports…
- A user's workstation was upgraded from Windows 10 to Windows 11 using the Installation Assistant three weeks ago. The user now wants to…
- A technician used the Windows 11 Installation Assistant to perform an in-place upgrade on a user's workstation seven days ago. The user…
- A user upgraded from Windows 10 to Windows 11 using the Windows 11 Installation Assistant two weeks ago. The user now wants to revert to…
- The Windows 11 Installation Assistant has its own start-up prerequisites
Beyond the TPM 2.0, Secure Boot, and CPU hardware floor, the Windows 11 Installation Assistant only runs on a PC already updated to Windows 10 version 2004 or later, only supports x64 processors so it will not launch on an Arm device, and must be run with administrator rights. A machine that passes PC Health Check can still be blocked by an out-of-date Windows 10 build or an Arm CPU.
Trap Assuming a PC Health Check pass guarantees the Installation Assistant will run, when an old Windows 10 build or an Arm processor still stops it.
12 questions test this
- A technician is attempting to upgrade a laptop from Windows 10 to Windows 11 using the Windows 11 Installation Assistant. The tool fails to…
- A technician attempts to run the Windows 11 Installation Assistant on a workstation running Windows 10 version 1909. The workstation meets…
- A technician runs the Windows 11 Installation Assistant on a workstation with a supported 64-bit CPU, 8 GB of RAM, a 256 GB SSD, TPM 2.0…
- A technician confirms that a workstation meets all Windows 11 hardware requirements using the PC Health Check app. However, when the…
- A technician plans to upgrade a Windows 10 workstation to Windows 11 using the Windows 11 Installation Assistant. The workstation uses an…
- A technician is preparing to upgrade a Windows 10 workstation to Windows 11. The PC Health Check app confirms the hardware is compatible,…
- A technician attempts to upgrade a workstation to Windows 11 through Windows Update, but the upgrade option does not appear. The PC Health…
- A technician downloads the Windows 11 Installation Assistant on a laptop that meets all other Windows 11 hardware requirements. The tool…
- A technician attempts to run the Windows 11 Installation Assistant on a Windows 10 workstation that uses an ARM-based processor. The tool…
- A technician is preparing to use the Windows 11 Installation Assistant to upgrade several workstations from Windows 10. Which of the…
- A technician is upgrading a workstation to Windows 11 using the Installation Assistant. The PC Health Check app confirms all hardware…
- A technician attempts to run the Windows 11 Installation Assistant on a workstation running Windows 10 version 1903. The tool displays an…
- Windows Setup's install-location screen: unallocated auto-partitions, existing keeps Windows.old
At Windows Setup's 'Where do you want to install Windows?' screen, selecting an unallocated or empty drive and clicking Next lets Setup automatically create the required system, recovery, and primary partitions. Selecting an existing Windows partition without first formatting or deleting it installs alongside it and moves the prior installation into a Windows.old folder rather than erasing it.
Trap Assuming Setup always wipes the disk, when installing to an unformatted existing partition instead preserves the old system in Windows.old.
7 questions test this
- A technician is performing a clean installation of Windows 11 on a workstation with a new empty drive. After booting from the USB…
- A technician is performing a clean installation of Windows on a UEFI-based workstation. Windows Setup displays the error: 'Windows cannot…
- A technician performs a custom installation of Windows 10 using Windows Setup on a workstation with an existing Windows installation. The…
- A technician performs a custom installation of Windows 10 by booting from USB media. At the partition selection screen in Windows Setup,…
- A technician is performing a clean installation of Windows 10 on a new workstation with a blank hard drive. During Windows Setup, the…
- During Windows Setup, a technician selects the Custom installation type and chooses the existing Windows partition without first deleting…
- A technician is performing a clean installation of Windows 11 on a new workstation. During Windows Setup, the technician deletes all…
References
- Windows Setup installation process
- Sysprep (Generalize) a Windows installation
- Push-button reset overview
- CompTIA A+ Core 2 (220-1202) Certification Exam Objectives (V15, Document Version 3.0)
- Windows Preinstallation Environment (WinPE) introduction
- Windows and GPT FAQ
- Convert an MBR disk to GPT (MBR2GPT)
- DiskPart command-line options
- Windows 11 requirements
- NTFS overview
- exFAT file system specification
- Configure UEFI/GPT-based hard drive partitions
- Microsoft Entra device identity overview
- How Windows Update works