Change support group in template
import-module 'C:\Program Files\Microsoft System Center 2012 R2\Service Manager\Powershell\System.Center.Service.Manager.psd1'
But I don't have property "support group". In this script I have $tmp.PropertyCollection how I can work with this collection? I think I must work with SCSMProjection, who know how I can make this?
Answers
$serviceRequestHashTable = @{
Title = $serviceRequestTitle;
Description = $serviceRequestDescription;
Urgency = $serviceRequestUrgency;
Priority = $serviceRequestPriority;
Area = $serviceRequestArea;
Source = $serviceRequestSource;
SupportGroup = $ServiceRequestSupportGroup;
ID = “SR{0}”;
}
HTH