MPrentice

Results 15 comments of MPrentice

Same problem is occurring with New-PartnerCustomer cmdlet.

@DonEmmaPerez Thank you. The parameter solved my issue.

Here's how we do this: connect-msolservice # Connect as yourself connect-partnercenter $customers = Get-PartnerCustomer | Sort-Object -Property Name foreach ($c in $customers) { try { $null = get-msoldomain -tenantID $c.customerid...

Google the error and see why it is happening. You will also see that two lines of my response joined into a single line accidentally. I've given you the foundation,...

I've recently discovered this which I believe is the correct solution: Get-PartnerCustomerManagedService -CustomerId |where {$_.GroupName -eq 'Office'} | select Name,ManagedServiceID This provides the listing of services that can be managed,...

If you expand the test to include the billingaddresscity and also the billingaddresspostalcode, you then get this error when you don't have the -BillingAddressState parameter New-PartnerCustomer : State is a...

I have PartnerCenter module v3.0.10 installed. When I run against the production environment I get the error that @ac-cm sees and I can confirm the Uri that @mbosgoed reports. When...

Upon further review of the debug output I see what I believe is the first 500 of our customers being returned and then the error occurs. Is this a problem...

@jonwbstr Yes, this will stop working again when the endpoint changes, and maybe another fix is needed to be a more resilient change but that can probably wait until the...

@ili101 I'll admit building a module like this is beyond my programming ability. Rather than re-inventing the wheel can't we expand upon what has already been created as part of...