Fixed:
7. Lync – MeetMeetingMax set to unlimited errors out lots of things 8. Hosted Organization – When creating an organization manually, the Org Name is taken as the first accepted domain for exchange, if this org name is not a domain it creates the org incorrectly. This should take normal names and not take this as a domain name for the accepted list, we have a good use for non-domain org names
This commit is contained in:
parent
2408accc04
commit
fdbda91cdd
12 changed files with 193 additions and 43 deletions
|
@ -199,7 +199,8 @@ namespace WebsitePanel.Providers.HostedSolution
|
|||
//create conferencing policy
|
||||
cmd = new Command("New-CsConferencingPolicy");
|
||||
cmd.Parameters.Add("Identity", organizationId);
|
||||
cmd.Parameters.Add("MaxMeetingSize", maxConferenceSize);
|
||||
|
||||
cmd.Parameters.Add("MaxMeetingSize", ((maxConferenceSize == -1) | (maxConferenceSize > 250)) ? 250 : maxConferenceSize);
|
||||
cmd.Parameters.Add("AllowIPVideo", enableConferencingVideo);
|
||||
ExecuteShellCommand(runSpace, cmd, false);
|
||||
transaction.RegisterNewConferencingPolicy(organizationId);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue