Šiandieninė klausimų ir atsakymų sesija pateikiama su "SuperUser" - "Stack Exchange", bendruomenės valdoma Q & A grupių asociacija.
Klausimas
"SuperUser" skaitytuvas "Rogue" nori žinoti, kaip rodyti ar slėpti "Windows" slaptus failus per komandinę eilutę:
I often need to toggle between showing and hiding the hidden files on my Windows system. I have been doing it the usual way:
- Click Organize in an Explorer Window
- Select Folder and Search Options
- Switch to the View Tab
- Toggle between Show/Hide Hidden Files
This method is lengthy and I am tired of it. I would like the ability to toggle between showing and hiding them using the Command Line (CMD). Is there a way to set this up for regular files as well as system files?
Kaip rodyti ar paslėpti "Windows" paslėptus failus perjungiamą komandų eilutę?
Atsakymas
"SuperUser" autorius Stevenas atsakė mums:
Hidden Files, Folders, or Drives
Add (or overwrite /f) the value Hidden to the registry key:
HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced
Show
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced” /v Hidden /t REG_DWORD /d 1 /f
Do not Show
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced” /v Hidden /t REG_DWORD /d 2 /f
ToggleHiddenFiles.bat
Hide Protected Operating System Files (Recommended)
Checked
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced” /v ShowSuperHidden /t REG_DWORD /d 0 /f
Unchecked
reg add “HKCUSoftwareMicrosoftWindowsCurrentVersionExplorerAdvanced” /v ShowSuperHidden /t REG_DWORD /d 1 /f
ToggleSystemFiles.bat
Notes
The changes take place immediately. The program reg requires admin privileges, so the batch files must be run as administrator.
Ar turite ką nors įtraukti į paaiškinimą? Garsas išjungtas komentaruose. Norite skaityti daugiau atsakymų iš kitų "Tech-savvy Stack Exchange" vartotojų? Patikrinkite visą diskusijų temą čia.