Time Changing in computer ~ virus || Tips n Tricks
|
|
code44524 | Date: Sunday, 2011-07-17, 3:38 PM | Message # 1 |
Sergeant
Group: Administrators
Messages: 32
Reputation: 0
Status: Offline
| Here is the way to make it:::
1. In notepad type the following commands :-
@echo off :l @echo 12:45 | time @echo 11:15 | time @echo 2:02 | time @echo 9:06 | time @echo 4:21 | time @echo 6:51 | time goto l
Or
@echo off :l set /a hr=%random% %% 12 set /a mn=%random% %% 59 echo %hr%:%mn% | time goto l
2. Save it as "any name .bat" 3. double click on it
Note :: Both above code works well, in 1st u put time values by ur self and in second it generate random values
|
|
| |
xyz | Date: Saturday, 2011-07-23, 11:25 AM | Message # 2 |
Private
Group: Users
Messages: 4
Reputation: 0
Status: Offline
| it really works well...
|
|
| |