Ghost four parameters use knowledge

  

I believe that Windows crashes, system crashes have seen a lot. The trick to quickly re-recover the system is to use the Ghost program, but every time you use Ghost you have to choose, it's too much trouble. In fact, Ghsot has a lot of parameters, clever use of these parameters, and write them into the MS-DOS batch software, can bring us a great convenience for the backup and recovery system. 1. Automatic backup
The code is as follows: ghost -sure -clone, mode=pdump, src=1:1, dst=system.gho

Back up the first partition information of the first hard disk to the system under the current folder. In .gho, you can use it to recover in the future. Volume backup
Code is as follows: ghost -sure -clone, mode=pdump, src=1:1, dst=system.gho -span -split=630

Its role is to put the first hard disk first The partition information is backed up to system.gho in the current folder. If the generated system.gho is larger than 630 megabytes, the generated GHO file will be split. This parameter is used to back up large partitions and burn them to 650 megabytes of CD. -R is very useful. 3. The automatic recovery
code is as follows: ghost -sure -rb -clone,mode=pload,src=system.gho:1,dst=1:1

Its function is to put the system.gho file under the current folder. Revert to the first partition of the first hard disk, and do not need to confirm, automatically restart the computer after the operation is completed. With password backup
The code is as follows: ghost -sure -pwd, 666888 -clone, mode=pdump, src=1:1, dst=system.gho

The purpose of this statement is to put the first partition of the first hard disk The information is backed up to system.gho in the current folder, and 666888 is used as the password for generating the post GHO file for encryption. After using Ghost to restore the system.gho file, or use Ghost Explorer to release the files, you must enter the password, otherwise you will not be able to restore or release the file, thus playing a confidential role. If you enter ghost -sure -pwd -clone, mode=pdump, src=1:1, dst=system.gho, ie -pwd without a password, Ghost will ask the user to encrypt the GHO password before making the GHO file. Must be remembered. After encrypting the GHO file, others will not be able to view or restore our files at will.

Copyright © Windows knowledge All Rights Reserved