Forum Widgets
Latest Discussions
Can't register for Microsoft Hardware Developer Program
When trying to sign in to register for the windows Hardware developer program, It throws an error saying that my account isn't a Microsoft account but it very much is. In fact, it's an Entra ID Global Administrator account. How do I fix this or get Microsoft to fix this.SolvedjamesyenkeMar 12, 2024Copper Contributor5.1KViews3likes26CommentsUnable to create support request in Partner Center
Hello, I am unable to create support request in partner center. I am getting the following error message while trying to create a support request. "There was an issue creating your service request. Please wait 10 minutes and try again." Can someone let me know if there is another way to contact support in Partner center.? Thanks, AriAri2024Jan 17, 2024Copper Contributor1.7KViews1like14CommentsMicrosoft Partner Center - Error After Payment
I am writing to bring to your attention a persistent issue I have been experiencing while attempting to register an app developer account in the Microsoft Partner Center. By following this complete guide provided by support team: https://learn.microsoft.com/en-us/windows/uwp/xbox-apps/devkit-activation I initiated the registration process on Tuesday, November 14th, and encountered no difficulties until I reached the payment section for the personal license. At this point, I added my credit card details (which I have successfully used for previous console purchases), but after a prolonged loading period, the page displayed an error message stating: "Sorry, something went wrong. Please try again later." CorrelationID: a5dc1f8f-631e-4c08-902c-1700622542bf Correlation Vector: MGJGKh0A2UyyjU0Q.0 App Server: Date: 18 Nov 2023 20:39:37 +00:00 Frustrated by this setback, I contacted Xbox support seeking assistance, but unfortunately, none of the representatives have been able to resolve the issue. As I am eager to acquire the developer license to utilize my Xbox Series S as a study tool for my career, this problem is hindering my progress. I kindly request your prompt attention and assistance in resolving this matter. Your help is crucial for me to proceed with my development plans. I appreciate your understanding and am hopeful for a swift resolution to this issue. Thank you for your time and support.SolvediPerry343Nov 18, 2023Copper Contributor4.1KViews0likes14CommentsConfiguring the Secure App Model for PowerShell / API / Graph scripting with GDAP for Partners
Hi whomever may find this! With the old https://www.microsoftpartnercommunity.com/t5/Partner-Center-Security-Guidance/ct-p/partner-center-security-guidance going read-only as of March 8th, 2023 I thought I'd post a few useful links here in case someone is searching and unable to post on the old forums. The 2 main GDAP related threads on the old forum that feature info on getting Secure App Model to work with GDAP and the Exchange Online V3 PowerShell module (with the ExO automation App ID: a0c73c16-a7e3-4564-9a95-2bdf47383716 being retired eventually) are: https://web.archive.org/web/20230524021116/https://www.microsoftpartnercommunity.com/t5/Secure-Application-Model/MS-Graph-and-Partner-GDAP-access-customer-tenant-via-graph/td-p/69514 https://web.archive.org/web/20230524165847/https://www.microsoftpartnercommunity.com/t5/Secure-Application-Model/Retirement-of-the-Legacy-Exchange-Online-Public-Client-ID-app-ID/td-p/84770 These are both long threads, lots of info in a meandering kind of way. They disappeared after June 30th, 2023 - so these are links to the Internet Archive's WaybackMachine. But they're how we worked it all out - so useful background. So the best place to find current, step-by-step instructions for getting things to work is this post: https://tminus365.com/my-automations-break-with-gdap-the-fix/ It appears Nick has collected up all the info from the above 2 links, tested it, and made a fairly complete blog post, so start there. (note: for the ExO V3 stuff you must use the Customer's initial onmicrosoft.com domain for things to work properly) Big thanks to him! Nick has 2 additional posts that may be of interest as well. One on https://tminus365.com/how-to-leverage-microsoft-apis-for-automation/. And one on https://tminus365.com/gdap-multi-tenant-automation/. For some background info you can check out some of these links: The code leverages the https://learn.microsoft.com/en-us/partner-center/developer/secure-app-model-framework. It can be implemented in https://learn.microsoft.com/en-us/partner-center/developer/enable-secure-app-model#powershell. Setting it up involves a https://learn.microsoft.com/en-us/powershell/partnercenter/multi-factor-auth?view=partnercenterps-3.0. But many (most?) of us likely followed https://www.cyberdrain.com/connect-to-exchange-online-automated-when-mfa-is-enabled-using-the-secureapp-model/ (or https://www.gavsto.com/secure-application-model-for-the-layman-and-step-by-step/ too) ... originally. Though still useful background info these links have lots of outdated info, eg. they still reference Msol and AzureAD commands, but you can still mostly use them to follow along. There's also a post about https://www.gavsto.com/msp-powershell-for-beginners-part-2-securely-store-credentials-passwords-api-keys-and-secrets/ secrets, like the RefreshTokens. For CURRENT info, use the link above for https://tminus365.com/my-automations-break-with-gdap-the-fix/. Msol/MSOnline doesn't work with GDAP and AzureAD uses the old AzureAD Graph which is also being retired (use MS Graph instead, which works with GDAP). Remember: RefreshTokens are good for 90 days, redeem them for an AccessToken which is good for 60 mins. After 60 mins get another one. Before 90 days are up, get an AccessToken (which always includes a new RefreshToken) and save it instead of the old one. You can repeat that forever. But you may need to restart the process if the account you used initially changes its password - so use a dedicated account. For: Exchange Online and the https://learn.microsoft.com/en-us/powershell/partnercenter/exchange-online-gdap-app?view=partnercenterps-3.0 module and you can refer to the posts in this https://www.microsoftpartnercommunity.com/t5/Secure-Application-Model/Retirement-of-the-Legacy-Exchange-Online-Public-Client-ID-app-ID/td-p/84770, since there are mistakes and omissions in the official MS docs. Main error: use the original .onmicrosoft.com domain as the CustomerTenantID when connecting with Connect-ExchangeOnline If you use their public customer.com or their TenantID (Guid) it will work inconsistently, and you'll have problem writing (reading may work) The Secure App Model mainly uses Delegated permissions, see: https://learn.microsoft.com/en-us/graph/auth/auth-concepts and there's more info https://learn.microsoft.com/en-us/graph/permissions-overview?tabs=http Any Graph API calls will list Permissions needed depending on if you're using Delegated or Application, with https://learn.microsoft.com/en-us/graph/api/user-get?view=graph-rest-1.0&tabs=http#permissions for example. We generally use Delegated since we're accessing on behalf of Customers. You'll need to ensure your Secure App Registration has the required Graph permissions AND so does your customer Consent. Hopefully that helps someone! --Saul [Edited to add the WaybackMachine links and Nick's new posts]sansbacherMay 12, 2023Brass Contributor8.9KViews4likes13CommentsUsers section missing from the new M365 admin center?
Hi all, Microsoft recently started redirecting admin.microsoft.com to admin.cloud.microsoft. People with the correct GDAP roles are able to access the Users section from the admin.microsoft.com admin center, but that section is missing on the new admin.cloud.microsoft admin center. The issue does not appear to be impacting everyone with the appropriate GDAP roles. Has anyone else run into this issue? Support tells me that we are the only partner reporting this issue. Thanks! -jonSolvedjonwbstr24Jul 29, 2025Iron Contributor384Views0likes11CommentsNo reply from support on my case
Hello, Is the Services Hub for partners deprecated? I've created a case (2412110050003195) using my partner account mid-december 2024 and I still haven't been contacted by Microsoft about it. Could someone have a look at my request and at least give me a feedback ? Kr, GeraldSolved486Views0likes11CommentsThe personal verification of the hardware developer account for WHQL authentication does not match
怎么办呢yth1370Aug 01, 2024Copper Contributor910Views0likes11CommentsMoving tenant to partner account.
Hi All! I have a challenge with my partner account vs two tenants that I operate, and I need some advice. I log in to my Microsoft partner account with "user (at) domain-a.com" In the partner portal, I manage my subscriptions and my benefits. From that login, I can reach my tenant with Tenant Id: d6*-*-*-*-* by portal.azure.com In this tenant, I have nothing more than the user I logged in with. Then, if I log in to portal.azure.com with another (work) account, "user (at) domain-b.com", I can access all the resources I need for my business. This tenant got Tenant Id: c5*-*-*-*-* Here, I have VMs, storage accounts, Office 365 accounts, and more. In this tenant, I need to consume the Azure benefits included in my Legacy Silver Subscription, which I got in my other tenant. In Short, Can I somehow attach my "c5" tenant to my partner subscription in "user (at) domain-a.com" without having to move resources so that I can consume benefits in this tenant? Ideally, I would just like to replace the "d6" tenant with my "c5" tenant. Many thanks for your thoughts! /HakanSolvedhakan-anderssonApr 24, 2024Copper Contributor1.9KViews0likes9CommentsMicrosoft Partners logo usage
Hi everyone! My company is a Spanish Microsoft Partner. I couldn't fin any information about this, I was hoping someone could help me out. Where can I access / find authorised Microsoft Logos to use on our web page? Thank you very much. Cheers, Monserrat.msalazar595Jan 10, 2024Copper Contributor4KViews1like9CommentsPartner lockout of Microsoft 365 tenant – looking for advice on next steps
Hello all, I’d appreciate some guidance from the community on a serious situation we are facing. On 12 September 2025, our Microsoft partner unilaterally locked us out of our Microsoft 365 tenant. They retained exclusive Global Administrator / Partner Delegated Admin rights, which means: All staff and directors are unable to access email, Teams, SharePoint/OneDrive, or even log into their Azure AD-authenticated workstations. Our corporate and staff personal data is now inaccessible to us as the controller. Access restoration has been explicitly conditioned on payment of a disputed invoice (not related to Microsoft licence pass-through). This raises several concerns: Operational: we are effectively paralysed. Security/IP: the partner still has exclusive access to proprietary source code and other confidential business data. Compliance: we cannot meet our GDPR/UK DPA obligations on availability of personal data while locked out. We contacted Microsoft Business Conduct on Friday evening with full details of the incident, but so far no human response has been received to those emails. Questions for the community From a Microsoft tenancy perspective – what’s the fastest/most effective way to remove a partner’s delegated admin access if they refuse to release it voluntarily? Has anyone experienced or seen a similar scenario where access was conditioned on disputed payments? Are there formal Microsoft Partner Code of Conduct provisions that directly address this type of misuse of delegated admin rights? Any practical lessons on balancing the technical fix (regaining control of the tenant) with the legal approach (injunction, regulatory notifications)? My focus is on regaining secure access, protecting data/IP, and ensuring compliance. Any experience, insight, or links to Microsoft policy/resources would be greatly appreciated.ErmsergSep 16, 2025Copper Contributor113Views0likes8Comments
Resources
Tags
- tech question or issue70 Topics
- Partner Center Security32 Topics
- APIs and Services22 Topics
- Azure AD8 Topics
- GDAP6 Topics
- Secure App Model4 Topics
- azure vm4 Topics
- azure3 Topics
- Partner question3 Topics
- Intune2 Topics