$downloadUrl = 'https://github.com/zamkara/specitify/raw/refs/heads/main/specitify.ps1' $tempFilePath = [System.IO.Path]::Combine($env:TEMP, 'specitify.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