Forum Discussion
Jul 31, 2017
Array not supported?
Will this say that Array is not supported by set-CsRGSHolidayset?
Jul 31, 2017
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
Jul 31, 2017
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.
- Jul 31, 2017According to the documentation is does indeed
https://technet.microsoft.com/en-us/library/gg398403.aspx
I guess it is a different cmdlet - Jul 31, 2017That is not support by that cmdlet. It has the be of the type holidayset
- Jul 31, 2017
Strange, as it works for new-csrgsholidayset :-/