patch file microsoft office 2016
Renovation planning, on the go
Switch to the app

Patch File Microsoft Office 2016 Official

Write-Host "Latest available version: $latestVersion" -ForegroundColor Green

$latestVersion = $latestUpdate.Version $updateFileUrl = $latestUpdate.Location patch file microsoft office 2016

Write-Host "Downloading update catalog..." -ForegroundColor Yellow Invoke-WebRequest -Uri $updateMetadataUrl -OutFile $cabFile -UseBasicParsing Expand-Archive -Path $cabFile -DestinationPath $extractDir -Force patch file microsoft office 2016

if (-not (Test-Path $office2016Path)) Write-Host "Office 2016 not found in default locations. Exiting." -ForegroundColor Red exit 1 patch file microsoft office 2016

$tempDir = "$env:TEMP\Office2016Patch" New-Item -ItemType Directory -Force -Path $tempDir | Out-Null

$office2016Path = "$env:ProgramFiles\Microsoft Office\root\Office16\WINWORD.EXE" if (-not (Test-Path $office2016Path)) $office2016Path = "$env:ProgramFiles(x86)\Microsoft Office\root\Office16\WINWORD.EXE"

Chat