How to Fix Office Installation Error 30094-2016 on Windows 11 Offline Client

If you’re trying to install Office on-premises using the Office Deployment Tool (ODT) on a Windows 11 offline system and see this message:

“Couldn’t install. We’re sorry, but we can’t verify the signature of files required to install your Microsoft 365 and Office product.”
Error Code: 30094-2016 (0)

The same installer often works on Windows 10 but fails on Windows 11. Let’s walk through why it happens and how to fix it.

How to Fix Office Installation Error 30094-2016 on Windows 11 Offline Client
How to Fix Office Installation Error 30094-2016 on Windows 11 Offline Client

Why the Error Appears

Windows 11 enforces stricter digital-signature checks than Windows 10. When the PC is offline, signature verification can fail because:

  • Root or intermediate certificates are outdated or missing.
  • The system can’t contact Microsoft’s certificate servers.
  • The Office package built with ODT has corrupted or unsigned files.
  • SmartScreen or UAC policies block unsigned content.

Fix 1: Import Microsoft Certificates Manually (Offline)

When the machine is offline, Windows can’t update its trusted certificates. You can manually import them from a connected system.

Steps

  1. On an online Windows 11 PC, open certmgr.msc.
  2. Navigate to:
    • Trusted Root Certification Authorities → Certificates
    • Intermediate Certification Authorities → Certificates
  3. Export these certificates:
    • Microsoft Root Certificate Authority
    • Microsoft Code Signing PCA
    • Microsoft Time-Stamp PCA
  4. Copy them to the offline PC.
  5. Double-click each file → Install Certificate → Local Machine → choose the right store (Root or Intermediate).
  6. Restart and run: setup.exe /configure configuration.xml

Fix 2: Disable Signature Enforcement Temporarily

If certificates aren’t the issue, turn off integrity checks only for installation.

  1. Open Command Prompt (Admin).
  2. Run: bcdedit /set nointegritychecks on
  3. Reboot and install Office with ODT.
  4. After installation, re-enable: bcdedit /set nointegritychecks off

Use this only on secure offline systems.

Fix 3: Rebuild the ODT Package

Old or incomplete ODT builds cause verification errors.

  1. Download the latest Office Deployment Tool from Microsoft.
  2. Use the Office Customization Tool to create a fresh configuration.xml.
    • Select Office 2021 or Microsoft 365 Apps for Enterprise.
    • Choose your architecture and language.
  3. On an online PC, run: setup.exe /download configuration.xml
  4. Copy the full downloaded folder to the offline machine.
  5. Install with: setup.exe /configure configuration.xml

Fix 4: Adjust Windows 11 Policies

Some security policies can prevent unsigned installers from running.

  1. Open gpedit.msc
    Computer Configuration → Windows Settings → Security Settings → Local Policies → Security Options.
  2. Set:
    • User Account Control: Only elevate executables that are signed and validatedDisabled
    • System cryptography: Use FIPS compliant algorithmsDisabled
  3. Reboot and re-run the installer.

Fix 5: Verify Installer Integrity

Ensure your setup files weren’t corrupted.

  1. In Command Prompt: certutil -hashfile setup.exe SHA256
  2. Compare the hash with Microsoft’s official value.
    • If different, redownload the ODT and rebuild the package.

After Successful Installation

Re-enable all security features and confirm your setup:

winver

and check certificate health:

certutil -verify setup.exe

The Office installation error 30094-2016 on Windows 11 mainly stems from strict signature verification and missing certificate chains in offline environments. While the same ODT setup may work fine on Windows 10, Windows 11’s newer security model requires updated certificates and verified signatures for installation files.

By manually importing Microsoft root certificates, temporarily disabling signature enforcement, or rebuilding the Office Deployment Tool package, you can safely complete the installation on an offline client. Once the setup is successful, re-enable integrity checks to keep your system secure.

Read More:

Comments

No comments yet. Why don’t you start the discussion?

    Leave a Reply

    Your email address will not be published. Required fields are marked *