You find a Microsoft 365 Business account by checking the domain’s DNS records, querying Microsoft’s tenant lookup endpoints, signing into the Microsoft 365 admin center, or using the Microsoft Entra admin center to locate the tenant ID tied to the organization’s email domain. This process sounds simple, but federal law sets hard limits on who may actually perform the search and what they may do with the information once they find it. The Computer Fraud and Abuse Act (CFAA) and the Stored Communications Act (SCA) turn an innocent-looking lookup into a federal crime the moment you cross an authorization line.
The problem is that most people searching for a Microsoft 365 Business account mix three very different tasks into one. They confuse locating a tenant (public DNS data), accessing a tenant (requires credentials and authority), and recovering a tenant (requires proof of ownership under Microsoft’s policies and, often, corporate records filed with a Secretary of State). Each task has its own rules, its own risks, and its own paper trail.
According to Microsoft’s Digital Defense Report 2025, more than 600 million identity attacks hit Microsoft 365 tenants every single day, and over 90 percent of those attacks start with someone finding an account that should have stayed hidden. That number is why the rules matter.
Here is what you will learn in this guide:
- 🔍 Every lawful method to find a Microsoft 365 Business account, from DNS lookups to admin center searches
- ⚖️ The federal and state laws that decide whether your search is legal or a crime
- 🧾 How to recover a lost admin account using Microsoft’s domain-verification process
- 🛠️ The exact tools, URLs, and PowerShell commands that work in 2026
- 🚫 The most common mistakes people make and how each one can cost you money, access, or freedom
Understanding What a Microsoft 365 Business Account Actually Is
A Microsoft 365 Business account is not one thing. It is a bundle of three connected items: a tenant (the organization’s isolated cloud space), a subscription (the paid license plan like Business Basic, Business Standard, Business Premium, or Apps for Business), and one or more user accounts tied to that tenant through Microsoft Entra ID. When you try to find a Microsoft 365 Business account, you are really trying to find one or more of these three layers.
The tenant is the foundation. Every tenant has a unique tenant ID (a GUID) and a default domain that ends in .onmicrosoft.com. The tenant also holds any custom domains the business has verified, like acmecorp.com. You can see the tenant’s public side without logging in, because DNS records are public by design under ICANN policy.
The subscription layer is private. Only a Global Administrator or Billing Administrator can see which plan the business pays for, how many seats it has, and when the next renewal falls. The user-account layer is even more private, because each user’s mailbox, OneDrive, and Teams chats are protected as electronic communications under the Stored Communications Act.
Tenants, Subscriptions, and User Accounts Explained
A tenant is a logical container that Microsoft creates the first time any person in the organization signs up for a business service. The Microsoft Learn tenant documentation explains that the tenant holds all of the organization’s data, policies, and identities in one isolated partition of Microsoft’s cloud. The consequence of confusing a tenant with a subscription is real: if you cancel a subscription thinking it will delete the tenant, the tenant stays alive for 30 days and still counts as active for legal and compliance purposes.
A subscription is the commercial agreement. It lives inside the tenant and controls which services each user may use. The Microsoft 365 Business plan comparison shows that Business Basic starts at 6 dollars per user per month in 2026, while Business Premium runs 22 dollars per user per month and adds Intune and Defender for Business.
A user account is an identity object inside Entra ID. It has a User Principal Name (usually an email address), a password, multi-factor settings, and a set of licenses. A common misconception is that deleting a user deletes their data. It does not. Microsoft keeps the deleted user’s mailbox and OneDrive in a soft-deleted state for 30 days, and the in-place hold feature can keep it longer for litigation purposes under FRCP Rule 37(e).
The Role of Microsoft Entra ID
Microsoft Entra ID (the service formerly called Azure Active Directory) is the identity backbone for every Microsoft 365 Business tenant. The Entra ID overview describes it as a cloud-based identity and access management service that authenticates every sign-in attempt. Without Entra ID, there is no Microsoft 365 Business account to find, because the directory is what turns a plain email address into a tenant-linked identity.
Every tenant has exactly one Entra ID directory. The directory stores user objects, group objects, device objects, and application registrations. When you use any tenant-lookup tool, you are really querying Entra ID’s public discovery endpoint, which returns a tenant ID if one exists for the domain you ask about.
The consequence of not understanding Entra ID is that people try to log in with personal Microsoft accounts (the kind used for Xbox or Outlook.com) and get confused when the business tenant rejects them. A personal account is a consumer identity that lives in a separate directory called the Microsoft Services Account system. The two directories do not share passwords, licenses, or data.
Why the Distinction Matters Legally
The distinction between tenant, subscription, and user matters because different federal statutes protect each layer. The Electronic Communications Privacy Act protects the content of messages stored on behalf of a business. The CFAA protects the access itself, regardless of content. The Defend Trade Secrets Act protects any trade secret that happens to sit inside a mailbox or SharePoint site.
A lookup that touches only public DNS data is almost always lawful. A lookup that queries Microsoft’s public tenant endpoint is also lawful, because Microsoft publishes that endpoint for anyone. A lookup that tries to log in with someone else’s credentials crosses into CFAA territory, and the Supreme Court’s 2021 ruling in Van Buren v. United States made clear that exceeding authorized access is still a federal offense even when the login itself works.
Lawful Methods to Locate a Microsoft 365 Business Account
Finding a Microsoft 365 Business account lawfully comes down to five methods, each of which uses only public data or the seeker’s own valid credentials. Every method below respects the CFAA, the SCA, and the Federal Trade Commission Act Section 5 ban on unfair or deceptive practices.
Method 1: MX Record and DNS Lookup
The MX (Mail Exchange) record of a domain tells the world where that domain’s email is hosted. If you run a public lookup on acmecorp.com and the MX record points to acmecorp-com.mail.protection.outlook.com, you have a very strong signal that the business uses Microsoft 365 or Exchange Online. The MXToolbox MX lookup is the most common free tool for this check.
Plain-English explanation: DNS is the public phone book of the internet, and MX records are the part of that phone book that lists mail servers. The consequence of ignoring DNS data is that you miss the single clearest public indicator of a Microsoft 365 tenant. A real-world example: Maria, a sales rep at a marketing agency, runs an MX lookup on a prospect’s domain, sees the mail.protection.outlook.com record, and confidently pitches her Microsoft 365 migration service. A common misconception is that MX records prove the presence of a paid subscription; they only prove that mail flows through Microsoft, which could also mean a free trial.
You can also check the autodiscover CNAME record, which usually points to autodiscover.outlook.com for Microsoft 365 tenants. The Microsoft Learn DNS reference lists every DNS record that Microsoft requires a tenant to publish. The SPF record (often v=spf1 include:spf.protection.outlook.com -all) is another strong signal that you are looking at a Microsoft-hosted domain.
Method 2: Microsoft’s Public Tenant Discovery Endpoint
Microsoft publishes an OpenID Connect discovery endpoint at https://login.microsoftonline.com/{domain}/.well-known/openid-configuration. If you replace {domain} with a real domain, the endpoint returns a JSON document that includes the tenant ID. The Microsoft identity platform documentation explains that this endpoint exists so that applications can discover tenant metadata before authentication.
Plain-English explanation: this is Microsoft’s official “does this domain have a tenant” service. The consequence of using it incorrectly is zero, because the endpoint is public and designed to be queried. A real-world example: Jamal, an IT consultant, needs to confirm that a new client’s domain is federated with a Microsoft 365 tenant before he quotes a migration, so he fetches the openid-configuration document and reads the issuer field.
A common misconception is that querying the endpoint somehow notifies the tenant. It does not. The endpoint is stateless and anonymous, exactly like any public website.
Method 3: Microsoft 365 Admin Center Sign-In
If you are an administrator of the tenant, the fastest way to find every account is to sign in at admin.microsoft.com and open the Users > Active users page. The Microsoft 365 admin center overview shows that this page lists every licensed and unlicensed user, their roles, their last sign-in time, and their assigned products.
Plain-English explanation: the admin center is the dashboard that ships with every Microsoft 365 Business subscription. The consequence of using this method without proper authority is severe, because signing in as an administrator you are not is an 18 U.S.C. § 1030(a)(2) violation. A real-world example: Priya, the newly promoted office manager at a 40-person accounting firm, uses her Global Admin credentials to audit every user account before the firm’s year-end security review.
Method 4: Microsoft Entra Admin Center
For a deeper directory view, the Microsoft Entra admin center lists every user, group, device, and application registration in the tenant. The Entra admin center also shows the tenant ID, the primary domain, the tenant region, and the license SKUs that are active in the directory.
Plain-English explanation: Entra is the identity control panel. The consequence of ignoring Entra is that you miss guest accounts, service principals, and application identities that the regular admin center hides. A real-world example: a security analyst reviewing a breach pulls the Entra sign-in logs and discovers a dormant guest account that an attacker reactivated to move laterally.
Method 5: PowerShell and the Microsoft Graph API
Administrators with the right PowerShell modules can query a tenant programmatically. The Microsoft Graph PowerShell SDK supports commands like Get-MgUser, Get-MgOrganization, and Get-MgSubscribedSku, each of which returns tenant-level data that you would otherwise have to click through in the admin center.
Plain-English explanation: PowerShell is the command-line tool that power users and IT pros use to script Microsoft 365 work. The consequence of scripting a search without logging the activity is that your security team cannot tell your audit from an attacker’s. A real-world example: Derrick, a managed-service-provider engineer, runs Get-MgUser -All across 60 client tenants to produce a single CSV report of every licensed user, then saves the output to a SIEM system for compliance.
A common misconception is that PowerShell bypasses Entra ID. It does not. Every Graph API call goes through the same Entra authentication pipeline as a browser sign-in, which means conditional access policies apply to scripts too.
Federal Laws That Govern the Search
Federal law, not Microsoft’s terms of service, decides whether your search is a crime. Four statutes do most of the work, and every U.S. business and IT professional should know them by name.
The Computer Fraud and Abuse Act
The Computer Fraud and Abuse Act criminalizes access to a protected computer without authorization or in excess of authorization. Every Microsoft 365 server qualifies as a protected computer under Section 1030(e)(2), because the statute covers any computer used in interstate commerce.
Plain-English explanation: if you log in to a tenant you do not own and you do not have permission to use, you are committing a federal crime. The consequence is up to 10 years in federal prison for a first offense under Section 1030(c)(2)(B). A real-world example: a fired IT director who keeps using a personal copy of admin credentials to download files from his former employer’s tenant can be prosecuted under the CFAA even if the employer never changed the password.
A common misconception is that the CFAA requires damage. It does not. The 2021 Van Buren decision clarified that merely exceeding authorized access, without causing a dollar of harm, still triggers Section 1030(a)(2) liability.
The Stored Communications Act
The Stored Communications Act protects the content of electronic communications held by service providers. Microsoft is a provider under the SCA, and the mailboxes, OneDrive files, and Teams messages in a business tenant are communications in electronic storage under 18 U.S.C. § 2510(17).
Plain-English explanation: even the tenant’s own administrator cannot always read every user’s email. The consequence is civil liability plus criminal exposure up to 5 years under Section 2701(b)(1). A real-world example: the Ninth Circuit’s ruling in Theofel v. Farey-Jones held that a subpoena used to access an employee’s webmail without proper authority violated the SCA.
The Electronic Communications Privacy Act
The Electronic Communications Privacy Act is the umbrella statute that contains both the Wiretap Act and the SCA. The Wiretap Act, at 18 U.S.C. § 2511, forbids the interception of electronic communications in transit, which matters for Microsoft 365 because Teams calls and Exchange Online messages travel over the internet.
Plain-English explanation: ECPA is why you cannot sniff a coworker’s Teams call even if you own the Wi-Fi network. The consequence of a violation is statutory damages of the greater of 10,000 dollars or 100 dollars per day under Section 2520.
The Defend Trade Secrets Act
The Defend Trade Secrets Act of 2016 creates a federal civil cause of action for misappropriation of trade secrets. A Microsoft 365 Business tenant frequently stores pricing models, customer lists, and product roadmaps that qualify as trade secrets.
Plain-English explanation: stealing files from a Microsoft 365 tenant is not just hacking, it is also trade-secret theft. The consequence can include treble damages and attorneys’ fees under Section 1836(b)(3). A real-world example: a departing sales manager who forwards her OneDrive to a personal Gmail account before resigning can face a DTSA suit from her former employer within 90 days of the resignation.
State Laws That Add Another Layer
State laws pile additional rules on top of the federal baseline, and three states set the tone for the rest of the country. Any serious search for a Microsoft 365 Business account must account for the state where the tenant’s data subjects live, not just the state where the business is incorporated.
California CCPA and CPRA
The California Consumer Privacy Act, as amended by the California Privacy Rights Act, gives California residents the right to know what personal information a business collects about them. If a Microsoft 365 tenant stores personal data about California residents, any search that extracts that data must respect the CCPA’s access and deletion rules.
Plain-English explanation: California residents can force a business to tell them what is in its Microsoft 365 tenant about them. The consequence of ignoring a CCPA request is a civil penalty up to 7,500 dollars per intentional violation. A real-world example: a boutique e-commerce brand in Los Angeles receives a CCPA access request, searches its Microsoft 365 tenant for the customer’s data using Microsoft Purview eDiscovery, and exports the results within the 45-day deadline.
New York SHIELD Act
The New York SHIELD Act expands the state’s data-breach notification rules and requires reasonable administrative, technical, and physical safeguards for the private information of New York residents. A Microsoft 365 Business tenant that holds New York customers’ data must meet SHIELD’s reasonable-security standard.
Plain-English explanation: if you search or access a Microsoft 365 tenant in a way that exposes New York residents’ data, the SHIELD Act may require public notification. The consequence includes penalties up to 250,000 dollars under General Business Law § 899-bb.
Illinois BIPA
The Illinois Biometric Information Privacy Act regulates the collection, storage, and use of biometric identifiers. Microsoft 365 features like Windows Hello for Business and Entra ID facial-recognition sign-in create biometric data that BIPA protects.
Plain-English explanation: if a tenant’s users sign in with fingerprints or face scans, the tenant stores biometric data that Illinois law protects with special care. The consequence is statutory damages of 1,000 dollars per negligent violation and 5,000 dollars per intentional violation, which in a class action can run into the tens of millions.
Three Scenarios You Will Actually Face
Real searches rarely happen in a vacuum. The table below lays out the three most common fact patterns and the direct consequence of handling each one correctly or incorrectly.
Scenario Table 1: The Departing Employee
| Situation | Lawful Consequence |
|---|---|
| Employee resigns, and HR needs to preserve the mailbox before offboarding | Admin places an In-Place Hold via Microsoft Purview and disables sign-in, preserving data under FRCP Rule 37(e) |
| Former employee’s manager reads personal items inside the mailbox without written policy authority | SCA violation risk plus potential state common-law invasion-of-privacy claim |
Scenario Table 2: The Acquired Business
| Situation | Lawful Consequence |
|---|---|
| Buyer acquires a company and needs to locate every Microsoft 365 tenant the seller owns | Buyer requests tenant IDs and domain lists as part of due-diligence Schedule; seller runs Get-MgOrganization under NDA |
| Buyer logs into the seller’s tenant before closing using credentials shared informally | Unauthorized access under CFAA until the stock purchase agreement assigns the tenant |
Scenario Table 3: The Forgotten Admin
| Situation | Lawful Consequence |
|---|---|
| Sole owner loses the only Global Admin account and the MFA phone number | Owner opens a Microsoft support case, proves domain ownership via DNS TXT record, and regains control within 7-10 business days |
| Owner tries to brute-force an old password and triggers Entra ID’s smart lockout | Tenant locks the account for extended periods and may flag the IP for conditional-access blocks |
Three Named-Person Examples
The following examples show how a real person uses the rules above to reach a real goal.
Elena Rodriguez, the Chief Operating Officer of a 120-person architecture firm in Austin, discovers during an IT audit that the firm has two separate Microsoft 365 tenants from an old acquisition. Elena signs into both admin.microsoft.com instances, uses the Microsoft 365 tenant-to-tenant migration guide to consolidate, and documents every step for the firm’s cyber-insurance carrier.
Marcus Chen, a solo attorney in Chicago, forgets the recovery email for his marcuschenlaw.com Microsoft 365 Business Standard subscription. Marcus files a Microsoft support ticket, proves he controls the domain by publishing a TXT record under the domain verification process, and regains Global Admin access in 6 business days.
Priya Natarajan, a compliance officer at a 300-employee biotech in Boston, receives a litigation hold notice and must preserve every message in the CEO’s mailbox for 3 years. Priya opens Microsoft Purview, creates an eDiscovery (Premium) case, and places the custodian on hold under FRCP Rule 26(b)(1) proportionality standards.
Recovering a Lost Microsoft 365 Business Account
Recovery is a separate process from discovery, and Microsoft gates it behind a strict proof-of-ownership check. The Microsoft admin takeover documentation explains the two paths: internal takeover, which any user at the domain can trigger, and external takeover, which requires Microsoft support involvement.
Plain-English explanation: Microsoft will not hand your tenant back just because you say you own it. The consequence of skipping the documentation step is a denial and a delay of weeks. A real-world example: a restaurant owner who purchased a business and its domain but never received the Microsoft 365 credentials must email Microsoft’s support team with the Secretary of State filing that proves the purchase.
Step 1: Verify Domain Control
The first step is publishing a TXT record at the domain’s DNS host that matches a value Microsoft gives you. The domain verification reference shows the exact format, which is usually MS=ms########. DNS propagation usually takes under an hour with modern registrars like Cloudflare and GoDaddy.
Step 2: Start the Admin Takeover Wizard
Once DNS verification succeeds, sign in to the Microsoft 365 admin center with a user account on the same domain. The admin takeover wizard appears automatically. If it does not, open a support case through the Microsoft support hub.
Step 3: Transition Administrative Roles
After Microsoft grants Global Admin rights, immediately reset every existing admin role, enable multi-factor authentication under the Microsoft security defaults, and rotate any stored service-account passwords. The consequence of skipping this cleanup is that a prior admin could still hold residual access through break-glass accounts or legacy tokens.
Mistakes to Avoid
Seven mistakes drain more time and money than any other when people search for a Microsoft 365 Business account.
- Confusing personal Microsoft accounts with business accounts, which locks users out and wastes support hours
- Assuming an MX record proves a paid subscription, when it may only prove a free trial
- Using a former employer’s admin credentials after separation, which triggers CFAA liability
- Running PowerShell scripts without logging, which makes audit trails impossible and fails SOC 2 controls
- Forgetting to document domain ownership before a takeover, which stalls the Microsoft support process
- Ignoring conditional access policies when scripting, which blocks the script and masks the root cause
- Reading an employee’s mailbox without a written acceptable-use policy, which exposes the employer to SCA and state tort claims
Do’s and Don’ts
These rules separate professional searches from liability traps.
Do’s:
- Do use public DNS and Microsoft’s openid-configuration endpoint for any external check, because they are lawful by design
- Do require written authority before you sign in to any tenant you do not personally own, because written authority is the core CFAA defense
- Do enable multi-factor authentication on every admin account, because Microsoft data shows MFA blocks 99.9 percent of account-takeover attempts per the Microsoft Security blog
- Do preserve audit logs for at least 1 year, because FRCP and state breach laws expect retained records
- Do use Microsoft Purview eDiscovery instead of ad-hoc mailbox access, because Purview creates a defensible audit trail
Don’ts:
- Do not share admin credentials in email or chat, because shared credentials defeat every access control you paid for
- Do not assume the free Microsoft 365 developer tenant has the same compliance posture as a paid Business tenant, because the developer tenant omits several Purview features
- Do not rely on a single Global Admin, because loss of that account triggers the painful admin-takeover process
- Do not ignore the 30-day tenant-deletion clock, because the tenant stays billable until it fully dissolves
- Do not mix consumer OneDrive with business OneDrive on the same device, because the sync client can leak files across the boundary
Pros and Cons of Each Lookup Method
A side-by-side view helps you pick the right method for the job.
Pros:
- DNS lookup is free, fast, and completely lawful for any public domain
- The openid-configuration endpoint confirms tenant existence with a single HTTPS request
- Admin center sign-in reveals everything at once for an authorized administrator
- Entra admin center surfaces guest accounts and service principals that the regular admin center hides
- PowerShell scales across dozens or hundreds of tenants for MSPs
Cons:
- DNS lookup cannot see subscription tier, user count, or license assignments
- The openid-configuration endpoint returns only tenant metadata, not users or licenses
- Admin center sign-in requires valid credentials and creates audit-log entries that a rogue user cannot hide
- Entra admin center has a steeper learning curve and exposes sensitive identity data
- PowerShell mistakes can affect every user in the tenant in seconds, so the blast radius is high
Key Entities to Know
Several organizations and products shape how you find a Microsoft 365 Business account.
Microsoft Corporation runs the cloud and publishes the rules. The Microsoft Trust Center documents the company’s compliance posture across frameworks like HIPAA, GLBA, and FedRAMP.
The Federal Trade Commission enforces the FTC Act against deceptive data practices. The FTC Business Guidance on data security sets the floor for every U.S. business that holds consumer data.
The Department of Justice prosecutes CFAA cases. The DOJ CFAA prosecution manual tells federal prosecutors how to charge unauthorized-access cases, and reading it clarifies what the government looks for.
State attorneys general enforce CCPA, SHIELD, BIPA, and similar statutes. The California Privacy Protection Agency is a dedicated regulator that issued its first CCPA enforcement advisory in 2023 and has expanded scope every year since.
Forms, PowerShell Commands, and Step-by-Step Process
The lookup process uses a short list of commands and URLs. Each one has specific inputs, outputs, and risks.
The openid-configuration request takes a domain and returns JSON. The URL template is https://login.microsoftonline.com/{domain}/.well-known/openid-configuration, and the issuer field holds the tenant ID. The consequence of parsing this document incorrectly is that you pick the wrong tenant and waste hours chasing the wrong records.
The Connect-MgGraph PowerShell command authenticates the current session. The command takes a -Scopes parameter that controls which Graph permissions the session requests, and the Microsoft Graph permission reference lists every valid scope. The consequence of requesting too many scopes is that administrators must consent broadly, which widens the security blast radius.
The Get-MgOrganization command returns the tenant’s display name, verified domains, and country. The Get-MgUser -All command returns every user object, and the Get-MgSubscribedSku command returns every licensed product plan and the number of purchased versus consumed units.
The admin takeover wizard runs in a browser and walks the user through TXT-record creation, role transition, and MFA enforcement. The consequence of skipping any step is that the wizard restarts and the clock resets.
Recap of Relevant Court Rulings
Four rulings shape how courts read the CFAA and the SCA in 2026.
Van Buren v. United States (2021) narrowed the CFAA’s exceeds authorized access clause to the so-called gates-up-or-down test. After Van Buren, an employee who misuses data they may lawfully see does not violate the CFAA, but an outsider who logs in without permission still does.
hiQ Labs v. LinkedIn (9th Cir. 2022) held that scraping public data does not violate the CFAA, which supports the lawfulness of DNS lookups and openid-configuration checks.
Theofel v. Farey-Jones (9th Cir. 2003) remains the leading SCA case on email access without proper authority, and it still controls many mailbox-access disputes.
Epic Games v. Apple (N.D. Cal. 2021) is not about Microsoft 365 directly, but the court’s trade-secret analysis informs how businesses protect data stored in Microsoft 365 from improper employee export.
FAQs
Can anyone look up whether a business uses Microsoft 365?
Yes. Any person can query public DNS and Microsoft’s openid-configuration endpoint to confirm a tenant exists, because both sources are public and Microsoft designed them to answer this question.
Is it legal to log in to a former employer’s Microsoft 365 account?
No. Using credentials after your authorization ends violates the Computer Fraud and Abuse Act, exposes you to up to 10 years in prison, and supports a civil suit from the former employer.
Can a domain registrar tell me who owns a Microsoft 365 tenant?
No. Registrars show domain ownership under WHOIS or ICANN lookup, not Microsoft 365 tenant ownership, because the tenant is a separate Microsoft Entra directory object.
Does Microsoft notify a tenant when someone looks up its tenant ID?
No. The openid-configuration endpoint is anonymous, stateless, and public, so Microsoft sends no alert to the tenant when an outsider fetches the metadata.
Can I recover a Microsoft 365 Business account without the original admin credentials?
Yes. The Microsoft admin takeover process lets you regain Global Admin rights by proving domain ownership through a DNS TXT record and then working with Microsoft support.
Is reading an employee’s mailbox legal for the employer?
Yes. Employers may read work email if a written acceptable-use policy gives notice and consent, but the Stored Communications Act still bars access that exceeds that policy’s scope.
Can I find a Microsoft 365 Business account with a Google search?
Yes. Public job postings, LinkedIn profiles, and press releases often confirm tenant use, but confirming a specific user requires DNS or admin access, not a search engine.
Does the Microsoft 365 free trial create a real tenant?
Yes. Every trial creates a full Entra ID tenant with a .onmicrosoft.com domain, and the tenant persists for 30 days after trial expiration unless the owner deletes it earlier.
Can I see billing information from outside the tenant?
No. Billing data is restricted to Global Admins and Billing Admins, because the subscription layer sits behind Entra ID authentication and never appears in public DNS.
Is it legal to scrape Microsoft 365 user data with PowerShell?
Yes. PowerShell queries inside your own tenant are lawful and expected, but the same queries against a tenant you do not administer violate the CFAA and Microsoft’s terms of service.
Do state privacy laws override Microsoft’s terms of service?
Yes. Statutes like CCPA, CPRA, SHIELD, and BIPA impose duties that Microsoft’s terms cannot contract away, because state law supplies the floor for consumer rights in each state.
Can I delete a tenant I cannot log in to?
No. Microsoft requires a Global Admin sign-in to initiate tenant deletion, so a locked-out owner must first complete the admin takeover process before any deletion is possible.