It is also possible to disable the use of
WebView2 by UltraEdit/UEStudio v2025.1.0.20 just for the current user which does not require the elevated privileges of a local administrator by running in a command prompt window:
UltraEdit:
Code: Select all
reg.exe ADD "HKCU\Software\IDM Computer Solutions\UltraEdit\Locks" /v WebView2 /t REG_DWORD /d 1 /f
UEStudio:
Code: Select all
reg.exe ADD "HKCU\Software\IDM Computer Solutions\UEStudio\Locks" /v WebView2 /t REG_DWORD /d 1 /f
Note: All plugins are not available anymore on disabling the use of
WebView2. The plugins installed by default with UltraEdit/UEStudio are not listed anymore on ribbon tab
Advanced or in the menu
Advanced on adding this registry value. It is also not possible to run UltraEdit scripts designed for being executed with the
WebView2 engine, i.e. containing the comment
// @Engine=WebView2 at top of the script file.
The registry value can be removed also from within a command prompt window with the execution of the following command line.
UltraEdit:
Code: Select all
reg.exe DELETE "HKCU\Software\IDM Computer Solutions\UltraEdit\Locks" /v WebView2 /f
UEStudio:
Code: Select all
reg.exe DELETE "HKCU\Software\IDM Computer Solutions\UEStudio\Locks" /v WebView2 /f
All those commands can be executed with
HKLM instead of
HKCU in a command prompt window opened with
run as administrator to add/delete the double word registry value in registry hive of local machine instead of current user.