Get rid of the misunderstanding and let the computer speed up the computer optimization is not asking for people (2)

  

Software application can be anti-virus from the simple and excellent

anti-virus software, but anti-virus software is mostly embedded, anti-virus every time you open a file Software must query its features, so if there is no peripheral insertion and Internet access, you don't need to install anti-virus software. Of course, this kind of situation is rare. In short, try to install anti-virus software if you are sure.

Unless there are special requirements for the performance of some devices, such as the quality of the graphics card, the control options of the sound card, etc., try to choose the official driver, try not to install third-party Chinese, optimized, modified drivers, because A professional team, the modified driver is not necessarily the most suitable hardware, and this "professional" team generally does not eat this meal?

We mentioned before, the system disk is a partition that reads very frequently, but the computer is used, and some application software has to be installed. A large number of software is installed on the C drive by default, resulting in a file directory. Too often, serious can lead to file loss (find failure is equal to loss). For computers that cannot rework the system frequently, such as financial software and computers with more office software, redo the system to restore the software and database. We recommend that after completing a system, create a folder in the non-system area, specifically installed. These applications then back up this system. Once the crash occurs or the speed is too slow, the efficiency is very poor, you can restore the system, as long as the software directory is unchanged, it can be put into use immediately after the recovery, because the software is installed before the backup However, it does not occupy the space of the system disk.

It is best to use the same application file to upgrade, or to uninstall the old file first, and then install the new program in a new way, try to avoid the same directory, so as not to cause the same path to write without coverage, or The original configuration file does not apply in the new program.

Edit Comment: Reasonable choice to arrange the installation path, can reduce the unnecessary head reading, and improve the running speed in disguise. Choosing the official, authoritative software does not bring much improvement to the speed of the machine, but at least to ensure stability.

The best combination of soft and hard

Internal and external application, so the effect is the best, understand and understand some of the principles of the computer, after the mechanism, naturally there are optimization programs, such as If the memory space is too large, you can use a part of the memory space to make a hard disk, and then set the temporary file to be placed in the path. This can not only make good use of the memory space, but also commonly used things, cache read speed. Fast (memory speed is N times faster than hard disk). And this kind of cache junk file will be cleared naturally after shutdown.

Of course, the used software will leave traces (cache) and configuration and temporary files. If the time is long, it will affect the system speed. Then we can edit a software to remove garbage, or by means of the first Good software for the three parties, such as Master Lu, Super Rabbit, etc. Of course, the self-editing software is the cleanest, no plug-ins.

The method is as follows: Create a text document and name it suffix .bat, which is a batch file, executable. Copy the following code in the file.

@echo off

echo Clearing system junk files, please wait.... .

del /f /s /q %systemdrive%*.tmp

del /f /s /q %systemdrive%*._mp

del /f /s /q %systemdrive%*.log

del /f /s /q %systemdrive%*.gid

del /f /s /q %systemdrive%*.chk

del /f /s /q %systemdrive%*.old

del /f /s /q %systemdrive%recycled*.*

del /f /s /q %windir %*.bak

del /f /s /q %windir%prefetch*.*

rd /s /q %windir%temp & md %windir%temp

del /f /q %userprofile%cookies*.*

del /f /q %userprofile%recent*.*

del /f /s /q "%userprofile%Local SettingsTemporary Internet Files*.*"

del /f /s /q "%userprofile%Local SettingsTemp*.*"

del /f /s /q "%userprofile%recent*. *"

echo Clear system junk files completed!

echo. & pause

These codes are to delete files that match the suffix of these files in the relative path. Of course, these files are temporary files, log files, and cache files, which will not affect the system. Clean up the files on time, do a good job of defragmenting the disk, and let the machine "mature forever."

Copyright © Windows knowledge All Rights Reserved