This tutorial is for creating a software for opening your Folders and Files
( Mp3,videos,Images, Applications etc).
Let us start
Steps
1. Open Notepad and copy the below code
Dim a
Do
a = inputbox("Enter the Folder / File path","Folder Opener","c:\")
set x = CreateObject("WScript.Shell")
If Len(a) = 0 Then
Exit Do
End if
x.run a
loop
2. Now "Save As' Folder Opener.vbs (Any name with .vbs extension will do).
Also change "Save As Type" to "All Files".
3. Double click to run your application.Now look at the input box, c:\ is shown which is the default path set (This opens the C Drive of your system)
4. Now input your folder paths and see the result.For files (mp3,Images,
Videos,Applications etc), you need to give the extension of the file too.
5. Example input commands
C:\Softsprogrammer (Opens Softsprogrammer folder which is in C Drive)
D:\Music\Disco.mp3 (Plays Disco.mp3)
D:\Videos\Sample.mp4 (Plays Disco.mp4)
C:\Talk IT.vbs (Runs Talk IT.vbs)
Conclusion
You just learned to create a software for accessing your folders and opening /running your files / applications.
You may like Talk IT (The Speaking App) and CD Drive Ejector Virus too.
Thanks
Admin
No comments:
Post a Comment