create directory before hand
This commit is contained in:
parent
56ce28b2fc
commit
4be99735f2
1 changed files with 6 additions and 3 deletions
|
@ -1,4 +1,5 @@
|
|||
@ECHO OFF
|
||||
SETLOCAL ENABLEDELAYEDEXPANSION
|
||||
|
||||
:: Start as administrator
|
||||
fltmc >NUL 2>&1 || (
|
||||
|
@ -8,16 +9,18 @@ fltmc >NUL 2>&1 || (
|
|||
EXIT 0
|
||||
)
|
||||
|
||||
SET "fivem=%LOCALAPPDATA%\FiveM"
|
||||
MKDIR !fivem! 2>NUL
|
||||
|
||||
ECHO FiveM...
|
||||
PowerShell -Command "" ^
|
||||
"$baselink = 'https://runtime.fivem.net/client';" ^
|
||||
"$exe = 'FiveM.exe';" ^
|
||||
"$path = \"$env:LOCALAPPDATA\FiveM\";" ^
|
||||
"$outFile = Join-Path -Path $path -ChildPath $exe;" ^
|
||||
"$outFile = Join-Path -Path '!fivem!' -ChildPath $exe;" ^
|
||||
"Invoke-WebRequest -Uri \"https://runtime.fivem.net/client/$exe\" -OutFile $outFile;" ^
|
||||
"$WshShell = New-Object -comObject WScript.Shell;" ^
|
||||
"$Shortcut = $WshShell.CreateShortcut('%APPDATA%\Microsoft\Windows\Start Menu\Programs\FiveM.lnk');" ^
|
||||
"$Shortcut.WorkingDirectory = \"$path\";" ^
|
||||
"$Shortcut.WorkingDirectory = '!fivem!';" ^
|
||||
"$Shortcut.TargetPath = $outFile;" ^
|
||||
"$Shortcut.Save()"
|
||||
REG ADD "HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall\fivem" /f /v DisplayName /t REG_SZ /d "FiveM"
|
||||
|
|
Loading…
Reference in a new issue