Showing posts with label Windows XP. Show all posts
Showing posts with label Windows XP. Show all posts

Friday, 16 May 2014

Computer Security Tips to Protect your System information

| |
0 comments
We hear a lots and lots of concerning cases of hacking, softwares, malwares, viruses, etc, Here are some Computer Security tips to safeguard your PC/laptop against hacker intrusions, malware and different viruses that exploits your PC or Laptops.





6 Computer Security Tips


1) Use a firewall

A firewall is a software system that will handle outgoing and incoming Internet connections of your computer. You’ll be able to clearly use the one engineered into Windows by default, however this can be by no means the foremost Efficient. i will like to recommend Comodo Firewall which is free and straightforward to use. Using Firewall is just one of Computer Security tip that i want to mention

2) Use antivirus

There are obvious reasons to use Anti virus Programs, but there are People that don’t have any antivirus or those who have, they have not upgraded thier antivirus since their permit has lapsed.. However there are quite powerful free antivirus Available. One must Install Antivirus to Protect and Keep thier Computer Secure

3) Updating software system:

New vulnerabilities are found in software system or operative systems like Windows each day. So one must always updates thier software system. Keeping your installed Softwares upto date is Important, as it will Keep hackers away from breaking into your System and its Said that any upto date program Works smooth without any glitch.

4) Use complicated passwords

Users like you and me use too weak  passwords that are very simple to detect for hackers, there are so many software which will try all Possible Combinations to Crack your Password, this is known as Bruteforce technique .  If your secret word(password) Consists of just 4 or 5 characters, it will easily discover it.
Your Password becomes harder to crack if it consists of 8 or 9 characters which also includes numbers, letters and special characters.To check the strength of your Password, there are plenty tools over internet. This is an important Computer Security tip that everyone must Consider.

5) Use totally different passwords

Most common mistake people make is that they use same password everywhere over internet. Yes, its very hard to remember passwords for all accounts but its highly advisible to have different passwords for different accounts.
This Practice Comes handy if one of your account gets Compromised/Hacked, then your other accounts are still safe.

6) Always Beware:

  • Finally, Abstain from getting hacked,  Always beware while Browsing Internet, don’t transfer and install everything and anything on your PC or Laptop.
  • Always check the sources of software system and websites that you just use to download programs.
  • Don’t be silly and amateur hackers won’t be able to do  anything to you (while serious and skilled hackers will not have any interest to hack you)
Do you have any Computer Security tip that you will like to share ? Feel free to comment below.
Read More

Monday, 1 July 2013

How to watch 18+ videos on youtube without signing in ?

| |
0 comments

sometime its annoying when youtube ask you to sign in for your age verification. so now i will show you how to watch 18+ videos on youtube without signing in. this trick is 100% working
1)  first get the url of the video you want to watch as shown below:-

       https://www.youtube.com/watch?v=YQVUIVE2M_Q

2) then copy the video id. for the above link video id is  YQVUIVE2M_Q
3)now paste the video id in the link given below:-

 http://www.youtube.com/v/videoid?fs=1

4) paste the video id you copied in step 2 in the place of videoid
5)DONE
                                                        ENJOY YOUR VIDEO
http://www.youtube.com/v/VideoId?fs=1#sthash.1YHc3DGu.dpuf
http://www.youtube.com/watch?v=4Xkh6j7RMqk
http://www.youtube.com/watch?v=4Xkh6j7RMqk
Read More

Tuesday, 25 June 2013

Seven Cool Notepad Tricks To Scare Ur Friends

| |
0 comments




We all know Notepad. It's a simple text editor. But today I am going to discuss some cool tricks which you can perform on your computer using simple notepad. You can use these tricks to scare your friends. 

Please Note -  These tricks will not harm your computer in anyway. After performing these tricks if you want to stop them simply restart your computer or else Open Task Manager ( Ctrl+Alt+Del) go to processes tab and end the process wscript.exe.


1) Continuously Pop out CD or DVD Drive:
  • Open Notepad.
  • Copy the code bellow.
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
  • Now save as abc.vbs 
  • Send it to your friend now. 
 2) Toggle Caps Lock button On-Off Continuously :
  • Open Notepad.
  • Copy the following code.

Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{CAPSLOCK}"
loop
  • Save it as abc.vbs
  • And send it to your friends.
3) Hack keyboard to make it type anything continuously:
  • Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "You are a fool."
loop
  • You can change You are a fool. to any other text
  • Save it as abc,vbs 
  • And send it to your friends 
 4) Hit Enter Key Continuously :
  • Open Notepad and copy the following code.
Set wshShell = wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "~(enter)"
loop
  • Save it as abc.vbs
  • Now sent it to your friends.
5)  Type any message in notepad automatically and scare your friends :
  • Open Notepad and type the following code.
 

WScript.Sleep 1800
WScript.Sleep 1000
Set WshShell = WScript.CreateObject("WScript.Shell")
WshShell.Run "notepad"
WScript.Sleep 100
WshShell.AppActivate "Notepad"
WScript.Sleep 500
WshShell.SendKeys "Hel"
WScript.Sleep 500
WshShell.SendKeys "lo "
WScript.Sleep 500
WshShell.SendKeys ", ho"
WScript.Sleep 500
WshShell.SendKeys "w a"
WScript.Sleep 500
WshShell.SendKeys "re "
WScript.Sleep 500
WshShell.SendKeys "you"
WScript.Sleep 500
WshShell.SendKeys "? "
WScript.Sleep 500
WshShell.SendKeys "I a"
WScript.Sleep 500
WshShell.SendKeys "m g"
WScript.Sleep 500
WshShell.SendKeys "ood"
WScript.Sleep 500
WshShell.SendKeys " th"
WScript.Sleep 500
WshShell.SendKeys "ank"
WScript.Sleep 500
WshShell.SendKeys "s! "
  • Now save it as abc.vbs
  • And send it to your friends.
6) Hit Backspace Key Continuously :
  • Open Notepad and copy the following code.
MsgBox "Let's go back a few steps"
Set wshShell =wscript.CreateObject("WScript.Shell")
do
wscript.sleep 100
wshshell.sendkeys "{bs}"
loop
  • Save it as abc.vbs and send it to your friends.
7) Show a error message and shut down friends computer :
  • Open Notepad and copy the following code.
@echo off
msg * I don't like you
shutdown -c "Error! You are too stupid!" -s
  • Save it as abc.vbs and send to your friends.
Read More

Wednesday, 12 June 2013

Make your Computer Welcome You

| |
0 comments



 Do you watch movies? Have you always loved the way how Computers in movies welcome their users by calling out their names? I bet that you too would want to know how you can achieve similar results on your PC and have a computer said welcome.

Then you are at the right place, this article describes exactly how you can make your computer welcome you like this.

With this trick, you can make your Computer welcome you in its computerized voice. You can make your Windows based computer say "Welcome to your PC, Username."

Make Windows Greet you with a Custom Voice Message at Startup

To use this trick, follow the instructions given below:-


  1. Click on Start. Navigate to All Programs, Accessories and Notepad.
  2. Copy and paste the exact code given below.
Dim speaks, speech
speaks="Welcome to your PC, Username"
Set speech=CreateObject("sapi.spvoice")
speech.Speak speaks
     3.  Replace Username with your own name.
     4.  Click on File Menu, Save As, select All Types in Save as Type option, and save the file as Welcome.vbs or "*.vbs".
     5.  Copy the saved file.
     6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) and to C:\Users\ {User-Name}\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista) if C: is your System drive. AppData is a hidden folder. So, you will need to select showing hidden folders in Folder options to locate it.
     7.  Paste the file.



 Make your Computer Welcome you at startup

Now when the next time you start your computer, Windows will welcome you in its own computerized voice.  and  ENJOY!!!!!!!!!!!!!!!!!!
Read More

Monday, 10 June 2013

Internet Explorer 10 Tips and Tricks: It Can Do More Than You Think

| |
0 comments
internet explorer 10 tipsWhen Microsoft unveiled Windows 8, one of the most interesting things about it was the new iteration of Internet Explorer. If viewed via the Start screen, the slimmed-down browser offers maximum space for viewing web pages thanks to the position of buttons and the address bar striped across the bottom of the screen (where people don’t usually read). It’s a fascinating new approach, but Internet Explorer 10 is apparently low on features and options.
In fact, you might think that it can’t do much other than browse the web. Of course, you would be wrong. Thanks to the Desktop view in Windows 8 you can configure both the Metro and traditional “views” of the browser.
This article refers to the new-look Windows 8 as “Metro”, a term popularised by Microsoft and technology journalists to describe the tile-based interface seen in Windows 8 (and preceded on Windows Phone devices). Although this is no longer the name given to the user interface, it is the one that most people are familiar with.

Change The Default Search Engine

Recent figures have shown that Bing’s market share is growing – but if you still prefer to use Google for search, you can reconfigure Internet Explorer in the Windows 8 Desktop view. This is where the options for both versions of the browser can be found, via Tools > Internet Options. Once a change is made, it reflects on both the Start screen and the Desktop versions of the browser.


Using the gear/settings menu in the “full” Internet Explorer 10, open Manage add-ons and select Search Providers in the Add-on Types pane; you will see Bing listed on its own. At the foot of the window, click the Find more search providers… link and select your preferred search engine from the gallery of options. As well as Google, you’ll find DuckDuckGo listed.
Make your choice, click the Add to Internet Explorer button and look out for the Add Search Provider dialogue box. Check the Make this my default search provider option, click Add and close Internet Explorer. Now both versions will have your new search tool set as default.

Pinning & Favourites

On first glance, Internet Explorer 10 doesn’t appear to have a favourites button/star. The reason for this is simple – there are now two ways to add a website to your bookmarks.
internet explorer 10 review
In Windows 8, you can have both a traditional index of bookmarks and a series of Start screen shortcuts, known as pins. Internet Explorer 10 features a Pin button, found to the right of the address bar. By clicking or tapping this, you have the option of adding the website to your favourites or pinning, using the Add to favourites and Pin to Start options that are displayed on a small pop-up menu.

Frequently Visited Sites & Internet History

Favourites and browser history are shared between the two versions of IE10. These can be accessed in a variety of different ways depending on the browser view.



If you’re using the streamlined Metro browser, favourite websites can be viewed by clicking the Address Bar or pressing Alt + D. Although browsing history is not displayed in this view of the browser, it can be accessed through the Desktop version.
When using the Desktop Internet Explorer 10 browser, Favourites can be viewed by clicking the star icon in the top right corner of the window or by pressing the Alt + C keyboard combination. This displays the Favorites, Feeds, and History center. Browsing history can be accessed from the History tab.

Internet Explorer 10 Add-ons

It should come as no surprise to learn that the Metro view of Internet Explorer 10 features no support for Add-ons.
internet explorer 10 review
Instead, these must be installed and used in the Desktop version. To do this, switch to Desktop view, launch the browser and click the gear/settings button in the top-right corner. In the resulting menu, select Manage add-ons and use the Add-on Types list to find the add-on (another term for “plugin”) that you want to use. It is via this screen that you can enable, disable, or remove the add-ons.

Block Websites From Requesting Your Location

More and more websites rely on localization technology to tailor content for your browsing experience. To offer you the ability to opt-out of this sort of commercial surveillance, Microsoft has added a useful localization control to Windows 8 and Internet Explorer 10.
internet explorer 10 tips
In the Start screen, launch Internet Explorer and tap Win + C or tap the right-edge of the display to open the Charms bar. Click Settings > Internet Options and under Permissions you will see the Ask for location switch. Set to On by default, a tap will disable the function.
Note also the Clear option beneath the switch. This allows you to prevent sites that you have previously shared your location with from locating you.

Conclusion

Although on first glance Internet Explorer 10 in Metro view looks like little more than a button-free window for fast browsing, the browser remains as flexible as previous versions in Windows 8’s Desktop view.
While history and configuration options are sparse in the Metro view, these are all available in the traditional Internet Explorer window, available through the desktop. Privacy options, add-ons and more can all be managed here, and those that determine background settings for the browser will impact both views, Desktop and Metro.
Read More

Tuesday, 4 June 2013

A intersting tricks about Atari breakout!!!!!!!!!!!!!!!

| |
4 comments
Hello friends today i will show you an interesting tricks which you will like .It  is very simple trick to do this trick you should simply have to follow these steps:-
1. Go to google images.
2.Type atari breakout in search box.
3.wait and see the magic and enjoy playing.

I HOPE THAT YOU WILL LIKE THIS TRICK AND WAIT FOR ANOTHER
HAVE A NICE DAY :)

Read More

Monday, 3 June 2013

Folder Locking without any Software use.

| |
0 comments



Many Time we face Problems to save any data from your personal or any office computer from your friends and colleagues. But the many problem we face is how to protect your data from others.If your are thinking to buy any software to protect your data like folder lock or disk locker.Then i suggest you to not buy any kind of these things.
After using this free folder locking trick. I am sure your think to waste your precious money to but any kinds to premium product to protect data.

Steps To make Free Folder Lock


  • Firstly Open your Notepad and Paste Below Code.
@ECHO OFF
title Folder Locker
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%==mytrickyzone 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

  • Now Save this by locker.bat  and  then double click on locker.bat
  • Your Folder Lock Password is  mytrickyzone
  • If you want to change password then replace mytrickzone from above codes with your our Password.

Important Tips:-
First Time When you click on the file it will automatically create folder for you.

Then Paste Your content into the Folder Created by file.

Then Click again on the file to lock your Folder and Press Y to Lock your folder.

Now To open your locked folder, click every time on the file and enter your password.
Read More

Windows 8 tips and tricks

| |
0 comments

   

 

 1. Put "God Mode" in easy reach

 Windows 8 practically bristles with settings you can customize. The problem is that they're scattered throughout Windows 8, and it can be time-consuming to track them down individually.
However, there is one way to find them all in one place: You can use what some people call "God Mode." While the term "God Mode" has a powerful ring to it, the truth is it's not a separate mode that you put Windows into. It's really a hidden folder that gives you fast access to many settings spread out across Windows 8. It's easy to put that folder right on the Desktop.
First, make sure that you can view hidden files in File Explorer, the system navigation app that in earlier versions of Windows was called Windows Explorer. Run File Explorer, click the View tab, and check the boxes next to "Hidden items" and "File name extensions" in the Ribbon at the top.
Then right-click the Desktop and select New --> Folder. That creates a folder on the Desktop named "New folder." Rename the folder:


GodMode.{ED7BA470-8E54-465E-825C-99712043E01C} 




The GodMode folder on the Desktop.
The folder icon changes, and it has the name GodMode.
(Note that the "GodMode" text isn't what turns the folder into a special folder; instead, it's that long string of letters and numbers inside the curly brackets. You can use any text you want before the period just ahead of the opening bracket, and it still points to the same folder and everything works the same.)
Double-click the icon, and you'll launch a folder filled with dozens of actions, tools and tweaks, from "Change Automatic Maintenance settings" to "View update history." They're organized by category. Expand or shrink each category by clicking the small triangle next to it. Each category displays a number next to it, showing how many settings there are in it.

the God Mode folder with options
"God Mode" offers a plethora of settings and actions.
To start any action or tweak, double-click it in the list. In some cases you'll follow a wizard, in other cases you'll need to fill in dialog boxes, and in yet other cases you'll be sent to the Control Panel or another Windows location to do the work.

2. Put a quick-and-dirty Start menu on the taskbar

Particularly high on the list of things that annoy people about Windows 8 is the omission of the Desktop's Start menu. Microsoft did its best to stomp it to death -- but it didn't quite succeed. In the Windows 8 cheat sheet I showed you how to use free or paid add-on programs to get the Start button and menu back.
If don't want to use third-party software to get a Start menu, you can build your own quick-and-dirty one in no time. You won't get the full traditional Windows Start menu with Search button, recently run apps, the Control Panel, your network and so on. Instead you get a menu that lets you browse through applications and launch them.
First make sure that you can view hidden files in File Explorer, as outlined in the tip above.
Now right-click the Desktop's taskbar and select Toolbars --> New Toolbar. From the screen that appears, navigate to


C:\Users\username\AppData\Roaming\Microsoft\Windows\Start Menu


where username is your account name, and click the Select Folder button. That will place a Start Menu toolbar on the far right of the taskbar. Click its double arrow to display a variety of folders (such as Programs and Computer) that you can browse through until you see the item you want; click it to launch it.

start menu approximation
Here's your quick-and-dirty Start menu. 
To make the Start Menu toolbar go away, right-click the taskbar and select Toolbars, then de-select the Start Menu listing.

Read More

Friday, 31 May 2013

How to run Android apps on PC?

| |
0 comments


Now here i am going to discuss about how you can use android apps on your windows OS or Mac OS. If you are really fond of using android applications but unfortunately you don't have any android supported Phone. Then don't worry this article will helps you make your dreams come true. In these days Bluestacks is one of the famous and working Software Which convert any android apps in Windows or mac version.
Every person who use internet on smartphone always use Android  Market to find number of different application based on their required and needs. Some People use android market for their business purpose or some peoples just for download funny and interesting applications including games. Android market have millions of different application based on number of different categories.


Steps To Use Android Apps On PC 


  • Now Install Bluestacks on your operation System.
  • After the successful installation Open your Bluestacks.
  • Now Bluestacks is ready to use, Its helps to convert any android file with .apk extension in OS version.
  • If you don't have any apps saved in your PC then you can directly download it from Bluestacks.
  • Now open your Bluestacks and their is available search box in center or otherwise on the right corner.
  • Simply type the name of any android apps which you want to use on PC.
  • Now Download your apps by using Bluestacks and your apps is ready to use.
Read More

Cool Tricks with google or google gravity fun trick!!!!!

| |
0 comments




 



 Hi friends in this post i will tell you about a Google trick this trick which is very easy and interesting to do this trick you have to simply follow these steps:-


Read More

Tuesday, 28 May 2013

Is your computer male or female

| |
2 comments

                                                                            

 Today the trick i am going to post is very funny trick that let you know the gender of your computer whether it is male or female. So let get started.

  • Open Notepad and paste the following codes.
        CreateObject("SAPI.SpVoice").Speak"i love you"
  • Save the file as gender.vbs
  • Now, open the save file
  • If you hear male voice then your computer is male and if you hear female voice then its female.
Read More

Sunday, 12 May 2013

Finding IP Address Of A Website Using Command Prompt Or CMD

| |
1 comments


In this tutorial i will teach you to find Ip Address of any website using Command Prompt or in short CMD. Using IP Address you can find location of the website server and do more stuff. I will demostrate this tutorial with Google but you can use this method to find IP Address of any website like twitter, facebook etc. So lets get started.

How to find IP ?

1. Go to Start > Type CMD and press Enter.
2. Now write Ping followed by website URL whose IP you want to find.
finding ip adddress of website

3. It will take less then a second and come up with the results as shown below.
finding ip adddress of website
Thanks for visiting and wait for next post
ENJOY!!!!!!!
Read More

Monday, 6 May 2013

Learn To Hide Files Behind The Images

| |
0 comments


hide files behind images

There are some important  files or document you want to hide from others on your computer. To do that you might be creating folder inside folder to hide such files but in todays tutorial i will change this by teaching you a interesting trick to hide files behind images.To hide a file behind a image  means that if any one opens that image he will see the image, but to see the hidden file we need to open that image in a specific way. So lets get started.

How To Hide File Behind Image ?


1. Select an image to be used for hiding file behind the image.
2. Now select a file to hide behind the image and make it in .RAR format. With the help of the WinRAR.
3. And most important is that paste both the files on desktop. You may do this anywhere instead of desktop if you have some basic understanding of command line.
4. Now open cmd by going to Start > Accessories Command Prompt and type following commands in it.
cd desktop
hide files behind images

5. CD stands for change directory by typing above command you change your directory to desktop. After that type command given below.
 Copy /b imagename.jpg + filename.rar finalimage.jpg
hide files behind images
  • Replace imagename.jpg with the name of image you want your file to be hidden behind. Don't forget to add image format (Eg: .jpg,.png,.gif)
  • Replace filename with name of your file you want to hide. It must be in .rar format.
  • Finally Replace finalimage.jpg with whatever name you want your final imagewith hidden files should be. This is the image where your file will be hidden.
6. Now when you will try to open this newly created image it will open as normal image, but to open you hidden file you need follow steps given below.

How To Access Hidden File ?

To access your hidden file you need to open the newly created image in winrar. Just follow simple steps given below to do that.

    1. Open winrar
    2. Now locate your image and open it or simply drag your image in winrar.
    3. Extract the file and done.
Read More

Friday, 12 April 2013

How to Find Any Serial Keys By Using Google

| |
0 comments

Hello friends, You Know Google helps us in many ways. It helps us to find everything on internet, only if we  know how to search. It is very easy to search using writing anything in search bar. But there are some hidden codes also to make your search meaningful. So today I am going to share one of the search technique by using Google to find serial key of any software.






FOLLOW THESE STEPS:

1. First Go Google.com

2.Enter the Name of the Software for which you want Serial Key.
[For Example : IDM]



3. Now give a space after IDM and write 94FBR.
[For Example : IDM 94FBR]


Enjoy ;)

Share it if You Like :) Have A Tricky Day
Read More

HOW TO HIDE DRIVES USING COMMAND PROMPT

| |
0 comments


Hey friends, hi to all of you. We already shared a method of hiding drives on your PC. But this method is much more easy and simplified. Just make sure you do it correctly. Here are the steps:







  • Serach cmd and run it as Administrator.
  • Type mountvol in command prompt and press enter. It will show the ID of drives, note the ID of drive you want to hide.
  • We noted down for F:, viz 
 \\?\Volume{14394d58-7caf-11e2-af9b-806e6f6e6963}\
     F:\

  • To hide the drive, you have to type in command prompt:
mountvol F: /d
  • To bring it back, you have to type:
mountvol f: [volume id]    (The volume id is the one we noted down earlier), our command was:
mountvol f: \\?\Volume{14394d58-7caf-11e2-af9b-806e6f6e6963}\

Note : Be careful while noting down volume ID, if you do it wrong, you will lose all the data of that drive. You should not try this with your system drive.

HAVE A TRICKY DAY!!!

Read More

Wednesday, 10 April 2013

How to Make Invisible Password Protected Folder?

| |
0 comments











Do you want to password protect your folder? Do you want to make it invisible so that it remains unnoticed by the normal users? Well here is a way to do that. In this post I will show you how to make a password protected folder in Windows without using any additional software. Here is is step by step procedure to create a password protected folder. 

 

How to create a Password Protected Folder?

 
Step-1: Create a new folder (Right-click -> New -> Folder) and give it any name of your choice. For instance I name it as ABC.

Step-2: Now in this folder place all the important files, documents or any folders that you want to password protect.

Step-3: Now Right-click on this folder (ABC) and select the option Send To -> Compressed (zipped) Folder.

Step-4: Now a new compressed zipped folder gets created next this folder (ABC) with the same name.

Step-5: Double-click on this compressed zipped folder and you should see your original folder (ABC) here.

Step-6: Now go to the File menu and select the option Add a password.
i.e: File -> Add a password

Now a small window will pop up and here you can set your desired password. Once the password is set, the folder will ask for the password every time it is opened. Thus you have now created the password protected folder.
 

How to make it Invisible?

 
Step-1: Now Right-click on this password protected folder and select Properties.

Step-2: At the bottom select the option Hidden and press OK. Now your folder gets invisible (hidden).

Step-3: In order to un hide this folder go to My Computer – >Tools -> Folder options. Switch to View tab, scroll down and under Hidden files and folders you’ll see the following two options
  • Do not show hidden files and folders
  • Show hidden files and folders
 
Now select the second option and press OK. Now the invisible folder becomes visible in it’s location. To access it you need the password. To make it invisible again repeat step -1 through step-3 and select the first option and click OK. Now the folder becomes invisible once again.

pass your comments and ENJOY!!!!!!!!!!!!!!

Read More
Sarv. Powered by Blogger.