我正在研究一些使用Powershell来更新执行各种应用程序的现有计划任务的发布自动化脚本。在我的脚本中,我可以设置应用程序的“路径”和“工作目录”,但似乎没有将更改保存回任务。
function CreateOrUpdateTaskRunner {
param (
[Parameter(Mandatory = $TRUE, Position = 1)][string]$PackageName,
[Parameter(Mandatory = $TRUE, Position = 2)][Version]$Version,
[Parameter(Mandatory = $TRUE, Position = 3)][string]$ReleaseDirectory
)
$taskScheduler = New-Object -ComObject Schedule.Service
$taskScheduler.Connect("localhost")
$taskFolder = $taskScheduler.GetFolder('\')
foreach ($task in $taskFolder.GetTasks(0)) {
# Check each action to see if it references the current package
foreach ($action in $task.Definition.Actions) {
# Ignore actions that do not execute code (e.g. send email, show message)
if ($action.Type -ne 0) {
continue
}
# Ignore actions that do not execute the specified task runner
if ($action.WorkingDirectory -NotMatch $application) {
continue
}
# Find the executable
$path = Join-Path $ReleaseDirectory -ChildPath $application | Join-Path -ChildPath $Version
$exe = Get-ChildItem $path -Filter "*.exe" | Select -First 1
# Update the action with the new working directory and executable
$action.WorkingDirectory = $exe.DirectoryName
$action.Path = $exe.FullName
}
}
}
到目前为止,我一直无法在文档(https://msdn.microsoft.com/en-us/library/windows/desktop/aa383607(v=vs.85).aspx)中找到明显的保存功能。我在这里采用错误的方法,是否需要处理XML任务?
版本2.0(请参阅serverfault.com/questions/666671/…了解与Verson相关的一些问题!)。如果您的解决方案可以使用Server 2008 R2支持的更高版本的Powershell,那么这将给我额外的“推动”以升级服务器:-)
—
David Keaveny 2015年
Server 2008R2当前最多支持4.0。请参阅Windows PowerShell要求:technet.microsoft.com/en-us/library/hh847769.aspx
—
Davidw,2015年
Get-Host
找出。