遇到自己的電腦要掛載ISO,但發現按右鍵無[掛載]及[無法檔案總管]
系統:Windows 11
無法指定檔案總管
判斷錯誤訊息(OpenWith.exe 無法關聯),代表系統的
.iso 檔案類型機碼可能已經損毀或被鎖死,導致檔案總管無法正常接管。建立一個txt,將如下save並將副檔名改成.reg-->執行即可
=========================================================
Windows Registry Editor Version 5.00
; 1. 重新定義 .iso 檔案的預設處理類別
[HKEY_CLASSES_ROOT\.iso]
@="Windows.IsoFile"
"Content Type"="application/x-iso-image"
; 2. 建立檔案總管掛載選單的核心指令
[HKEY_CLASSES_ROOT\Windows.IsoFile\shell\mount]
"CommandStateHandler"="{11f15859-a5c2-4d9b-b6c8-4718dc0e6080}"
"CommandStateSync"=""
"HasLUAShield"=""
"MultiSelectModel"="Document"
[HKEY_CLASSES_ROOT\Windows.IsoFile\shell\mount\command]
@=hex(2):25,00,53,00,79,00,73,00,74,00,65,00,6d,00,52,00,6f,00,6f,00,74,00,25,\
00,5c,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,00,72,00,2e,00,65,00,78,00,\
65,00,00,00
; 3. 確保右鍵選單出現「掛載」
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\FileExts\.iso\UserChoice]
"ProgId"="Windows.IsoFile"
=========================================================