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関連の苦境のいくつかのために!)。サーバー2008 R2でサポートされている新しいバージョンのPowershellでソリューションが動作する場合、サーバーをアップグレードするための追加の "プッシュ"が得られます:-)
—
David Keaveny、2015
サーバー2008R2は現在、最大4.0までサポートしています。Windows PowerShellの要件を参照してください:technet.microsoft.com/en-us/library/hh847769.aspx
—
Davidw
Get-Host
調べるために使用します。