-->

Join The Community

Search

Showing posts with label VBS SCRIPTS. Show all posts
Showing posts with label VBS SCRIPTS. Show all posts
Sep 18, 2010

Make Computer Talk

 This is a visual basic script file that will pop up an msg which requires
1)Open Notepad
2) Copy the below text and paste on notepad...

Dim userInput
userInput = InputBox("Write a message for me to say")
Set Sapi = Wscript.CreateObject("SAPI.SpVoice")
Sapi.speak userInput

3) Be Sure To Save As .VBS
4) Now open it and you will see an place to write
5) When you write it and press OK
6) Your computer will tell what you typed

Read More... Make Computer Talk

Reinstall Windows Without Losing Anything

How To Reinstall Windows Without Losing Anything
-------------------------------------------------------
You can use this method as often as you like when you need to repair something that had gotten corrupted and you don't want to do a clean install.
This is better than doing a windows repair install.
1- Start WindowsXP
2- Go to the location of your source files
3- Run WINNT32 /unattend
For example, ur drive letter:\I386\winnt32 /unattend ( copy & paste this command into the RUN box, then press ENTER ) Your computer will do the rest.
OR
Start > All Programs > Accessories > Command Prompt.
Copy & paste > ur drive letter:\I386\winnt32 /unattend (notice the space between 32 and / )
Press Enter.
If you have i386 on your drive, you can replace D: ( ur drive letter: is your cd drive letter ) with the location of it. (be sure it's the full i386 though)
if ur drive letter:\I386\winnt32 /unattend doesn't work then try : ur drive letter:\winnt32 /unattend.

Read More... Reinstall Windows Without Losing Anything