Monday 17 August 2015

HOW TO CHANGE THE LOG ON SCREEN TEXT AND COLOR



HOW TO CHANGE THE LOG ON SCREEN TEXT AND COLOR IN VISTA AND WINDOWS.


NOTE : 

  • How to change the log on screen text color in Windows 7.
  • You must be logged in as an administrator to be able to do the steps in this tutorial.

DISABLING START-UP PROGRAM


Disabling Automatic Startup Programs

hii
If you don't want certain programs or applications to run automatically on startup, there's an easy way to disable them.


  • Click Start Button
  • Then Type "msconfig" in the search box
  • Click Continue in the User Account Control to continue
  • Click on the Startup Tab
  • Then Uncheck any boxes in the "Startup Items" that you wish to disable or click the Disable All button (not recommended)
  • Click OK

If you need to re-enable any of the programs, go through the same process and check the boxes of programs you wish to run automatically on startup.

Sunday 16 August 2015

SPEAK WHATEVER YOU TYPE


Make Your PC Speak Whatever You Type

Now you can create your own text to speech converter software to make your computer speak whatever you type.

Just run this script and make it read any funny sentence.Copy the code given below in notepad and save it as anyname.vbs. Make sure that you save it as .vbs file. 


Dim message, sapi
message=InputBox("What do you want me to say?","Speak to Me")
Set sapi=CreateObject("sapi.spvoice")
sapi.Speak message

After making a vbs file just double click on that file and type anything you want in the text box.




CREATE PARTITIONS WITHOUT FORMATTING


How To Partition A Hard Disk Without Formatting

create partitions on your hard disk without losing any data and without the need for any additional software to do so.

This method works with (Windows XP, Windows Vista and Windows 7). If you have a single partition on your Laptop or your Computer, then this partition can be extended to create more partitions. 

To create a partition follow the steps given below

CREATE LOG ON MESSAGE


Create Your Own Logon Message

1 Click start 
  click run
  type regedit, 
  
  then click ok!

2 In The registry editor, drill down to the following key:
hklm\software\Microsoft\Windows NT\Current version\Winlogon.

Friday 14 August 2015

SET MY PROPERTIES IN TO YOUR IMAGE


My Properties In Set To Your Image
  • Following Step

1). Open Notepad.
2). Copy and paste to Notepad:
Code:

[General]
Manufacturer="::| abc |:: "
Model="Support Information"
[Support Information]
Line1="Add Your Name"
Line2="Information"
Line6="Here u can add your phone number or something !!"
Line7="Add your e-mail: Example@aaa.com"

Thursday 13 August 2015

BASIC PC SHORTCUT KEYS


  • Basic PC Shortcut.


Besides the special character shortcuts listed here, some special characters are also located on the number keys (below the F1 - F12 keys). You can enter these special characters by pressing the Shift key and the number key that has the special character listed on it.

CREATE A MESSENGER


1. First open notepad. 
2. Then past this code in notepad.

@echo off
:A
Cls
echo welcome to messenger...
set /p n=User:
set /p m=Message:
net send %n% %m%
Pause
Goto A

3. Then save to "Windows Batch File (.bat)".

4. Then Run.