Advertisement
Guest User

False positive

a guest
Apr 9th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 1.07 KB | None | 0 0
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_Icon=hs.ico
  3. #AutoIt3Wrapper_Outfile=Launcher.exe
  4. #AutoIt3Wrapper_Compression=4
  5. #AutoIt3Wrapper_Res_Comment=Shortcut and installation preparatory Binary
  6. #AutoIt3Wrapper_Res_Description=HostileSpaceRevived Launcher
  7. #AutoIt3Wrapper_Res_Fileversion=7.0.0.0
  8. #AutoIt3Wrapper_Res_LegalCopyright=(C) hostilespace.co.uk
  9. #AutoIt3Wrapper_Run_Obfuscator=n
  10. #Obfuscator_Parameters=/cs 1 /cn 1 /cf 1 /cv 1 /sf 1 /sv 1
  11. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  12. If @ScriptDir == "C:\Program Files (x86)\InterAdventure Inc\HostileSpace Revived" Then
  13.     If FileExists(@ScriptDir&"\HSRClient.exe") Then
  14.         ShellExecute(@ScriptDir&"\HSRClient.exe","",@ScriptDir,"runas")
  15.     Else
  16.         MsgBox(16,"Error","Did not found "&@ScriptDir&"\HSRClient.exe")
  17.     EndIf
  18. Else
  19.     If FileExists(@ScriptDir&"\HSRClient.exe") Then
  20.         ShellExecute(@ScriptDir&"\HSRClient.exe","",@ScriptDir)
  21.     Else
  22.         MsgBox(16,"Error","Did not found "&@ScriptDir&"\HSRClient.exe")
  23.     EndIf
  24. EndIf
  25. Exit
  26. ; EOF
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement