我正在關閉這個問題 - 它似乎無法覆蓋組的TFS工作項目創建規則。
我的目標 - 只對特定警報創建工作項目 - 似乎被觸發一個自定義的PowerShell腳本,點菜這個頁面中進行:http://blog.coretech.dk/kra/changing-alert-resolution-state-automatically/
我沒有,但是,必須從上面的頁面改劇本爲此:
#Read out the RMS name
$objCompSys = Get-WmiObject win32_computersystem
$rootMS = $objCompSys.name+"."+$objCompSys.domain
$ResolutionState = 248
#Initializing the Ops Mgr 2007 Powershell provider
add-pssnapin 「Microsoft.EnterpriseManagement.OperationsManager.Client";
set-location 「OperationsManagerMonitoring::";
new-managementGroupConnection -ConnectionString:$rootMS;
set-location $rootMS;
$Alerts = get-alert -criteria "ResolutionState = 0 AND Severity = 1 AND Name LIKE 'ITU%'"
foreach($Alert in $Alerts)
{
$Alert.Name
$Alert.ResolutionState = $ResolutionState
$Alert.Update("Resolution State changed automatically by the notificaton")
}
注意上面的腳本不能使用標準PowerShell提示符進行測試 - 它必須是由「業務經理殼」的方式進行測試。
希望這可能會幫助其他人在相同的情況。