Archive for July 2013
Notepad Trick - Convert Text Into Audio
- Open Notepad
- Now add below code into your notepad.Dim msg, sapi
msg=InputBox("Enter your text for conversion","HackingUniversity Text-To-Audio Converter")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak msg - Now save this file as speech.vbs make sure the format is
.vbs
- Now just double click on this small file and enter your text you want as audio.
Sunday, July 14, 2013
Posted by Unknown
Notepad Trick - Lock Folder Using Notepad
- Open Notepad ( make a search in your start menu )
- Now copy below text to your Notepadif EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCK
if NOT EXIST Locker goto MDLOCKER
:CONFIRM
echo Are you sure u 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 Locker “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
echo Folder locked
goto End
:UNLOCK
echo Enter password to Unlock folder
set/p “pass=>”
if NOT %pass%==type your password here goto FAIL
attrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”
ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Locker
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDLOCKER
md Locker
echo Locker created successfully
goto End
:End - Now save this as Locker.bat make sure the extension is .bat
- So now visit to any drive where you want to hide file and folders and paste this .bat file in that drive, now double on this .bat file and it will create a new folder.
- Now you can copy and paste all the things you want to hide or protect in that folder.
- After you have filled that folder with all your files double click that .bat file again and it will open another CMD window and it will ask you for Yes or No.
- Now just type Y for Yes and press Enter.
- Now your folder will be hidden, now if you want to get back that folder just double click that .bat file again and type N for No and press Enter.
Posted by Unknown