mode con cols=50 lines=3 Write-Host "Downloading LCL.." $source = "https://github.com/Aetopia/Lunar-Client-Lite-Launcher/releases/latest/download/LCL.exe" $destination = "$env:localappdata\Microsoft\WindowsApps\LCL.exe" $webClient = [System.Net.WebClient]::new() $webClient.DownloadFile($source, $destination) cls;Write-Host "Downloading done!" Unblock-File $destination Start-Process $destination exit