Showing posts with label notepad. Show all posts
Notepad Trick - Text to Audio
By : UnknownNotepad Trick - Text to Audio
- Open Notepad file on your Windows PC.
- Copy and paste the below mentioned code :
Dim msg,
sapi
msg=InputBox("Enter your text for conversion–www.ashacks.blogspot.com",
"TechVorm Text-To-Audio
Converter")
msg=InputBox("Enter your text for conversion–www.ashacks.blogspot.com",
Set sapi=CreateObject("sapi.spvoice") sapi.Speak msg
Save this file with any name with .vbs as extension. For eg. Text-To-Audio.vbs
Notepad Trick to Lock Folders
By : UnknownNotepad Trick to Lock Folders
Lets lock a folder using notepad trick which is named as PICS in your D: drive , whose path is D:PICS
Then the code should be something like this:
ren pics pics.{21EC2020-3AEA-1069-A2DD-08002B30309D}
Pics is your folder name. Use the name of the folder in place for pics. Save the text file as lock.bat in the same drive.
To unlock this locked folder:
Open another new notepad text file and type the following:
ren pics.{21EC2020-3AEA-1069-A2DD-08002B30309D} pics
Save the text file as key.bat in the same drive. Here again, pics is the name of the folder. Change it to the folder name you want to lock it.
Open Notepad Continuously
By : UnknownOpen Notepad Continuously
- Open Notepad.
- Paste the following code in your notepad file:
@ECHO off
:top
START c:\windows\notepad.exe
GOTO top
- Save the file with any name nut with .bat extension and close it.
