office

uninstall completely

If you still meet the issue, I suggest you try the following steps and resign into Office to check the result: Navigated to Library folder and open Group Containers. Ctrl+click each of these folders if present, and Move to Trash.

UBF8T346G9.ms
UBF8T346G9.Office
UBF8T346G9.OfficeOsfWebHost

Warning: Outlook data will be removed when you move the three folders listed in this step to Trash. You should back up these folders before you delete them.

$ ls -1d ~/Library/Group\ Containers/UBF8T346G9.*/
/Users/marslo/Library/Group Containers/UBF8T346G9.Office/
/Users/marslo/Library/Group Containers/UBF8T346G9.OfficeOneDriveSyncIntegration/
/Users/marslo/Library/Group Containers/UBF8T346G9.OfficeOsfWebHost/
/Users/marslo/Library/Group Containers/UBF8T346G9.OneDriveStandaloneSuite/
/Users/marslo/Library/Group Containers/UBF8T346G9.com.microsoft.rdc/
/Users/marslo/Library/Group Containers/UBF8T346G9.ms/

outlook

profiles

  • profile

    $ ls ~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 15 Profiles/
    
  • reset outlook profile

    $ open "/Applications/Microsoft Outlook.app/Contents/SharedSupport/Outlook Profile Manager.app"
    

word

[!TIP|label:references]

logs

  • word: ~/Library/Containers/com.microsoft.Word /Data/Library/Caches/Microsoft/uls/ Com.microsoft.Word /logs
    $ tail -f ~/Library/Containers/com.microsoft.Word/Data/Library/Caches/Microsoft/uls/com.microsoft.Word/logs/apple-device-log-20210114-2301.log
    

disable animations

> cat DisableAnimations.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Office\16.0\Common\Graphics]
"DisableAnimations"=dword:00000001

powerpoint

[!TIP|label:references]

  • template location in mac (Version 16.94 (25020927)): "$HOME/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized"

create and add new template

  • open pptx file with PowerPoint
  • File -> Save As -> PowerPoint Template (*.potx)
  • restart the PowerPoint

import new template

  • copy the template file ( .potx ) to "$HOME/Library/Group Containers/UBF8T346G9.Office/User Content.localized/Templates.localized"
  • open PowerPoint -> File -> New from Template -> Personal -> choose the template

excel

shortcuts

[!NOTE|label:references:]

SHORTCUT PURPOSE
control + 5 strikethrough
command + 1 Open Format Cells

sharepoint

download from sharepoint

URL

  • visit in web: https://domain.sharepoint.com/sites/<site>/<library>/<folder>/<file>?web=1
  • download link: https://domain.sharepoint.com/sites/<site>/<library>/<folder>/<file>?download=1

if the file in Shared Documents library, the URL will be like:

  • visit in web: https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?web=1
  • download link: https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?download=1

[!TIP|label:references] chrome extension

  1. open the the file link in Chrome
  2. F12 to open Developer Tools -> Network tab
  3. refresh the page, and filter the filename
  4. select the request, and copy the Request Headers -> Cookie
get cookie
1.11.5.1.1 -- get cookie

download

  1. copy the rtFa=...; and FedAuth=...;

    $ curl -L -OJ --cookie "rtFa=...; FedAuth=..." "https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?download=1"
    
  2. create cookie.txt with whole cookie string

    $ curl -L -OJ -H "Cookie: $(cat cookie.txt)" "https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?download=1"
    
  3. create cookie.txt with rtFa and FedAuth only

    [!TIP|label:references] cookie.txt format ( using tab to separate fields ), using Netscape HTTP Cookie File

    <DOMAMIN>.sharepoint.com  TRUE  /sites/<site>  TRUE  0 rtFa  <value>
    <DOMAMIN>.sharepoint.com  TRUE  /sites/<site>  TRUE  0 FedAuth <value>
    
    $ cat coookie.txt
    domain.sharepoint.com TRUE  / TRUE  0 rtFa  <value>
    domain.sharepoint.com TRUE  / TRUE  0 FedAuth <value>
    
    $ curl -L -OJ -b cookie.txt "https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?download=1"
    
Copyright © marslo 2020-2025 all right reserved,powered by GitbookLast Modified: 2025-09-15 17:16:59

results matching ""

    No results matching ""