Forum Discussion
Jul 31, 2017
Array not supported?
Will this say that Array is not supported by set-CsRGSHolidayset?
- Mike ShivtorovCopper Contributor
The error message says that it can't convert your untyped (object[]) array to the required type.
Try to specify the type for array elements:
[Microsoft.Rtc.Rgs.Management.WritableSettings.Holiday[]]$HolSetArray = @();
$HolSetArray += New-CsRgsHoliday -StartDate "2017-01-01T00:00:00" -EndDate "2017-01-01T23:59:59" -Name "New Year's Day"
$HolSetArray += New-CsRgsHoliday -StartDate "2017-12-26T00:00:00" -EndDate "2017-12-26T23:59:59" -Name "Christmas Day"Sorry for not getting back to this post. I ended up doing it like this:
The right way to add is descibred here: https://technet.microsoft.com/en-us/library/gg398736.aspx
The following example is what you are looking for:
$x = New-CsRgsHoliday -StartDate "12/25/2010" -EndDate "12/26/2010" -Name "Christmas Day" $y = Get-CsRgsHolidaySet -Identity "service:ApplicationServer:atl-cs-001.litwareinc.com" -Name "2010 Holidays" $y.HolidayList.Add($x) Set-CsRgsHolidaySet -Instance $y
I know about this, but problem is that you cant use .Add($x) on a Array.
Need to use something like $Array += $newArray.
I tried with Add-member now, and was sucessfull to add data to the variable.
But when i try to use it in Set-CsRGSHolidayset it does nothing.
- According to the documentation is does indeed
https://technet.microsoft.com/en-us/library/gg398403.aspx
I guess it is a different cmdlet