無法顯式副檔名和隱藏檔案的解決辦法

2021-09-22 11:05:45 字數 1024 閱讀 7259

今天不知從那個u盤,中了乙個蠕蟲病毒,導致隱藏資料夾和副檔名均不可見,修改資料夾設定都不好使。現在記錄一下解決過程:

上面是瑞星給出的方法,可以顯示出隱藏資料夾了。

掃瞄病毒,發現:

virusscan enterprise:

檔案 c:\windows\system32\isass.exe 已感染病毒 generic.dx 特洛伊。檔案已成功刪除。

nt authority\system svchost.exe e:\autorun.inf generic component (特洛伊)

nt authority\system svchost.exe c:\autorun.inf generic component (特洛伊)

pisc-0001\sun explorer.exe c:\windows\mdm.exe backdoor-dkr (特洛伊)

macfee雖然查殺了病毒,可仍然沒能修復系統。

將下面的文字儲存為show_ext.reg,執行後,系統恢復。

windows registry editor version 5.00

[hkey_local_machine\software\microsoft\windows\currentversion\explorer\advanced\folder\hidefileext]

"type"="checkbox"

"text"="@shell32.dll,-30503"

"hkeyroot"=dword:80000001

"regpath"="software\\microsoft\\windows\\currentversion\\explorer\\advanced"

"valuename"="hidefileext"

"checkedvalue"=dword:00000001

"uncheckedvalue"=dword:00000000

"defaultvalue"=dword:00000001

"helpid"="shell.hlp#51101"

不顯示隱藏檔案和副檔名

今天寫了個小指令碼,可以一鍵設定隱藏檔案和副檔名是否顯示。指令碼如下 echo off rem 本批處理用於不顯示隱藏檔案和副檔名 rem hiden 2表示不顯示隱藏檔案,hiden 1表示顯示。rem hidefileext 1表示隱藏副檔名,hidefileext 0表示顯示副檔名 rem r...

怎麼讀寫檔案和獲取檔案的副檔名

protected void write txt string filename,string content catch sw.close sw.dispose encoding 是寫檔案時的編碼 本例子使用的是streamwriter進行檔案的寫入 函式名稱 writefile 功能說明 當檔案...

獲取檔案的型別和副檔名(Java)

實驗中遇到要獲取檔案的型別或者副檔名的情況,了解了下。具體實現 string filename file.getname 獲取檔案型別filetype 不帶.string filetype filename.substring filename.indexof 1,filename.length 獲...