View Single Post
  #7  
Old 10-03-2013, 07:20
spawniectes's Avatar
spawniectes spawniectes is offline
Senior Member
 
Join Date: Sep 2010
Location: Argentina
Posts: 202
Thanks: 52
Thanked 401 Times in 76 Posts
spawniectes is on a distinguished road
Quote:
Originally Posted by hardbal View Post
its only on the dvd2 of the conversion file ,avg says its a troyan horse generic31.aihx i deleted that file it had no use on te conversion ( firewall.exe), the game works fine whitout that file
Its a false positive, that file the only thing that do is block the game so it can not access to internet. here is the code of firewall.exe
Code:
echo off
:start
cls
set choice1=
color 0A
echo *************************
echo   Firewall Blocker
echo *************************
echo.
set /p choice1=Select your game directory (e.g. C:\Program Files\Tomb Raider): 
if "%choice1%"=="" goto start
cls
echo.
echo Blocking your game in the firewall, please wait...
echo.
netsh advfirewall firewall add rule name="block Tomb raider" dir=out action=block program="%choice1%\TombRaider.exe"
:end
echo.Finished!
pause
Reply With Quote