2KWatcher wrote:Planning on using the NBA TV Scoreboard my monitor has 1600 [Width] x 900 [Height] dimension. Oh and my Anti-Virus [Norton] detected that it has some sort of virus or whatever. Help, thanks.
First, viruses does not harm your pc as popular to think. Much bigger harm (in long distance) is to keep antivrus running all the time as it eats a lot of resources.
Second, there are no viruses inside. Probably your antivirus is pretty stupid. There are no anything special inside the archive, just *.iff (graphic) files archived to *.exe, and *.txt (command script) file renamed to *.bat.
I am sure your antivirus is affraid of *.bat file. But it is very friendly actually. Here is everythink what I wrote to it:
@echo off
cls
:start
echo.NBA TV v2
echo.
echo.SCOREBOARD-Select number 1-4 to install texture and team primary colors
echo.SECONDARY COLORS- for secondary team colors choose from numbers 101-130
echo.
echo 1. NBA.COM 101. ATL - red 116. MIA - black
echo 2. NBA TV 102. BOS - white 117. MIL - red
echo.3. NBA LEAGUE PASS 103. BKN - white 118. MIN - black
echo.4. FAN NIGHT 104. CHA - orange 119. NY - blue
echo. 105. CHI - black 120. NO - gold
echo. 106. CLE - gold 121. OKC - orange
echo. 107. DAL - l.blue 122. ORL - black
echo. 108. DEN - gold 123. PHI - red
echo. 109. DET - red 124. PHX - orange
echo. 110. GS - gold 125. POR - black
echo. 111. HOU - silver 126. SAC - black
echo. 112. IND - gold 127. SA - silver
echo. 113. LAC - blue 128. TOR - black
echo. 114. LAL - pink 129. UTA - gold
echo. 115. MEM - l.blue 130. WAS - blue
echo.
set /p x=Pick:
IF '%x%' == '%x%' GOTO Item_%x%
:Item_1
start /MIN .\NBACOM.exe
GOTO START
:Item_2
start /MIN .\NBATV.exe
GOTO START
:Item_3
start /MIN .\NBAleaguepass.exe
GOTO START
:Item_4
start /MIN .\FANNIGHT.exe
GOTO START
:Item_101
start /MIN .\ATL.exe
GOTO START
:Item_102
start /MIN .\BOS.exe
GOTO START
:Item_103
start /MIN .\BRO.exe
GOTO START
:Item_104
start /MIN .\CHA.exe
GOTO START
:Item_105
start /MIN .\CHI.exe
GOTO START
:Item_106
start /MIN .\CLE.exe
GOTO START
:Item_107
start /MIN .\DAL.exe
GOTO START
:Item_108
start /MIN .\DEN.exe
GOTO START
:Item_109
start /MIN .\DET.exe
GOTO START
:Item_110
start /MIN .\GS.exe
GOTO START
:Item_111
start /MIN .\HOU.exe
GOTO START
:Item_112
start /MIN .\IND.exe
GOTO START
:Item_113
start /MIN .\LAC.exe
GOTO START
:Item_114
start /MIN .\LAL.exe
GOTO START
:Item_115
start /MIN .\MEM.exe
GOTO START
:Item_116
start /MIN .\MIA.exe
GOTO START
:Item_117
start /MIN .\MIL.exe
GOTO START
:Item_118
start /MIN .\MIN.exe
GOTO START
:Item_119
start /MIN .\NY.exe
GOTO START
:Item_120
start /MIN .\NO.exe
GOTO START
:Item_121
start /MIN .\OKC.exe
GOTO START
:Item_122
start /MIN .\ORL.exe
GOTO START
:Item_123
start /MIN .\PHI.exe
GOTO START
:Item_124
start /MIN .\PHX.exe
GOTO START
:Item_125
start /MIN .\POR.exe
GOTO START
:Item_126
start /MIN .\SAC.exe
GOTO START
:Item_127
start /MIN .\SA.exe
GOTO START
:Item_128
start /MIN .\TOR.exe
GOTO START
:Item_129
start /MIN .\UTA.exe
GOTO START
:Item_130
start /MIN .\WAS.exe
GOTO START