fix: add script to auto launch hydra on startup

This commit is contained in:
Zamitto 2024-06-27 18:50:18 -03:00
parent 82f72071f9
commit 9c99e56b70
3 changed files with 35 additions and 6 deletions

3
resources/hydra.vbs Normal file
View file

@ -0,0 +1,3 @@
Set WshShell = CreateObject("WScript.Shell" )
WshShell.Run """%localappdata%\Programs\Hydra\Hydra.exe""", 0 'Must quote command if it has spaces; must escape quotes
Set WshShell = Nothing