Last active
August 11, 2021 07:00
-
-
Save couleurm/181e922d740242bdda9ea73e9bf64463 to your computer and use it in GitHub Desktop.
Installation script for LCL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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