试图找到从 powershell 更新 Taskscheduler 中现有任务的 "Description" 参数的方法

Trying to find ways to update the "Description" parameter of an existing task in Taskscheduler from powershell

我正在尝试从多个远程服务器上的任务计划程序禁用任务,同时我也想更新这些任务的描述。

虽然用于计划任务的命令集非常简单,例如: 获取计划任务 禁用计划任务 设置计划任务 等等

我找不到有助于修改现有任务描述的参数或命令行。

如果有人对此有任何见解或能够找到解决方法,我们将不胜感激。

谢谢!

正如我在评论中提到的,这可以通过以下方式解决:

  1. 正在获取现有任务实例
  2. 修改现有实例的描述
  3. 正在更新任务
# fetch existing task object
$task = Get-ScheduledTask "Pooja's Task"

# update the description
$task.Description = "New and improved description!"

# persist the change
$task |Set-ScheduledTask