15 cool Notepad Tricks By;-)awesomeboy_atulraj
So, here are 15 cool Notepad Tricks you should try at your own risk 1. Continually Pop Out CD Drive Using Notepad Don’t you think it would be fun if you could play with your friend by making his cd-drive pop again and again? Just enter the text below into notepad and save it as a .vbs file. Double click on the .vbs file to see it work. Set oWMP = CreateObject(“WMPlayer.OCX.7?) Set colCDROMs = oWMP.cdromCollection do if colCDROMs.Count >= 1 then For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next For i = 0 to colCDROMs.Count – 1 colCDROMs.Item(i).Eject Next End If wscript.sleep 5000 loop 2. Shutting Down Computer Using Notepad Just imagine, if instead of pressing on the start button and then on the shutdown button and then on the ok option, you could just double-click on an icon to shut your system down. The Notepad trick code written below does just that. Just save the file as a .vbs file, and press it when you need to shut down the ...