reference:
- pbowden-msft/Unlicense
- Rebuild the Office database
- Outlook 2016 for Mac repeatedly prompts for authentication
- Office for Mac repeatedly requesting keychain access
- If your Mac keeps asking for the login keychain password
- How to remove Office license files on a Mac
- Troubleshoot install or activation errors for Office for Mac
- Configure keychain
download
- Microsoft Office 16.45.21011103
- Update history for Office for Mac
- Release notes for Office for Mac
- Activate Office 2019 for macOS VoL.md
- Uninstall Office for Mac
- Release history for Microsoft Auto Update (MAU)
Q&A
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
-
$ ls ~/Library/Group Containers/UBF8T346G9.Office/Outlook/Outlook 15 Profiles/
-
$ open "/Applications/Microsoft Outlook.app/Contents/SharedSupport/Outlook Profile Manager.app"
word
[!TIP|label:references]
- office软件出现输入字延迟,点击延迟的现象
- * Show document content (text animation, drawings and text boxes) in Word
- How to disable the smooth moving cursor in Office 2016
- Typing Animation - Unbelievably annoying and can't turn off
- How to Disable the Typing Animation Feature in Office 2013
- How to Disable the Typing Animation in Office 2016 or Office 2013
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
get cookie
[!TIP|label:references] chrome extension
- open the the file link in Chrome
- F12 to open Developer Tools ->
Network
tab - refresh the page, and filter the filename
- select the request, and copy the
Request Headers
->Cookie

download
copy the
rtFa=...;
andFedAuth=...;
$ curl -L -OJ --cookie "rtFa=...; FedAuth=..." "https://domain.sharepoint.com/sites/<site>/Shared%20Documents/<folder>/<file>?download=1"
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"
create cookie.txt with
rtFa
andFedAuth
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"