When using Microsoft product Office to activate, sometimes you will encounter an error code 0x80072F8F prompt, which is very annoying. This issue may be caused by network connection, date and time settings, firewall, etc. PHP editor Yuzai has compiled a variety of solutions for everyone, hoping to help everyone solve this problem!
Various solutions to the error code 0x80072F8F prompted during Microsoft product office activation process
method one:
1. Press the [Win
2. User Account Control window, do you want to allow this application to make changes to your device? Click [Yes].
3. Run the following command to uninstall the Microsoft Store application:
Get-AppxPackage -alluser *WindowsStore* | Remove-AppxPackage.
Wait for the progress bar to complete and the Microsoft Store will be uninstalled and no longer appear in search results or installed apps lists.
4. Run the following command to reinstall the Microsoft Store application:
Get-AppxPackage -AllUsers Microsoft.WindowsStore* | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}.
5. Microsoft Store applications will be reinstalled with new files.
Method Two:
1. Open the command prompt (run as administrator).
2. Enter the following command and press Enter: w32tm /resync
3. This will synchronize the computer's time and date.
Method 3: Reset TCP/IP stack
1. Press - Windows S.
2. Type - cmd.exe.
3. From the flyout that appears, select – Run as administrator.
4. When User Account Control appears, click Yes.
5. In an elevated command prompt, insert the following lines one by one and press Enter after each line –
ipconfig/flushdns
nbtstat -R
nbtstat-RR
netsh int reset all
netsh int ip reset
netsh winsock reset
Method 4: Temporarily disable Windows Firewall
1. Press - Win R.
2. In the running command, insert - control firewall.cpl.
3. Click - OK.
4. Select - Turn Windows Defender Firewall on or off.
5. Check the radio buttons that appear before turning off Windows Defender Firewall for private and public network settings.
6. Finally, click - OK.
The above is the detailed content of Various solutions to the error code 0x80072F8F prompted during Microsoft product office activation process. For more information, please follow other related articles on the PHP Chinese website!