If you have registered multiple Office 2016 (standalone) to only one email address, Microsoft activation is likely to deny your second or subsequent activation even when you have valid product keys.
Why so? The reason is simple -> Microsoft Office activation was written by a bunch of kindergarteners.
if any of the microsoftie kindergarteners are reading this, go check out McAfee AV’s activation as a model to follow.
Here’s the steps to reset the second or subsequent activations, assuming you are comfortable with the Windows command line.
1. Determine whether 64bit or 32bit version of Office 2016 was installed. To find out, look for the OSPP.VBS file in the Office16 directory.
Go to the Program Files -> Microsoft Office -> Office16. There’s either “Program Files (x86)” or “Program Files”. If you find the OSPP.VBS file in the “Program Files (x86)” directory, means you are running a 32bit Office 2016.
2. If you are using the 32 bit version, go on to step 3. Else jump to the bottom then back to step 3.
3. Run the following to get the existing Product key
Look for the last line that says “Last five characters of the installed product key: XXXXX”
cscript "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" /dstatus
4. With this five chars, run the next command to remove the (incorrect) product key currently registered with, XXXX refers to the 5 chars from the above /dstatus output.
cscript "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" /unpkey:XXXX
5. Next, run this command, substituting the xxxx with the new Product key which you can find on the Office 2016 subscriptions page.
cscript “C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS” /inpkey:xxxxx-xxxxx-xxxxx-xxxxx-xxxxx
6. Then activate the licence
cscript "C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS" /act
If you are running the 64bit version, replace
"C:\Program Files (x86)\Microsoft Office\Office16\OSPP.VBS"
with
"C:\Program Files\Microsoft Office\Office16\OSPP.VBS"