Showing posts with label VB Scripts. Show all posts
Showing posts with label VB Scripts. Show all posts

Most Popular Notepad Trick

Bush may have hid the facts. But whether or not he did, this trick looks really weird. According to the trick it really seems Microsoft had put some hack into the coding of notepad making the text hidden after saving it.

Open notepad.
Type BUSH HID THE FACTS

image
Save that file.
Close Notepad
Open the file again (with notepad like before)

image
Can you read it back?
Why This Happens ?
It was later known 4335 Rule. It means that if we enter four words separated by spaces, wherein the first word has 4 letters, the next two have three letters each, and the last word has five letters. Then Notepad Automatically hides the text into unknown code. Similar are with "this app can break".

Eject Your CD DVD Drives With VB script



** Go to Start >> Run

** Type Notepad and hit Enter

** Now in Notepad type:



Set oWMP = CreateObject("WMPlayer.OCX.7" )

Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next ' cdrom
loop
End If

** Go to File >> Save As...
** Type Eject.vbs and click Save

How to use:
$ Just Double Click the saved file ! (Eject.vbs)

How To Stop:
$ First Way:
Restart the Computer... and this will stop the script
$ Second Way:
Open Task Manager and in processes search for wscript.exe and click End Process
Related Posts with Thumbnails