Category: faster windows 7
-
How to Open a Elevated Command Prompt in Windows 7
InformationThis tutorial will show you how to open a elevated command prompt with administrator rights (Run as administrator) instead of the default command prompt without administrator rights in Windows 7. This tutorial is not applicable to windows XPEXAMPLE:Elevated Command PromptNOTE:Notice how the elevated command prompt opens to C:\Windows\System32 and not C:\Users\(user name) as the default command prompt without administrator rights.Here’s How:1. Use a Elevated Command Prompt shortcut.OR2. Open the Start Menu.3. Click on All Programs and Accessories, then right click on Command Prompt and click on Run as administrator. (See screen shot below)OR4. Open the Start Menu.5. In the Start Menu search box area, type cmd and press CTRL+SHIFT+ENTER.OR6. Open the Start Menu.7. In the Start Menu search box area type cmd, then right click on cmd (at top), and click on Run as administrator. (See screen shot below)TipIf you are in a administrator account and get a log in prompt after doing any of the above steps, then click on the Cancel button and repeat the above step again. This will only do this for the very first time you try to open a elevated command prompt in Windows 7.If you are in a standard account, then you will need to type in the administrator’s password to elevate the command prompt. -
How to Create a New Partition or Volume in Windows 7
InformationThis tutorial will show you how to create a new primary partition using Disk Management or Diskpart in Windows 7 from a empty unallocated partition or volume.NoteA primary partition is a type of partition created on a hard drive that can have a operating system installed on it. A primary partition functions as though it were a physically separate hard drive. By default on a MBR disk, you can create a maximum of 3 Primary partitions and 1 Extended partition with up to 128 logical volumes in the extended partition on a single hard disk.*You must be logged on in an administrator account to be able to do this tutorial.***Warning***If you disable the Disk Defragmenter service, then you will get the error below when you try to do anything in Disk Management. If you get this error, then make sure that the Disk Defragmenter service is set to only Manual.OPTION ONEUsing Disk Management1. You will first need to shrink a partition or volume from the free space on a disk to create unallocated space on that disk to use to create the new partition or volume with on the same disk.2. Open the Control Panel (All Items view), and click on the Administrative Tools icon. then close the Control Panel window.3. Click on Computer Management in Administrative Tools, then close the Administrative Tools window.4. In the left pane under Storage, click on Disk Management. (See screenshot below)5. In the middle pane, right click on the empty unallocated partition or volume and click on New Simple Volume. (See screenshot below)6. Click on the Next button. (See screenshot below)7. Type in how many MB (1 GB = 1024 MB) you want to use from the unallocated partition to create the new partition with, then click on the Next button. (See screenshot below)NOTE:If you want to use all of the unallocated partition to create the new partition with, then type all of the maximum disk space shown for the unallocated partition. If you do not use all of the maximum disk space, then you can use the left over space from the unallocted partition to create another new partition with.8. Select an available drive letter that you want to be assigned to the new partition in Computer, then click on the Next button. (See screenshot below)9. Type in a volume label name that you want for the new partition, check the Perform a quick format box, and click on the Next button. (See screenshot below)10. Click on the Finish button. (See screenshot below)11. The new primary partition or volume has now been created with the assigned unallocted partition space (step 7). (See screenshot below)12. Close the Computer Management window. (See screenshot above)Note:
This method can also be used in Windows Xp and Windows VistaOPTION TWO
Using Diskpart in a Elevated Command Prompt1. You will first need to shrink a partition or volume to create a unallocated partition to use to create the new partition or volume with.2. Open a elevated command prompt, or a command prompt at boot.3. In the elevated command prompt, type diskpart and press Enter. (See screenshot below)4. In the elevated command prompt, type list disk and press Enter. (See screenshot below)NOTE:This is to help you ID the disk number that has Free unallocated space that you want to create a new partition with. For example, Disk 1 with 80 GB of free space.5. In the elevated command prompt, type select disk # and press Enter. (See screenshot below)NOTE:You would substitute # for the disk number listed that you want to create a new partition with the free unallocated space there. For example, I want to create a new partition with the 80 GB of free space, so I would type select disk 2 and press Enter.6. In the elevated command prompt, type create partition primary and press Enter. (See screenshot below)NOTE:This will create a new blank RAW partition with selected disk (step 5) that contains the unallocated partition free space.7. In the elevated command prompt, type list volume and press Enter. (See screenshot below)NOTE:Look for the volume number that has the same Size as from the Free space in step 4. For example, Volume 3.8. To Format the Partition or Disk as a NTFS File SystemNOTE:This would be good for using with Windows 7 or Vista for example.A) In the elevated command prompt, type format fs=ntfs quick and press Enter. (See screenshot below)NOTE:Having quick added at the end of the command will do a quick format instead of a full format on the new blank RAW partition (step 6) to make it a new partition.B) Go to step 10.9. To Format the Partition or Disk as a FAT32 File SystemNOTE:This would be good for using with a USB key drive for example.A) In the elevated command prompt, type format fs=fat32 quick and press Enter. (See screenshot below)NOTE:Having quick added at the end of the command will do a quick format instead of a full format on the new blank RAW partition (step 6) to make it a new partition.10. When it is finished formatting, type exit in the elevated command prompt and press Enter. (See screenshot below)11. Close the elevated command prompt.12. The new primary partition has now been created. You can now see the new partition in Computer with a drive letter.Note:
This method can also be used in Windows Xp and Windows Vista -
How to Lock a Folder with a Password without Any Software in Windows 7
This Article will help you in locking any folder without any third party software which will also prevent any virus infection due to third party software’s. This can also be used on Windows XP, windows Vista, Windows 71. Make a new folder ( name it as you like ):2. Inside this folder make a ( TXT ) file & copy inside it this (the entire thing):3. Copy and paste this code inside the New Text Document:Code:Quote:Quote: cls@ECHO OFFtitle Folder Privateif EXIST “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” goto UNLOCKif NOT EXIST Private goto MDLOCKER:CONFIRMecho Are you sure you want to lock the folder(Y/N)set/p “cho=>”if %cho%==Y goto LOCKif %cho%==y goto LOCKif %cho%==n goto ENDif %cho%==N goto ENDecho Invalid choice.goto CONFIRM:LOCKren Private “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”attrib +h +s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”echo Folder lockedgoto End:UNLOCKecho Enter password to unlock folderset/p “pass=>”if NOT %pass%== password here goto FAILattrib -h -s “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}”ren “Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}” Privateecho Folder Unlocked successfullygoto End:FAILecho Invalid passwordgoto end:MDLOCKERmd Privateecho Private created successfullygoto End:End4. After you copy the Command code, go to the bold words (or try using shortcut- CTRL+F and type password to locate the line) you will find this word : password here (Change it with any password u like.) is :eg: if NOT %pass%== example1234 goto FAIL//so your password here becomes example1234 .//5. After that go to Save as… & name this file as “locker.bat “. Be sure to change the “Save as type” from “text” to “All Files” :6. Now back to the folder & u will find a ( LOCKER ) commanding (locker.bat). Double Click on it & you will find a new folder (Private ):7. Now copy what you want in this “private Folder” & after that come out of the folder, and Double click on locker again. It will open and ask if you want to lock your folder? Y/N ?8. Type Y. your private folder will disappear.9. If you want to UNLOCK your folder ,go to (locker) & type your pass and you will see your private folder.10. Enter the password and hit “Enter”.NoteIt not only hides the folder, but hide all files… and try opening it without entering password, it’l take you to the control panel…Also, if you want to store files on your Pen-Drive, you can use this script. No Software Required.Incase you delete your Locker file (just in case), then you can make a new one (but with the same password) and open it from that.Alternatively, you can keep this locker file somewhere else, and when you want to open your folder, only then bring it back to that place.This can also be used on Windows XP, windows Vista and Windows 7
-
How to Create a Homegroup in Windows 7
HomeGroup makes your job easy to share pictures, music, documents, videos, and printers with other people on your home network. This article will show you how to create a homegroup in Windows 7.NoteComputers must be running Windows 7 to participate in a homegroup. HomeGroup is available in all editions of Windows 7. In the Windows 7 Starter and Windows 7 Home Basic editions, you can join a homegroup, but you can’t create one.If your computer belongs to a domain network, you can join a homegroup but you can’t create one. You can access files and resources on other homegroup computers, but you can’t share your own files and resources with the homegroup.All computers that will be on the homegroup must have (be on) the same workgroup or domain name.You can create or join a Homegroup with a virtual machine in Windows Virtual PC.WarningYou will need to have these Services set as below. They are by default.DNS Client – Started and AutomaticHomeGroup Listener – Started and ManualHomeGroup Provider – Started and ManualSSDP Discovery – Started and ManualUPnP Device Host – Started and ManualFunction Discovery Provider Host – Started and ManualFunction Discovery Resource Publication – Started and AutomaticNetwork List Service – Started and ManualServer – Started and AutomaticHere’s How:NOTE:The homegroup created here as an example was done between a laptop (joined homegroup) with a wireless connection through a wireless router and a desktop (created homegroup in) connected to the same router’s ethernet port via CAT6 cable.1. Make sure that all computers that will be on the home network have the date and time in sync.2. Make sure that the computer is set to have a home network location type. You will not be able to create a homegroup from any other network locations.3. If you are using a wireless network through a wireless router, then check to make sure that WLAN Partition is disabled in the router’s wireless settings. When it is enabled, it prevents associated wireless clients from communicating with each other.4. Open the Control Panel (all items view), and click on the Network and Sharing Center icon.A) Click on the Change adapter settings link.B) Right click on your network connection adapter, and click on Properties. If prompted by UAC, then click on Yes. Make sure that the items below are checked, and click on OK. (see screenshot below)File and Printer Sharing for Microsoft NetworksInternet Protocol Version 6 (TCP/IPv6)Internet Protocol Version 4 (TCP/IPv4)C) Click on the back arrow button (left arrow) in Network Connections to return to the Network and Sharing Center. (See screenshot above)D) Click on the Change advanced sharing settings link.E) Make sure that the Home or Work (current profile) settings are set as they are below for the ones pointed out with the red arrows, then click on save changes. If prompted by UAC, then click on Yes.5. In the Network and Sharing Center, click on the Choose homegroup and sharing options link.6. Click on the Create a homegroup button. (see screenshot below)NOTE:If a homegroup already exists (already created) on your home network, then Windows 7 will ask if you would like to Join Now instead of creating a new one.7. Select (check) what libraries and printers that you want to share from this computer with any other computer that joins this homegroup, then click on Next. (see screenshot below)8. Write down and/or print this password down. You will need to have and use this password to join a computer to this homegroup. Click on Finish. (See screenshot below)NOTE: The password is case sensitive, so it will need to be typed exactly as it appears here when used to join a computer to the homegroup.9. Close the HomeGroup window. (see screenshot below)10. You will now need to add other computers to the homegroup by joining them so that you can access shared libraries and printers between them. -
Customize Windows 7 Search Settings
Customizing What and How to Search
You can find all the Search settings for Windows Search on the “Folder
and Search Options” window in Windows Explorer. Follow these steps to cus-
tomize where Windows Search looks for files/folders:
1. Choose Start | Documents. In the upper-left area of the window, click the down-arrow next to Organize and then choose “Folder and Search Options”. Select the “Search” tab as shown in the image below:
2. On the Search tab, there are three separate sections:
What to search:
– Here you can specify whether you would like the search software to use the indexing service’s data or all data, on-the-fly. By default, Windows Search will search both filenames and contents of indexed files but just filenames of files not in the index. If you don’t want to use the indexer at all, you can work with other options.
How to search:
There are 4 different settings:
1. The ability to search subfolders,
2. Report results with partial matches.
3. Turn on natural language searches, and
4. Disable searching from the index.
You should mainly focus on the sub-folder search and natural language search options. These features are usually the two that can be used as tweaks, the most. First, to speed up searches, un-check “Include sub-folders in search results when searching in file folders” and then also check “Use natural language search” option so that easier searches can be performed. For example, if you want to find e-mails from a person, you normally have to type Kind:email from:person in the Search box. When you turn on natural language search, however, you can type email from person instead and get the same results.
When searching non-indexed locations
This specifies what to do with compressed files and system folders that are not indexed or when index search is turned off. I leave these blank to speed up searches,
but I strongly suggest that you do not turn on the compressed file option;
it will cause your searches to take forever.
When you are finished tweaking the search options, you would need to press OK to save your changes. A restart may be required. -
How do I configure System Restore in Windows 7?
System Restore helps you restore your computer’s system files to an point back in time. It helps you undo system changes to your computer without affecting your personal data. It is worthy to note that System restore affects Windows system files, programs, registry values, scripts, batch files, and other types of executables. System Restore in Windows 7 and Vista works a bit differently than it does in Windows XP in that it uses the Shadow Copy feature in which it creates a snapshot of your drive at a certain point of time.
The System Restore in Windows 7 needs a minimum of 300 MB of the drive space of the hard drive, by a general rule. In Windows XP however, the minimum size required is 200 MB. Depending on the size of the partition it is usually a good idea to either increase or decrease the allocated space for system restore. Here is how this is done:To access System Restore Configuration, Click on Start and then right click on Computer and then select Properties from the context menu.
Then click on System Protection to display the System Restore configuration menu.
From here, you can control the way System Restore will work or behave in Windows 7. It will furthermore display the drives that are currently configured to use System Restore and those that are not.
You can select a drive or partition and click on the Configure button to get detailed configuration information about it. This includes the percentage that is currently allocated for System Restore in MBs along with the current usage.
It is possible to change the percentage that Windows can allocate for system protection to free up disk space for other data, simply by dragging the slider above. By default it is 4% in Windows 7. It is also possible to delete previous system restore points and to change the restore settings.
By default System Restore can save system settings and previous versions of files. You can however choose to restore only the previous versions of files as shown in the figure above.
You can also selectively turn System Restore off for a specific drive or partition. This was also possible in Windows XP
















































