Skip to content

Instantly share code, notes, and snippets.

@couleurm
Last active August 11, 2021 07:00
Show Gist options
  • Save couleurm/181e922d740242bdda9ea73e9bf64463 to your computer and use it in GitHub Desktop.
Save couleurm/181e922d740242bdda9ea73e9bf64463 to your computer and use it in GitHub Desktop.
Installation script for LCL
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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment