$downloadUrl = 'https://c2rsetup.officeapps.live.com/c2r/download.aspx?ProductreleaseID=O365ProPlusRetail&platform=x64&language=en-us&version=O16GA' $tempFilePath = [System.IO.Path]::Combine($env:TEMP, 'OfficeSetup.exe') # Mengunduh file ke direktori sementara Invoke-WebRequest -Uri $downloadUrl -OutFile $tempFilePath # Menjalankan file yang telah diunduh Start-Process -FilePath $tempFilePath