This repository has been archived on 2023-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
csh/hazedumper/generate.bat
2023-04-02 22:11:07 +02:00

37 lines
1 KiB
Batchfile

@ECHO off
IF NOT EXIST hazedumper.exe (
:: Verbose
ECHO Download latest release of hazedumper
:: Download latest release
FOR /f "tokens=1,* delims=:" %%A IN ('curl -ks https://api.github.com/repos/frk1/hazedumper-rs/releases/latest ^| find "browser_download_url"') do (
curl -kOL %%B
)
:: Unzip the file
PowerShell -nologo -noprofile -command "& { $shell = New-Object -COM Shell.Application; $target = $shell.NameSpace('%CD%'); $zip = $shell.NameSpace('%CD%\Windows.zip'); $target.CopyHere($zip.Items(), 16); }"
:: Move the binary to the current directory
MOVE .\Windows\*.exe .\
:: Delete unnecessary file and directory
DEL Windows*
RMDIR Windows\
)
IF NOT EXIST config.json (
:: Verbose
ECHO Download latest config file for CS:GO
:: Download
curl -kOL https://raw.githubusercontent.com/frk1/hazedumper/master/config.json
)
:: Verbose
ECHO Generate offsets using hazedumper (be sure CS:GO is open and at least on menu screen)
:: Generate files
.\hazedumper.exe
EXIT /b