Quote:
Originally Posted by hardbal
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