Trick Make Your Computer Speak What You Type
- Open Notepad and copy and paste the following code into it.
Dim message, sapi
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
message=InputBox(“What do you want me to say?”,”Speak to Me”)
Set sapi=CreateObject(“sapi.spvoice”)
sapi.Speak message
- Now save the notepad file with the name speak.vbs at your desktop.
- Now double click on speak.vbs Type in the box whatever you want your computer to speak for you.
Diary Entry (notepad works as a diary)
- Open notepad.
- Type .LOG
- Save the file as LOG.txt
- Write anything in it and it will be saved with the time when you edit it.
Get fake error message?
- Open Notepad
- Type in: msg * Error: Your system is affected by virus
- Save as "virus.bat"
- Now open that .bat file, now you got error message window
- Its not virus, just your assumption message.
Notepad Trick to Shutdown Computer Forcefully
Open Notepad.Paste the following code in it:
@echo off
msg * Shutdown computer.
shutdown -c “Sleep Tight” -s
msg * Shutdown computer.
shutdown -c “Sleep Tight” -s
Lock Any Files or Folder Without Any Softwares Using Notepad
- Open Notepad.
- Copy and paste the exact code given below.
cls
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== nanovatech.blogspot.com goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
@ECHO OFF
title Folder Private
if EXIST "HTG Locker" goto UNLOCK
if NOT EXIST Private goto MDLOCKER
:CONFIRM
echo Are you sure you want to lock the folder(Y/N)
set/p "cho=>"
if %cho%==Y goto LOCK
if %cho%==y goto LOCK
if %cho%==n goto END
if %cho%==N goto END
echo Invalid choice.
goto CONFIRM
:LOCK
ren Private "HTG Locker"
attrib +h +s "HTG Locker"
echo Folder locked
goto End
:UNLOCK
echo Enter password to unlock folder
set/p "pass=>"
if NOT %pass%== nanovatech.blogspot.com goto FAIL
attrib -h -s "HTG Locker"
ren "HTG Locker" Private
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Private
echo Private created successfully
goto End
:End
- Change your password to red color address.
- Click on the File Menu. Click on Save As.
- Select All Types (or all files) in the Save As Type drop-down menu. Save the file as ".bat" or "Locker.bat"

Click here for comments 0 comments: