2026年3月30日 星期一

ISO檔無法掛載

遇到自己的電腦要掛載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"

=========================================================

2026年3月26日 星期四

LQ-2180C列印時,左上角出現284.4 @EJL

於WIN11 安裝EPSON LQ-2180C列印時,左上角會出現,如下圖



參考網路大神及原廠說明:裝置設定-->封包模式-->關閉



設定後即不會印出左上角亂碼!



參考原廠說明如下:
 https://www.epson.com.cn/services/videomanual/videodetail/a69e7d3fe8574822ba3a4dcebdcad10b.html

outlook.exe 一直閃退

 我的outlook.exe是2019版,今早突然發現有些電腦會突然閃退

1.修復PST,一樣
2.換設定檔.一樣

3.換帳號,一樣
4.後來去查LOG

5.重安裝Visual C++ Redistributable ,一樣(如下LOG-1)
6.參如下(如下LOG-2),去控制台移除TEAMS插件,即恢復正常,給各位參考看看


如下LOG-1
=========================

失敗的應用程式名稱: OUTLOOK.EXE,版本: 16.0.10417.20020,時間戳記: 0x6833d606

錯誤模組名稱: MSVCP140.dll, 版本: 14.24.28127.4,時間戳記: 0x5d8e68d7

例外狀況代碼: 0xc0000005

錯誤位移: 0x0000000000012590

錯誤處理常式識別碼: 0xE24

失敗的應用程式開始時間: 0x1DCBCBFE2741E94

Faulting 應用程式路徑: C:\Program Files\Microsoft Office\root\Office16\OUTLOOK.EXE

Faulting 模組路徑: C:\WINDOWS\SYSTEM32\MSVCP140.dll

Report 識別碼: 3000c50e-1d87-4dce-a595-


如下LOG-2

=========================

應用程式: OUTLOOK.EXE

Framework 版本: v4.0.30319

描述: 處理序已終止,因為有未處理的例外狀況。

例外狀況資訊: System.AccessViolationException

   於 Microsoft.Teams.MeetingAddin.Scheduler.OneAuthUtils.Startup(System.String, System.String, System.String, Boolean, Boolean, Boolean, System.String)

   於 Microsoft.Teams.MeetingAddin.Scheduler.OneAuthAuthenticator+<>c.<.cctor>b__16_1(System.String, System.String, System.String, Boolean, Boolean, Boolean, System.String)

   於 Microsoft.Teams.MeetingAddin.Scheduler.OneAuthAuthenticator.OneAuthStartup(Microsoft.Teams.MeetingAddin.Telemetry.ITelemetryAppLifecycleContext, Microsoft.Teams.Diagnostics.Logger, Microsoft.Teams.MeetingAddin.Scheduler.IHrdHostService)

   於 Microsoft.Teams.MeetingAddin.Application+<CompleteIntializationAfterSettingsAreLoadedAsync>d__64.MoveNext()

=========================

ISO檔無法掛載

遇到自己的電腦要掛載ISO,但發現按右鍵無[掛載]及[無法檔案總管] 系統:Windows 11 無法指定檔案總管 判斷錯誤訊息(OpenWith.exe 無法關聯),代表系統的 .iso 檔案類型機碼可能已經損毀或被鎖死,導致檔案總管無法正常接管。 建立一個txt,將如下sa...