Exercise 2: Drives With No Used/Free Values — Possible Solution ==================================================================== THREE DRIVES WITH BLANK USED/FREE COLUMNS ------------------------------ Per the chapter's own Get-PSDrive output, Alias, Env, HKCU (or HKLM), Cert, Function, and Variable all show blank Used/Free columns - any three of these are a correct answer (for example: Env, HKLM, and Cert). WHY THOSE COLUMNS ARE BLANK ------------------------------ Used and Free gigabytes describe disk capacity - how much space is occupied versus available on a physical storage device. Only the FileSystem provider's own drives (like C) are actually backed by a real disk with a real capacity to measure. Env, HKLM, Cert, Alias, Function, and Variable are all backed by something other than a disk (environment variables, registry hives, certificates, in-memory aliases/functions/variables), so the concept of "used/free gigabytes" simply doesn't apply to them - there's no disk capacity underneath to report in the first place. WHY THIS WORKS AS AN ANSWER ------------------------------ It correctly names three non-FileSystem drives from the chapter's own example output and correctly explains that the blank columns reflect the absence of any real disk capacity behind those particular providers, not a display bug or missing data.