You are on page 1of 1

How to Create FOLDER cannot DELETE,RENAME and REMOVE ?

1.Run CMD
2.choose DRIVE you want to create EX. D:
3.to create a folder type ( md titing\ ) hit ENTER
4.to remove the folder type ( rd titing\ ) hit ENTER

How to HIDE FOLDER ?

1. Run CMD
2. to hide folder type ( attrib +s +h D:\titingfolder ) hit enter
3. to REHIDE folder type ( attrib -s -h D:\titingfolder ) hit enter

HOW TO ENABLE WINDOWS SCRIPT HOSTS ?

1. regedit
2. HKEY_LOCAL MACHINE
3. SOFTWARE
4. MICROSOFT
5. WINDOWS SCRIPT HOSTS
6. ENABLED

HOW TO MAKE PRANK DIALOGUE BOX

SAVE AS.VBS

Write this code first-


X=MsgBox("Message Description",0+16,"Title")

1. You can write any number from 1,2,3 or 4 instead of 0 (before the '+' symbol)
Below is the meaning of these numbers:

0 = OK Button,
1 = OK / Cancel Button,
2 = Abort / Retry / Ignore Button,
3 = Yes / No / Cancel Button,
4 = Yes / No Button,
5 = Retry / Cancel Button

2. You can write 32 or 48 or 64 instead of 16.


Below is the meaning of each number:

16 = Critical Icon,
32 = Help Icon,
48 = Warning Icon,
64 = Information Icon,

You might also like