Pages

Labels

Friday, August 17, 2012

how to create undeletable folder in your pc

how to create undeletable folder in your pc


Friends Now You can can create undeletable folder in your pc..it's easy..

First of all go to run

then type cmd and press Enter

now dos will be opened


then type D: - For change Drive location

then type md AUX\

now your undeletable folder created in D drive..




Deleting Undeletable Folder

Again open Command Prompt as given in the steps above.
Now select the drive as you did earlier.
Now type the command rd AUX

Thursday, August 16, 2012

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

Notepad Tricks: Cool Notepad tricks for Windows-Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives

Create a Harmless Funny Virus with Notepad-Continuously eject CD/DVD drives


This VBS trick will create a code which will continuously eject all your connected Optical drives. If you put them back in, it will pop them out again. Copy this code and paste it in Notepad as Virus.vbs or *.vbs.


Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
do
if colCDROMs.Count >= 1 then
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
For i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
Next
End If
wscript.sleep 5000
loop

Tuesday, August 14, 2012

Download Google Books using Google Book Downloader

Download Google Books using Google Book Downloader

Download Google Books using Google Book Downloader

Google Book Search is a tool from Google that searches the full text of books that Google scans, converts to text using optical character recognition, and stores in its digital database. Many popular books are available with Google Book. The books available can be read online only and cannot be downloaded for later use. You can download certain books as pdf that allows public-domain works and are free from copyright protection. Only few books are available with full preview based on agreements with publishers.


Google Books Downloader Lite is a free, open-source utility that lets out download any book that's available in "full view" from Google Books. Of course, most of these books also feature download links right on the web page, but Google Books Downloader lets you queue up multiple jobs and convert all of the downloaded books to PNG files.


The application is available for Windows and requires Microsoft .NET Framework 3.5 SP1.

download Google Book Downloader heare

Tuesday, August 7, 2012

How to check That My Virus Guard is Working?

How to check That My Virus Guard is Working?
How to check That My Virus Guard is Working?

Online and virus between these two first one is friend and other is enemy to us. I mean i have Internet and i don't have any virus in my pc if i guess like that then its very soon my pc will go to service vendor. Do you know that maximum virus are coming from online rather than other services. So if you have Internet connection you must used antivirus in your pc. But everything is okay. You have pretty good strong antivirus protection and Internet connection as well - still something you are doubting that Am I protected 100% from virus ? You cant rely on antivirus so free. So what should you need to do ? Yes you are thinking now



So may be you are tired on scanning on pc. You need to do something extra. Here i am telling you how to check that my pc antivirus is working? To do this check you have to copy or write few words in your notepad. Then save it giving any name. Now go to this file and check it with your currently installed antivirus. Do you see something? Yes if this file can catch by your antivirus as a potential harm then you can be 100% sure that your antivirus is working well. Lets find the code below:


X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*

Note: This is not any critical virus. Don't be worried about this file. This is a logic file of a virus. You can delete it or when you check by antivirus the file will automatically removed. So after applying actions with the antivirus the message will show like this image below:


source :http://www.prioarena.com/

Secret Codes for Nokia

Secret Codes for Nokia

Secret Codes for Nokia


Codes : 1) *#06# For checking IMEI(international Mobile Equipment Identity)
2) *#7780# Reset to factory settings
3) *#0000# To view software version
4) *#2820# Bluetooth device address
5) *#746025625# Sim clock allowed status
6) #pw+1234567890+1# Shows if ur sim as any restrictions

Monday, August 6, 2012

How to lock any file or folder without any software

How to lock any file or folder without any software

How to lock any file or folder without any software


How to lock any file or folder without any software


Most of us have private data. Not all of us have a private computer to keep that data. So, we just end up with other people viewing that data. Although password protecting software do work, it is almost useless to hide private data with these software(because we are always questioned as to what it is that we are hiding with the help of these software).


Hidden folders do not work as they can be easily searched with Windows Search. So, we need an alternative way to create hidden password protected folders which only we can access. And that is exactly what we will learn in this post.


With this trick, you can create a secure password protected folder in Windows which no one except you can access. To use this trick, follow the instructions given below:-

1. Open Notepad.
2. Copy and paste the exact code given below:-


cls
@ECHO OFF
title http://bestcomputertricksandtips.blogspot.com
if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
if NOT EXIST MyFolder goto MDMyFolder
:CONFIRM
echo Are you sure to lock this 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 MyFolder "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 Your Secure Folder
set/p "pass=>"
if NOT %pass%== computer-tricks-corner.blogspot.com goto FAIL
attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
echo Folder Unlocked successfully
goto End
:FAIL
echo Invalid password
goto end
:MDMyFolder
md MyFolder
echo MyFolder created successfully
goto End
:End

3. Click on the File Menu. Click on Save As.
4. Select All Types (or all files) in the Save As Type dropdown menu. Save the file as *.bat or Locker.bat


After creating the file, double click on the Saved file. A new folder will be created. Enter your data in the folder. Again, double click on the batch file. Type Y and press Enter. The folder will be hidden from view. To re-view your folder, double click on the saved batch file. Enter password as " bestcomputertricksandtips.blogspot.com " without quotes ("") and press Enter key. This is also the default password. Your folder will be visible again. To change the default password, edit the part of the code given in blue and enter your own password. The overall usability of this trick can be improved by deleting the batch file after hiding your folder and re-creating it when you wish to access your folder again. If you face any problem using this trick, you can write a comment and I will do my best to help you.
Note : This works on Windows 7, Windows XP and Vista. First try this on useless data to be sure and then only hide your personal data.

if you wan't download this file download here
download

Sunday, August 5, 2012

Google Plus Shortcut Keys List for G+ Users

Google Plus Shortcut Keys List for G+ Users
Space Ba :- Scroll down the stream
Shift + Space :- Scroll up the stream
J :- Single post down scroll
K :- Single post up scroll
Q :- Jump to chat
Enter :- Start comment
Tab + Enter :- End comment
+/@ :- Mention someone in the comment or post.
Backspace :- Back to last page

how to make Facebook Colorful Text

how to make Facebook Colorful Text

Whenever am chatting with friends on Facebook, I always make my chatting moments with friends interesting and unique by changing the text color in the chat box. Colors they say it influence the mood of humans and it gives extra pleasure & excitement on Facebook chat.

Facebook itself doesn’t support the use of colors and fonts because of some reasons. Facebook put restrictions on the use of fonts and colors for the sake of efficiency and speed. Fonts and colors can cause delay and overloading so they are not allowed in Facebook wall section.


In Facebook chat section, you can make use of colorful text. This can be done with our Facebook colored text generator that will make your chatting moments with buddy on Facbook look cool & fun. Now, all you got to do with this generator is to copy and paste the code generated into your Facebook chat and the result will be a colorful large font in your Facebook chat. A preview will also be shown to you as you type the text into the generator.
click here to goFacebook Colorful Text Generator

Make Facebook Chat Better:--

Make Facebook Chat Better: By adding profile photos in chat messages

Make Facebook Chat Better:

You Have already tried Google tricks like, "Do a barrel roll" and "Let it snow" are the tricks recently introduced by Google. But this time, Facebook has come up with an innovative Trick that lets users add profile photos in their Facebook chat messages.


It's very simple! All the users need to do is put the [[username]] into the chat message, send it and they will see the text replaced with the profile image. Though the image appears is quite small like an emoticon, but it's cool.


Here I explain you in detail that how you can do it:

  • Start chatting with someone (pretty simple).
  • Get the username or profile ID (it is at the end of the URL). For instance,if you will go to our profile, the URL appear will be: http://www.facebook.com/linkstoweb . However in some cases, you will find the number instead of a name number such as http://www.facebook.com/111111111
  • Put the name or number in double brackets like [[number]] in case of the first URL, and [[linkstoweb]] for the second URL
  • Enter the same into your Facebook Chat. When you will send it, the bracketed number or letters will replaced with the profile image. For Eg: “ Hi Welcome to Linkstoweb [[Linkstoweb]] ”
  • Enter the same into your Facebook Chat. When you will send it, the bracketed number or letters will replaced with the profile image. For Eg: “ Hi Welcome to Linkstoweb [[Linkstoweb]] ” -Here [[linkstoweb]] will replaced by our profile picture .

General Keyboard Shortcuts

General Keyboard Shortcuts

General Keyboard Shortcuts CTRL+C (Copy)
CTRL+X (Cut)
CTRL+V (Paste)
CTRL+Z (Undo)
DELETE (Delete)
SHIFT+DELETE (Delete the selected item permanently without placing the item in the Recycle Bin)
CTRL while dragging an item (Copy the selected item)
CTRL+SHIFT while dragging an item (Create a shortcut to the selected item)
F2 key (Rename the selected item)
CTRL+RIGHT ARROW (Move the insertion point to the beginning of the next word)
CTRL+LEFT ARROW (Move the insertion point to the beginning of the previous word)
CTRL+DOWN ARROW (Move the insertion point to the beginning of the next paragraph)
CTRL+UP ARROW (Move the insertion point to the beginning of the previous paragraph)

CTRL+SHIFT with any of the arrow keys (Highlight a block of text)
SHIFT with any of the arrow keys (Select more than one item in a window or on the desktop, or select text in a document)
CTRL+A (Select all)
F3 key (Search for a file or a folder)
ALT+ENTER (View the properties for the selected item)
ALT+F4 (Close the active item, or quit the active program)
ALT+ENTER (Display the properties of the selected object)
ALT+SPACEBAR (Open the shortcut menu for the active window)
CTRL+F4 (Close the active document in programs that enable you to have multiple documents open simultaneously)
ALT+TAB (Switch between the open items)
ALT+ESC (Cycle through items in the order that they had been opened)
F6 key (Cycle through the screen elements in a window or on the desktop)
F4 key (Display the Address bar list in My Computer or Windows Explorer)
SHIFT+F10 (Display the shortcut menu for the selected item)
ALT+SPACEBAR (Display the System menu for the active window)
CTRL+ESC (Display the Start menu)
ALT+Underlined letter in a menu name (Display the corresponding menu)
Underlined letter in a command name on an open menu (Perform the corresponding command) F10 key (Activate the menu bar in the active program)
RIGHT ARROW (Open the next menu to the right, or open a submenu)
LEFT ARROW (Open the next menu to the left, or close a submenu)
F5 key (Update the active window)
BACKSPACE (View the folder one level up in My Computer or Windows Explorer)
ESC (Cancel the current task)
SHIFT when you insert a CD-ROM into the CD-ROM drive (Prevent the CD-ROM from automatically playing)

Dialog Box Keyboard Shortcuts
CTRL+TAB (Move forward through the tabs)
CTRL+SHIFT+TAB (Move backward through the tabs)
TAB (Move forward through the options)
SHIFT+TAB (Move backward through the options)
ALT+Underlined letter (Perform the corresponding command or select the corresponding option)
ENTER (Perform the command for the active option or button)
SPACEBAR (Select or clear the check box if the active option is a check box)
Arrow keys (Select a button if the active option is a group of option buttons)
F1 key (Display Help)
F4 key (Display the items in the active list)
BACKSPACE (Open a folder one level up if a folder is selected in the Save As or Open dialog box)
Microsoft Natural Keyboard Shortcuts
Windows Logo (Display or hide the Start menu)
Windows Logo+BREAK (Display the System Properties dialog box)
Windows Logo+D (Display the desktop)
Windows Logo+M (Minimize all of the windows)
Windows Logo+SHIFT+M (Restore the minimized windows)
Windows Logo+E (Open My Computer)
Windows Logo+F (Search for a file or a folder)
CTRL+Windows Logo+F (Search for computers)
Windows Logo+F1 (Display Windows Help)
Windows Logo+ L (Lock the keyboard)
Windows Logo+R (Open the Run dialog box)
Windows Logo+U (Open Utility Manager)

Accessibility Keyboard Shortcuts
Right SHIFT for eight seconds (Switch FilterKeys either on or off)
Left ALT+left SHIFT+PRINT SCREEN (Switch High Contrast either on or off)
Left ALT+left SHIFT+NUM LOCK (Switch the MouseKeys either on or off)
SHIFT five times (Switch the StickyKeys either on or or off) Windows Logo +U (Open Utility Manager)
Windows Explorer Keyboard Shortcuts
END (Display the bottom of the active window)
HOME (Display the top of the active window)
NUM LOCK+Asterisk sign (*) (Display all of the subfolders that are under the selected folder)
NUM LOCK+Plus sign (+) (Display the contents of the selected folder)
NUM LOCK+Minus sign (-) (Collapse the selected folder)
LEFT ARROW (Collapse the current selection if it is expanded, or select the parent folder)
RIGHT ARROW (Display the current selection if it is collapsed, or select the first subfolder)
Shortcut Keys for Character Map
After you double-click a character on the grid of characters, you can move through the grid by using the keyboard shortcuts:
RIGHT ARROW (Move to the right or to the beginning of the next line)
LEFT ARROW (Move to the left or to the end of the previous line)
UP ARROW (Move up one row)
DOWN ARROW (Move down one row)
PAGE UP (Move up one screen at a time)
PAGE DOWN (Move down one screen at a )
HOME (Move to the beginning of the line)
END (Move to the end of the line)
CTRL+HOME (Move to the first character)
CTRL+END (Move to the last character)
SPACEBAR (Switch between Enlarged and Normal mode when a character is selected)
Microsoft Management Console (MMC) Main Window Keyboard Shortcuts
CTRL+O (Open a saved console)
CTRL+N (Open a new console)
CTRL+S (Save the open console)
CTRL+M (Add or remove a console item)
CTRL+W (Open a new window)
F5 key (Update the content of all console windows)
ALT+SPACEBAR (Display the MMC window menu)
ALT+F4 (Close the console)
ALT+A (Display the Action menu)
ALT+V (Display the View menu)
ALT+F (Display the File menu)
ALT+O (Display the Favorites menu)
MMC Console Window Keyboard Shortcuts

CTRL+P (Print the current page or active pane)
ALT+Minus sign (-) (Display the window menu for the active console window)
SHIFT+F10 (Display the Action shortcut menu for the selected item)
F1 key (Open the Help topic, if any, for the selected item)
F5 key (Update the content of all console windows)
CTRL+F10 (Maximize the active console window)
CTRL+F5 (Restore the active console window)
ALT+ENTER (Display the Properties dialog box, if any, for the selected item)
F2 key (Rename the selected item)
CTRL+F4 (Close the active console window. When a console has only one console window, this shortcut closes the console)
Remote Desktop Connection Navigation


CTRL+ALT+END (Open the Microsoft Windows NT Security dialog box)
ALT+PAGE UP (Switch between programs from left to right)
ALT+PAGE DOWN (Switch between programs from right to left)
ALT+INSERT (Cycle through the programs in most recently used order)
ALT+HOME (Display the Start menu)
CTRL+ALT+BREAK (Switch the client computer between a window and a full screen)
ALT+DELETE (Display the Windows menu)
CTRL+ALT+Minus sign (-) (Place a snapshot of the active window in the client on the Terminal server clipboard and provide the same functionality as pressing PRINT SCREEN on a local computer.)


CTRL+ALT+Plus sign (+) (Place a snapshot of the entire client window area on the Terminal server clipboard and provide the same functionality as pressing ALT+PRINT SCREEN on a local computer.)

Microsoft Internet Explorer Navigation




CTRL+B (Open the Organize Favorites dialog box)

CTRL+E (Open the Search bar)
CTRL+F (Start the Find utility)
CTRL+H (Open the History bar)
CTRL+I (Open the Favorites bar)
CTRL+L (Open the Open dialog box)
CTRL+N (Start another instance of the browser with the same Web address)
CTRL+O (Open the Open dialog box, the same as CTRL+L)
CTRL+P (Open the Print dialog box)
CTRL+R (Update the current Web page)
CTRL+W (Close the current window)





Thursday, August 2, 2012

Download Complete Microsoft .NET Framework 3.5 Setup

Download Complete Microsoft .NET Framework 3.5 Setup

Download Complete Microsoft .NET Framework 3.5 Setup

Many new Windows applications requires latest version of Microsoft .NET framework which is version 3.5 at the time of of writing of this post. If you go to Microsoft download center, then by default you will get live installer of approximately 2-3 MB’s while complete .NET framework requires 50-200 MB. Actually on the same page there are links to complete setup but they are placed in a way that anyone can hardly notice them. Seems like Microsoft wants you to download live installer but there are problems with live installer…

  • It may hang forever if you have slow internet connection like dial-up, GPRS, etc. You can not use it at all if your computer is not connected to internet
  • Also if you are running pirated Windows better not to use any software/installer from Microsoft which connects to Internet.

<

Here I am giving you links to complete Microsoft .NET Framework 3.0 & 3.5 setups which are gathered from Microsoft pages

# Microsoft .NET Framework 3.5 Setup

32-bit version (Size: ~200MB)
64-bit Version (Size: ~90MB)
Do not worry about authenticity of above links as they are from Microsoft’s server!

source=:http://devilsworkshop.org/download-complete-microsoft-net-framework-35-setup/
Submit Your Site To The Web's Top 50 Search Engines for Free!