Friday, May 20, 2011

College】 【weak batch files to achieve complete hiding.

<br> <BR> completely confidential documents hidden skills: <BR> Open the Registry Editor, expand one of the Ben of the "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced \ Folder \ Hidden \ SHOWALL", .In the "ShowAll" button to the right box to modify the "CheckedValue" key to "0", can change after the "Tools → Folder Options → View → Show hidden files and folders" option fails, do not want to completely hide .others see the "hidden" file; to enable "Show hidden files and folders" option to re-entry into force of the above "CheckedValue" key to change back to "1". .<BR> <BR> Here to note that the virus would have been a valid DWORD value CheckedValue removed, a new string value of an invalid CheckedValue, and the key value to 0! .This to 1 will be no effect. .(Some variants of the virus directly to the CheckedValue to delete, just the same, and following, their re-build a on it) <BR> <BR> method: remove this CheckedValue key, right-click New - Dword .value - name CheckedValue, and then modify its key value is 1, so that you can choose "show all hidden files" and "show system files." .<BR> <BR> Batch implementation code: <BR> <BR> --------------------------------- .------------------------------------------------- < .BR> <BR> regadd "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced \ Folder \ Hidden \ SHOWALL" / vCheckedValue/tREG_DWORD/d0/f <BR> pause <BR> <BR> ----- .-------------------------------------------------- .--------------------------- <BR> <BR> excuse: regadd "registry path" / v keys / t key .Type / d specific key / f last / f is the meaning of <BR> <BR> enforcement as 0,1 for the REG_DWORD values, so / t followed by a REG_DWORD <BR> <BR> Save the above code .is completely hidden files. .<BR> <BR> It! .<BR> <BR> Hidden files so you would not be seen by others, the recovery method is very simple. .<BR> <BR> -------------------------------------------- .----------------------------- <BR> <BR> regadd "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced .\ Folder \ Hidden \ SHOWALL "/ vCheckedValue/tREG_DWORD/d1/f <BR> pause <BR> <BR> ------------------------- .------------------------------------------------ <BR .> <BR> That's it. .<BR> <BR> Specific times to write about again. .<BR> <BR> To be consolidated under the above code. .As follows. .. .. .. .<BR> <BR> -------------------------------------------- .-------------------------------------- <BR> <BR> @ echooff <BR> @ .modeconcols = 60lines = 20 <BR> colorb <BR> echo ------------------------------------- .------------------- <BR> echo. & echo. <BR> echoby China Technology Alliance <BR> echo. & echo. <BR> echo. < .BR> SET / Pa = Please enter the Y (completely hidden files) or N (show hidden files): <BR> echo. <BR> if / I "% a %"==" Y" gotoyin <BR> if / I ."% a %"==" N" gotoxian <BR> <BR>: yin <BR> <BR> regadd "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced \ Folder \ Hidden \ SHOWALL" <BR> .<BR> / vCheckedValue/tREG_DWORD/d0/f <BR> goto: exit <BR> <BR>: xian <BR> <BR> regadd "HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Windows \ CurrentVersion \ Explorer \ Advanced \ Folder \ Hidden .\ SHOWALL "<BR> <BR> / vCheckedValue/tREG_DWORD/d1/f <BR> goto: exit <BR> <BR>: exit <BR> echo. & echo. <BR> echo the success achieved your goal .<BR> echo. & echo. <BR> pause <BR> <BR> ------------------------------- .-------------------------------------------------- .- <BR> <BR> xxx.bat Copy the code to save test results to know under the <BR> <BR> <BR> <BR>.

No comments:

Post a Comment