Share via

Microsoft 365 question

Office 0 Reputation points
2025-10-29T04:19:27.1666667+00:00

I am in need of help. I had Microsoft 365 I purchased from a third party company. They gave me an account that was a business account. The account ended with a co. on the email. The account no longer works. I have no idea if all my work is on the cloud or not. I own an iMac. I can access my word but it is not activated. I see my system with all my work in the file, the file is on the office that opens up when I am looking at recent files, the office shows the email assigned to my account, connected services then show OneDrive Personal with my email and under that is sharePoint that email is a domain for an .org, this email domain account is no longer in service. The URL is for sale. The company that sold me the system has a website and phone number but they have refused to answer my calls or respond to my emails. This has been going on since October 9, 2025. I reached out to Microsoft and no one will assist or even help. Their customer service is non existent at this point. I purchased a new personal Microsoft 365 but I do not want to lose my outlook, with has stopped working as of the 9th, and has 10+ years and years of work, I also am an author and have several books I am working on in word. They are almost finished, this has been 6 years of my life. I cannot afford to lose anything. What if anything can I do? Word is asking for me to activate, I tried the old account and Microsoft states their is no account with that email and it prompts me to buy a new Microsft 365 or sign in with a new account if I purchased one. If I sign in with the new one I am afraid of losing all my work. I cannot get anyone to help me. Microsoft stated I needed to go to the IT of the company that owns the account, well that is the third party that sold me the Microsoft 365 to begin with. I am beyond frustrated and I cannot afford to lose my work. it is beyond important. So to recap this was a business office 365, with a personal one drive with my own email on it and I have no idea if the files are in my personal account or if it is on a business account, I do not know how this company set it up. I am not a tech person. I bought a personal account 365 for one year. I do not want to use this unless I know all my work is saved.

Microsoft 365 and Office | OneDrive | Other | MacOS
0 comments No comments

3 answers

Sort by: Most helpful
  1. Kai-H 18,195 Reputation points Microsoft External Staff Moderator
    2025-10-31T06:40:20.1633333+00:00

    Hi, Office

    Thanks for getting back.

    Sorry the first route didn’t work. We can still rescue your work without iCloud/CloudStorage access. Below are alternative, offline methods that don’t require OneDrive or the old business account:

    A) If Word still opens and shows Recent documents

    • Open Word → File ▸ Open Recent
    • Right‑click (or Ctrl‑click) any file you recognize → Open File Location
    • In Finder, copy that whole folder to an external drive (USB/SSD).
    • Repeat for each project folder you care about.
    • If “Open File Location” isn’t available: select the file and press ⌘I in Word to see the full path, or open the file, then File ▸ Save As… to reveal its current folder.

    B) Recover Word autosaves and unsaved versions (no OneDrive needed)

    Word keeps local backups that often survive account issues.

    • In Finder: Go ▸ Go to Folder… (⌘⇧G) and paste each path below (one at a time).
    • Copy the entire folder contents to your external drive. ~/Library/Containers/com.microsoft.Word/Data/Library/Preferences/AutoRecovery ~/Library/Group Containers/UBF8T346G9.Office/User Content/AutoRecovery ~/Library/Containers/com.microsoft.Word/Data/Documents
    • Also check system temp caches (there can be gold here): /private/var/folders
    • In that big “folders” tree, search for AutoRecovery save of or .asd/.wbk/.tmp files updated recently.
    • If Library is hidden: Finder Go menu appears; hold ⌥ Option to reveal Library.
    • If you see “Permission denied”:
      • System Settings ▸ Privacy & Security ▸ Full Disk Access → enable for Finder, Terminal, and Microsoft Word → retry.

    C) Outlook: get your mail/history even if Export is missing

    If your old mailbox is gone online, the local Outlook profile on the Mac can still be copied and imported later.

    1) Copy the Outlook profile folders (raw backup)

    • In Finder (Go to Folder… ⌘⇧G), copy these folders to your external drive: ~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook Profiles/ ~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 16 Profiles/ ~/Library/Containers/com.microsoft.Outlook/Data/Library/Caches/Outlook/

    (You may have only one of those “Profiles” paths)

    This preserves your local mail cache (“On My Computer” folders and cached server mail). It’s the safety net if the Tools ▸ Export feature isn’t available in your build.

    2) If you can open Outlook (even without an account), try Export:

    • Legacy Outlook: Tools ▸ Export → “Outlook for Mac archive (.olm)” → save to your external drive.
    • New Outlook: If Export/Import isn’t visible, try Help ▸ Revert to Legacy Outlook (if present), then export.

    Once you activate Office with your new personal subscription, you’ll be able to File/Tools ▸ Import that .olm into the new profile. Activation does not delete these local backups.

    D) Use Terminal (no iCloud required)

    We’ll copy targeted folders to an external drive named BackupDrive (change that to your drive’s name).

    • Plug in the drive, confirm it’s mounted in Finder.
    • Open Terminal (Applications ▸ Utilities).
    • Create a safe backup folder on the external disk:
    mkdir -p "/Volumes/BackupDrive/Mac_Backup/{Word_AutoRecovery,Outlook_Profiles,Docs_Found}"
    ``
    
    • Copy Word AutoRecovery & related:
    cp -a ~/Library/Containers/com.microsoft.Word/Data/Library/Preferences/AutoRecovery\
    "/Volumes/BackupDrive/Mac_Backup/Word_AutoRecovery/" 2>/dev/null
    
    cp -a "~/Library/Group Containers/UBF8T346G9.Office/User Content/AutoRecovery"\
    "/Volumes/BackupDrive/Mac_Backup/Word_AutoRecovery/" 2>/dev/null
    
    

    Copy Outlook profiles:

    cp -a "~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook Profiles" \
    "/Volumes/BackupDrive/Mac_Backup/Outlook_Profiles/" 2>/dev/null
    
    cp -a "~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 16 Profiles" \
    "/Volumes/BackupDrive/Mac_Backup/Outlook_Profiles/" 2>/dev/null
    
    

    Sweep your user folder for Word docs updated in the last 60 days:

    find ~ -type f \( -iname "*.docx" -o -iname "*.doc" \) -mtime -60 -print0 | \
    xargs -0 -I{} cp -a "{}" "/Volumes/BackupDrive/Mac_Backup/Docs_Found/" 2>/dev/null
    

    If you see Operation not permitted, grant Full Disk Access to Terminal (System Settings ▸ Privacy & Security) and rerun.

    E) Make a read‑only image of your Home folder

    This creates a single, portable snapshot you can mount later on any Mac.

    • Open Disk Utility → File ▸ New Image ▸ Image from Folder…
    • Select your Home folder (/Users/<yourname>) → Image Format: read‑only → Encryption: none → Save to the external drive.

    This avoids file‑by‑file permission issues and preserves structure.

    F) Use built‑in macOS recovery options

    Time Machine (even without an external drive): Some Macs keep local snapshots.

    • Open Time Machine → Browse Time Machine Backups. If snapshots exist from before Oct 9, restore your writing folders to the external drive.
    • Recovery Mode file copy:
      • Shut down → hold ⌘R on power‑up (Intel) or press and hold Power (Apple Silicon) to enter Recovery.
      • Utilities ▸ Terminal, then mount your disk read/write and copy to the external drive using cp -a as above (Recovery has elevated permissions).

    Please get back if you still need help.

    Best regards.

    Was this answer helpful?

    0 comments No comments

  2. Office 0 Reputation points
    2025-10-30T10:43:54.65+00:00

    Need additional help on this the steps did not work. I could not copy the folder since I cannot access icloud. Any other ideas would be greatly appreciated

    Was this answer helpful?

    0 comments No comments

  3. Kai-H 18,195 Reputation points Microsoft External Staff Moderator
    2025-10-29T08:49:59.9633333+00:00

    Hi, Office

    Welcome to Microsoft Q&A.

    Sorry for this frustrating experience you're encountering. Below is a probable rescue plan you can follow step by step. Do the backup steps first; they are completely offline and do not depend on the old business account.

    1) Make a full backup of your documents (Word and others)

    Copy your OneDrive folders (local copies)

    • In Finder: Go ▸ Library (hold ⌥ Option to reveal Library) ▸ open CloudStorage.
    • Look for:
      • OneDrive‑Personal (your consumer OneDrive)
      • Any folders named OneDrive – <OrgName> (business OneDrive from the old .org domain).
    • Copy these entire folders to an external drive or another safe folder on your Mac.
    • If you don’t see them here, also check ~/OneDrive and ~/Users/<yourname>/OneDrive.

    Tip: This preserves whatever was already synced locally, even if the cloud is now unreachable.

    Copy Word’s AutoRecovery files (just in case)

    • In Finder: Go ▸ Library ▸ Containers/com.microsoft.Word/Data/Library/Preferences/AutoRecovery
    • Copy the whole AutoRecovery folder to your backup drive.
    • Locate and copy any non‑OneDrive documents
    • In Word: File ▸ Open ▸ Recent → right‑click a file → Open File Location; copy that entire folder.
    • Or in Finder, search for kind:document and name:.docx / .doc and copy the folders you recognize.

    2) Export and back up your Outlook data from the iMac

    Your old mailbox may no longer exist online (because that .org tenant is gone), but Outlook on your Mac usually keeps a local cache. Exporting creates a single archive file (.olm) you can import later into your new account.

    Try the built‑in export first (preferred):

    • In Outlook (Mac) Tools ▸ Export → select Mail (and Calendar/Contacts if needed) → Continue → save the .olm file to your backup drive.

    If “Export” isn’t visible (some builds of “New Outlook” moved or hid it):

    • Outlook for Mac has been transitioning features; classic (“Legacy”) Outlook was deprecated around Oct 2025, and import/export was called out as a core feature to preserve. If you don’t see export, look for File ▸ Export/Import or switch to the legacy experience if the Help ▸ Revert to Legacy Outlook option is still present on your build.
    • After reverting, repeat the Tools ▸ Export steps above.

    Additionally, copy the Outlook profile folder (extra safety):

    • Finder: Go ▸ Library ▸ Group Containers/UBF8T346G9.Office/Outlook/Outlook Profiles/
    • Copy Main Profile (or any profile names you see) to your backup drive.

    Result: you now have a self‑contained .olm file and a raw profile copy that you can move into any new Outlook identity.

    3) Verify where your files live (Personal vs Business cloud)

    Check OneDrive Personal online:

    • Sign in at https://onedrive.live.com using the same personal email shown under Connected Services. If your files appear there, they’re safe in your consumer cloud. (If you previously had “Files Restore” enabled, OneDrive Personal can also self‑restore the last 30 days of changes.) The “Files Restore” capability is a standard OneDrive feature.
    • For the old business (.org) content: If you cannot sign in (domain/tenant gone; you’re not the admin), then the local OneDrive – folder you copied is your best source. Anything fully synced remains intact in your backup.

    4) Safely activate Office with your new personal Microsoft 365

    It’s safe to activate Word/Office apps with your new personal subscription after you finish the backups above. Activation changes the app’s license; it does not delete local files or wipe Outlook archives. Office tracks licensing state and activation failures separately from your document storage.

    Steps:

    • Launch Word → when prompted, Sign in with your new personal Microsoft 365 account to activate.
    • After activation, open Word/Excel/PowerPoint and confirm you can open files from your backup copy normally.

    Important: Avoid removing/unlinking OneDrive until you’ve confirmed your backup. When you do connect OneDrive Personal later, choose a new empty folder for sync so you don’t overwrite the backup.

    5) Bring your Outlook mail/history into your new account

    Once Office is activated:

    • Open Outlook → add your new personal email account.
    • Import your archive: File/Tools ▸ Import → choose Outlook for Mac archive (.olm) → select the .olm you saved.
    • If Import isn’t present in your build, switch to legacy as noted earlier and import there; Microsoft’s Outlook Mac guidance covers export/import via .olm.

    This restores your mail, folders, calendar, and contacts into the new profile on your iMac, independent of the old tenant’s status.

    6) What not to do until your backup is complete

    • Don’t uninstall Office or reset/unlink OneDrive.
    • Don’t delete your old Outlook profile.
    • Don’t sign out of Office until you’ve exported your Outlook and copied your OneDrive folders.

    Hope this helps. Feel free to get back if you need further assistance.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment."    

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread. 

    Was this answer helpful?

    0 comments No comments

Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.