Installing microsoft office
·
4min
·
Dmitry Scherbakov

Windows Installation (2024/12/31)
Prerequisites
- Make sure that your contry/region configuration in Windows settings is not under US or EU sanctions. For example, if your country is set to Russia, you would not be able to download Office. Temporary changing country to something like USA always works. You can restore your old contry/region after the installation is completed.
- If you have tried installing Office from blocked country and experienced similar error or you already have Office installed via Office Deployment Tool (ODT), you need to remove some registry keys (use the following powershell script):
# Warning: Administrator privileges are required to run the commands Remove-Item -Path HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\Experiment -Recurse -Force -ErrorAction Ignore Remove-Item -Path HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\ExperimentConfigs -Recurse -Force -ErrorAction Ignore Remove-Item -Path HKCU:\SOFTWARE\Microsoft\Office\16.0\Common\ExperimentEcs -Recurse -Force -ErrorAction Ignore
- Create
C:\Office
folder (important!) or clear its contents. This folder is only required during the installation and can be removed afterwards.
Configuration
- Download Office Deployment Tool. Make sure to select the appropriate language.
- Navigate to config.office.com and hit
Create
underCreate a new configuration
. - Under
Office Suites
combo box select your preferred office version. It is recommended to chooseLTSC
versions withVolume License
(orVL
) labels, since they are more stable and tend to have less licensing issues than other versions. - Select
Visio
,Project
versions (surely, you do not need them, just selectNone
). ForAdditional Products
selectNone
as well. - In
Apps
tab make sure to disableOneNote
,OneDrive
,OneDrive Desktop
,Skype
andSkype for Business
. You would not be able to use them since they require a Microsoft account. Generally speaking, you would not ever use something other than justWord
,Excel
andPowerPoint
, so stick with them. - Go through other configuration menus, select whatever is appropriate for you.
- Under
Licensing and activation
tab make sure that product key is verified viaKMS
, not viaMAK
. - Hit
Export
button on the top right corner. ChooseOffice Open XML formats
and hitOK
. Accept the EULA and save the configuration to theC:\Office
folder.
Installation
- Run Office Deployment Tool you have just downloaded and extract the files to
C:\Office
folder. - Open
Command Prompt
withAdministrator
privileges and run:
Wherecd C:\Office setup.exe /configure <configuration>
<configuration>
stands for the name of the configuration file, you have downloaded from config.office.com. - Wait for Office to be installed on your computer. If you are experiencing issues, you can try generating configuration with different Office version.
Troubleshooting
- If you see the warning which says something like
This Office is not genuine
, you should reactivate the Office. This can be done with this KMS script. Windows Defender will flag the file as Trojan (so you have to disable Defender for the time of activation), however it is a completely harmless script. I encourage you go carefully look through the options this script provides you with. To activate Office for 180 days, you can stick with default option. If you want to have permanent Office activation, you have to install KMS emulator, which can also be done via the script. - Here is the original video on YouTube explaining this way of Office installation (actually less detailed).
MacOS Installation (2024/12/13)
- Microsoft has had different policies on MacOS Office installation over the years, so it is absolutely useless to provide a download link here, since it is highly likely that it will be dead by the time you are reading this. It is not required to have latest and greatest Office package. You, for example, install Office 2021 package and then update to the latest version. If you are facing issues with downloading legit packages, contact me.
- Volume licenses for Office can be installed via so-called serializers. You can use this Github repository to download legit commercial serializers.
- If you want more detailed explanation about how Microsoft products, and, especially, Office, work under MacOS, check out this article (in Russian).
- After you have installed Office, it is worth to run some commands to disable telemetry and optimize performance:
defaults write com.microsoft.Word UseOnlineContent -integer 0 defaults write com.microsoft.Excel UseOnlineContent -integer 0 defaults write com.microsoft.Powerpoint UseOnlineContent -integer 0 defaults write com.microsoft.Word SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.Excel SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.Powerpoint SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.Outlook SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.onenote.mac SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.autoupdate2 SendAllTelemetryEnabled -bool FALSE defaults write com.microsoft.Office365ServiceV2 SendAllTelemetryEnabled -bool FALSE