Forum Discussion
jhenke6229
Sep 08, 2021Copper Contributor
How to return Windows Scheduled task Description?
From the Windows Scheduled Task: I see the Date, Author, Description, and URI tags under RegistrationInfo tag in the task XML file I want to get the Description value. I tried this: $Tas...
- Sep 20, 2021
jhenke6229 You can try using these cmdlets:
Get-ScheduledTask -TaskName tasky # Description Get-ScheduledTaskInfo -TaskName taskyIf memory serves you;ll need to use both as the info isn't contained in 1 place.
psophos
Sep 20, 2021Brass Contributor
jhenke6229 You can try using these cmdlets:
Get-ScheduledTask -TaskName tasky # Description
Get-ScheduledTaskInfo -TaskName taskyIf memory serves you;ll need to use both as the info isn't contained in 1 place.
- jhenke6229Sep 26, 2021Copper Contributor
psophos Thanks. Yep, can't believe I missed that