Multiple choice technology

Which of the below CMdLet is used in PowerShell to get the list of Scheduled Tasks created in Local/Remote System?

  1. $colItems = get-wmiobject -class " Win32_Directory " -namespace "root\CIMV2"-computername $strComputer
  2. $colItems = get-wmiobject -class " Win32_Share " -namespace "root\CIMV2"-computername $strComputer
  3. $colItems = get-wmiobject -class "Win32_ScheduledJob" -namespace "root\CIMV2"-computername $strComputer
  4. $colItems = get-wmiobject -class " Win32_SystemPartitions " -namespace "root\CIMV2"-computername $strComputer
Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Win32_ScheduledJob WMI class represents scheduled tasks created with the AT command (legacy Windows scheduler). Option A queries directories, option B queries shared folders, and option D queries disk partitions - none are related to scheduled tasks.