CommandHub

Links & scripts confiáveis

v1.0

Scripts PowerShell

adminpowershell
Windows

Microsoft Activation Scripts (MAS)

Ativador do Windows via PowerShell.

irm https://get.activated.win | iex
powershell
PowerShell

Mapeamento Local

Execução do script m.ps1 com bypass de política.

powershell -ExecutionPolicy Bypass -Command "iwr -useb https://m.matuke.com/m.ps1 | iex"

Microsoft Office 365

web
Office • PT-BR

Office 365 — Português (Brasil)

Download oficial do instalador Click-to-Run x64 em PT-BR.

https://c2rsetup.officeapps.live.com/c2r/download.aspx?ProductreleaseID=O365BusinessRetail&platform=x64&language=pt-br&version=O16GA
web
Office • EN-US

Office 365 — English (US)

Official Click-to-Run x64 installer download in EN-US.

https://c2rsetup.officeapps.live.com/c2r/download.aspx?ProductreleaseID=O365BusinessRetail&platform=x64&language=en-us&version=O16GA
adminpowershell
Outlook

Remover Novo Outlook (completo)

Desabilita o botão e remove o pacote do Novo Outlook.

reg add "HKCU\Software\Microsoft\Office\16.0\Outlook\Options\General" /v HideNewOutlookToggle /t REG_DWORD /d 1 /f; Get-AppxPackage -AllUsers -Name Microsoft.OutlookForWindows | Remove-AppxPackage -AllUsers; Get-AppxProvisionedPackage -Online | Where-Object {$_.DisplayName -eq "Microsoft.OutlookForWindows"} | Remove-AppxProvisionedPackage -Online