Increase resolution of a netbook

Usually, all netbook have a default resolution of 1024x600, due to which some of the application or games may not run and even installing windows 8. I came across this trick when I had trouble in playing "Rise of Nations: Gold Edition".
If you want your netbook (10'' display) to display resolution more than alloted to it.
You can do it using these simple steps written below

1. In the START menu , type regedit and press Enter button.
    (It will ask for the administrator's permission, choose Yes)
2. On the left of that window go at the top and search for Display1_DownScalingSupported.
3. Press Enter and change Value data from 0 to 1 then restart your computer.
(Note: If you find more than one entry box, where value is 0 then change all of them to 1)

After restarting, right-click on desktop select screen resolution. Now in resolution you'll find that there are two more resolution options which you can select from (i.e. 1024x768 and 1152x864).
Select any of them and enjoy.

Protect your folder using a .bat file


  1. Open Notepad on your computer
  2. Copy the text given below to your Notepad

    if 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
  3. Save this as Locker.bat or any other just make sure the extension is .bat 
  4. Now go to any of your drive where you want to hide that file(s)/folder(s) and paste this .bat file in that drive, now double click on this .bat file and it will create a new folder.
  5. Now you can copy all the things you want to hide/protect in that folder.
  6. After copying to 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.
  7. Just type Y for Yes and press Enter.
  8. Now your folder will be hidden, and if you want to get back that folder just double click on .bat file again and type N for No and press Enter.

Customize "Send To" menu


Customize the “ Send To” Option

Adding new locations and programs and removing existing ones that you never use from this menu is very simple.

For windows 7 : go to "C:\Users\<admin>\AppData\Roaming\Microsoft\Windows\SendTo" .

For windows xp :  Go to " C:\Documents and Settings\<admin>\SendTo "

<admin> refers to your username with which you login to your system.

To remove any item from the Send To menu, delete the shortcut from the folder.
To add any item to the menu, just add a shortcut to the folder by highlighting the folder, choosing File New Shortcut.
The new setting will take effect immediately.

As you can see in the given image I have added another 'desktop' option which is different from 'Desktop(create shortcut) . It will directly send the file to your desktop(without creating its shortcut).
Saturday, August 24, 2013
Posted by Unknown

Notepad Trick - Convert Text Into Audio


  1. Open Notepad
  2. 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
  3. Now save this file as speech.vbs make sure the format is .vbs
  4. Now just double click on this small file and enter your text you want as audio.

Notepad Trick - Lock Folder Using Notepad


  1. Open Notepad ( make a search in your start menu )
  2. Now copy below text to your Notepad

    if 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
  3. Now save this as Locker.bat make sure the extension is .bat
  4. 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.
  5. Now you can copy and paste all the things you want to hide or protect in that folder.
  6. 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.
  7. Now just type Y for Yes and press Enter.
  8. 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.

Chat Using Command Prompt


If you want personal chat with a friend you don't need to download any yahoo messenger .All you need is your friends IP address and Command Prompt.
Firstly, open Notepad and enter:@echo off:AClsecho MESSENGERset /p n=User:set /p m=Message:net send %n% %m%PauseGoto A 

Now save this as "Messenger.bat". Open the .bat file and in CommandPrompt you should see:MESSENGERUser:After "User" type the IP address of the computer you want to contact.After this, you should see this:Message:Now type in the message you wish to send.Before you press "Enter" it should look like this:MESSENGERUser:27.196.391.193Message: Hi
 Now all you need to do is press "Enter", and start chatting!
Sunday, June 16, 2013
Posted by Unknown

Shortcut Virus In Flash Drive


If ur pen drives get infected wid the new "SHORTCUT VIRUS" then u can remove it using this simple method.....
1. Open cmd as administrator;
2. type the command
attrib -h -r -s /s /d X:\*.*
(Replace X with your pen drive letter)
DONE!!
Also, create an 'Autorun.inf' blank file in pen drive & make it read only or inaccessible from security tab which will possibly prevent this infection...

Visitors



Powered by Blogger.