PowerShell - System AdministrationWhich PowerShell cmdlet is used to create a new registry key?AGet-ItemPropertyBSet-ItemPropertyCNew-ItemDRemove-ItemCheck Answer
Step-by-Step SolutionSolution:Step 1: Understand cmdlet purposeNew-Item is used to create new items, including registry keys.Step 2: Compare other cmdletsSet-ItemProperty changes values, Get-ItemProperty reads values, Remove-Item deletes keys.Final Answer:New-Item -> Option CQuick Check:Create registry key = New-Item [OK]Quick Trick: Use New-Item to create keys, not Set-ItemProperty [OK]Common Mistakes:Confusing Set-ItemProperty with New-ItemUsing Get-ItemProperty to create keysTrying Remove-Item to create keys
Master "System Administration" in PowerShell9 interactive learning modes - each teaches the same concept differentlyLearnWhyDeepVisualTryChallengeProjectRecallTime
More PowerShell Quizzes Active Directory - Get-ADUser - Quiz 12easy Active Directory - Organizational unit operations - Quiz 8hard Automation Patterns - Scheduled scripts with Task Scheduler - Quiz 7medium Cross-Platform PowerShell - AWS PowerShell module - Quiz 8hard Cross-Platform PowerShell - PowerShell on macOS - Quiz 12easy Scripting Best Practices - Code signing - Quiz 14medium Scripting Best Practices - WhatIf and Confirm support - Quiz 14medium Scripting Best Practices - Parameter validation - Quiz 2easy System Administration - Event log reading - Quiz 4medium System Administration - Environment variables - Quiz 5medium