I'm trying to use the following command to set the default OU for new distribution groups in Exchange 2010:
Set-OrganizationConfig -DistributioNGroupDefaultOU 'corp.company.com/Employees/MailingList' but I am getting the error:
> Cannot process argument transformation on parameter
> 'CustomerFeedbackEnabled'. Cannot convert value "System.String" to
> type "System.Nullable`1[System.Boolean]", parameters of this type only
> accept booleans or numbers, use $true, $false, 1 or 0 instead.
> + CategoryInfo : InvalidData: (:) [Set-OrganizationConfig], ParameterBindin...mationException
> + FullyQualifiedErrorId : ParameterArgumentTransformationError,Set-OrganizationConfig
I saw an online tutorial that suggested this method but it doesn't seem to be working for me. I've tried setting the CustomerFeedbackEnabled param but it just keeps asking for more and more params.
I've also tried specifying the OU in the LDAP 'OU=MailingList,OU=Employees,DC=CORP,DC=COMPANY,DC=COM' format to no avail.
Any suggestions?