I’m using the ‘LoadLibrary’ from the Windows API, when I run the application, it throws me an error code 126. I read that it may be caused by dependencies, I checked what’s wrong with some applications like Dependency Walker, but everything was fine.
LoadLibrary in the application:
HMODULE dll_mod = LoadLibrary(L"path_to_dll");
if(dll_mod==NULL){
std::stringstream error;
error << "Could not load plugin located at:n" << file_full.toStdString() << "n" << "Error Code: " << GetLastError();
FreeLibrary(dll_mod);
return error.str();
}
Plugin code:
#include "stdafx.h"
#define DLL_EXPORT
#define PLUGIN_STREAM __declspec(dllexport)
#include <iostream>
#include <vector>
using std::vector;
using std::string;
// Init event (After the loading)
extern "C"{
PLUGIN_STREAM int onInit(char* argv){
return 0;
}
PLUGIN_STREAM void pluginInfo(vector<string> & info){
info.push_back("media_event=false");
info.push_back("status_event=false");
info.push_back("send_event=true");
info.push_back("plugin_name='RadioStream'");
info.push_back("description='This plugin was designed for that people that wants to listen to radio music.nYou can register your radio and play it later, also we have a gallery of radios that you can check.nThis plugin is original of Volt and it's originally implemented in the application.'");
info.push_back("success:0");
info.push_back("error:1=Could not open data file");
info.push_back("error:2=Could not prepare plugin");
info.push_back("alert:40=Could not connect to that radio");
}
}
asked Jan 16, 2013 at 15:32
5
Windows dll error 126 can have many root causes.
The most useful methods I have found to debug this are:
- Use dependency walker to look for any obvious problems (which you
have already done) - Use the sysinternals utility Process Monitor https://learn.microsoft.com/en-us/sysinternals/downloads/procmon from Microsoft to trace all file access while your dll is trying to load. With this utility, you will see everything that that dll is trying to pull in and usually the problem can be determined from there.
Eric Duminil
52.1k8 gold badges67 silver badges120 bronze badges
answered Jan 16, 2013 at 15:46
DanSDanS
1,1911 gold badge8 silver badges4 bronze badges
12
This can also happen when you’re trying to load a DLL and that in turn needs another DLL which cannot be not found.
answered Apr 7, 2020 at 3:40
Shivanshu GoyalShivanshu Goyal
1,3242 gold badges16 silver badges22 bronze badges
This error can happen because some MFC library (eg. mfc120.dll) from which the DLL is dependent is missing in windows/system32 folder.
bluish
25.7k27 gold badges119 silver badges177 bronze badges
answered Sep 19, 2017 at 9:10
In my case it was all about character sets v.s. form of loader function. This is visual studio 2019 setting at Project/Properties/Configuration Properties/Advanced/Character Set which has two choices:
1.Use Multi-Byte Character Set ->call it mb
2.Use Unicode Character Set -> call it uc
My test revealed:
const char* fileName = ".\Debug\Win32\Dll1.dll";
void* module = LoadLibrary((LPCWSTR)fileName);
//compiles no mb, compiles uc, uc run fails with 126
void* module = LoadLibrary((LPCSTR)fileName);
//compiles mb,runs mb, no uc
void* module = LoadLibraryA(fileName); //note explicit A
//compiles mb,runs mb, compiles uc,runs uc
DWORD lasterror = GetLastError();//0 is ok
Today I banged my head again to 126.
I learned one thing that makes 126 happen again on top of those previous examples is chained loading of java’s virtual machine dll from my_dll. In my case my_dll needs to have jvm.dll marked as «delay loaded».
Setting is at project level:
Configuration Properties/Linker/Input/Delay Loaded Dlls
where I wrote jvm.dll;
This error is something I can repeat.
answered Jun 13, 2022 at 13:03
1
// PKG Fix - index.js
const isPkg = typeof process.pkg !== 'undefined';
const c_dir = isPkg ? path.dirname(process.execPath) : __dirname;
let soname;
if (os.platform() == 'win32') {
// Update path to load dependent dlls
let currentPath = process.env.Path;
let dllDirectory = path.resolve(path.join(c_dir, "win-x86_64"));
process.env.Path = dllDirectory + path.delimiter + currentPath;
soname = path.join(c_dir, "win-x86_64", "libvosk.dll");
} else if (os.platform() == 'darwin') {
soname = path.join(c_dir, "lib", "osx-universal", "libvosk.dylib");
} else {
soname = path.join(c_dir, "lib", "linux-x86_64", "libvosk.so");
}
answered Aug 9, 2022 at 20:38
1
answered Feb 7, 2020 at 18:23
1
I’m using the ‘LoadLibrary’ from the Windows API, when I run the application, it throws me an error code 126. I read that it may be caused by dependencies, I checked what’s wrong with some applications like Dependency Walker, but everything was fine.
LoadLibrary in the application:
HMODULE dll_mod = LoadLibrary(L"path_to_dll");
if(dll_mod==NULL){
std::stringstream error;
error << "Could not load plugin located at:n" << file_full.toStdString() << "n" << "Error Code: " << GetLastError();
FreeLibrary(dll_mod);
return error.str();
}
Plugin code:
#include "stdafx.h"
#define DLL_EXPORT
#define PLUGIN_STREAM __declspec(dllexport)
#include <iostream>
#include <vector>
using std::vector;
using std::string;
// Init event (After the loading)
extern "C"{
PLUGIN_STREAM int onInit(char* argv){
return 0;
}
PLUGIN_STREAM void pluginInfo(vector<string> & info){
info.push_back("media_event=false");
info.push_back("status_event=false");
info.push_back("send_event=true");
info.push_back("plugin_name='RadioStream'");
info.push_back("description='This plugin was designed for that people that wants to listen to radio music.nYou can register your radio and play it later, also we have a gallery of radios that you can check.nThis plugin is original of Volt and it's originally implemented in the application.'");
info.push_back("success:0");
info.push_back("error:1=Could not open data file");
info.push_back("error:2=Could not prepare plugin");
info.push_back("alert:40=Could not connect to that radio");
}
}
asked Jan 16, 2013 at 15:32
5
Windows dll error 126 can have many root causes.
The most useful methods I have found to debug this are:
- Use dependency walker to look for any obvious problems (which you
have already done) - Use the sysinternals utility Process Monitor https://learn.microsoft.com/en-us/sysinternals/downloads/procmon from Microsoft to trace all file access while your dll is trying to load. With this utility, you will see everything that that dll is trying to pull in and usually the problem can be determined from there.
Eric Duminil
52.1k8 gold badges67 silver badges120 bronze badges
answered Jan 16, 2013 at 15:46
DanSDanS
1,1911 gold badge8 silver badges4 bronze badges
12
This can also happen when you’re trying to load a DLL and that in turn needs another DLL which cannot be not found.
answered Apr 7, 2020 at 3:40
Shivanshu GoyalShivanshu Goyal
1,3242 gold badges16 silver badges22 bronze badges
This error can happen because some MFC library (eg. mfc120.dll) from which the DLL is dependent is missing in windows/system32 folder.
bluish
25.7k27 gold badges119 silver badges177 bronze badges
answered Sep 19, 2017 at 9:10
In my case it was all about character sets v.s. form of loader function. This is visual studio 2019 setting at Project/Properties/Configuration Properties/Advanced/Character Set which has two choices:
1.Use Multi-Byte Character Set ->call it mb
2.Use Unicode Character Set -> call it uc
My test revealed:
const char* fileName = ".\Debug\Win32\Dll1.dll";
void* module = LoadLibrary((LPCWSTR)fileName);
//compiles no mb, compiles uc, uc run fails with 126
void* module = LoadLibrary((LPCSTR)fileName);
//compiles mb,runs mb, no uc
void* module = LoadLibraryA(fileName); //note explicit A
//compiles mb,runs mb, compiles uc,runs uc
DWORD lasterror = GetLastError();//0 is ok
Today I banged my head again to 126.
I learned one thing that makes 126 happen again on top of those previous examples is chained loading of java’s virtual machine dll from my_dll. In my case my_dll needs to have jvm.dll marked as «delay loaded».
Setting is at project level:
Configuration Properties/Linker/Input/Delay Loaded Dlls
where I wrote jvm.dll;
This error is something I can repeat.
answered Jun 13, 2022 at 13:03
1
// PKG Fix - index.js
const isPkg = typeof process.pkg !== 'undefined';
const c_dir = isPkg ? path.dirname(process.execPath) : __dirname;
let soname;
if (os.platform() == 'win32') {
// Update path to load dependent dlls
let currentPath = process.env.Path;
let dllDirectory = path.resolve(path.join(c_dir, "win-x86_64"));
process.env.Path = dllDirectory + path.delimiter + currentPath;
soname = path.join(c_dir, "win-x86_64", "libvosk.dll");
} else if (os.platform() == 'darwin') {
soname = path.join(c_dir, "lib", "osx-universal", "libvosk.dylib");
} else {
soname = path.join(c_dir, "lib", "linux-x86_64", "libvosk.so");
}
answered Aug 9, 2022 at 20:38
1
answered Feb 7, 2020 at 18:23
1
The ‘loadlibrary failed with error 126’ is an error that dates back to the earlier Windows versions (Vista and onwards) but is still reported. The issue is reported when launching an application/game or installing it.
Many programs showed this error. Following are a few examples of such applications, games, utilities:
- Rhinoceros 3D
- Adobe Suite (Photoshop, Illustrator, etc.)
- TrackIRv5
- UltimateDefrag
- Radar ScreenSaver
- Logitech Gaming Keyboard and Headset
- Minecraft
- BluetStacks
- Steam or Steam Games (like Stardew)
- Virtual Box
- PowerAttendantLite
- Blender
- Civilization VI
- ANSYS
- Microsoft Remote Desktop
- MATLAB
Many factors can cause the ‘loadlibrary failed with error 126’ but the following can be regarded as the main culprits:
- Missing Admin Privileges: If the application (like NetBeans) cannot access protected system files or directories due to the absence of admin privileges, it may result in a loadlibrary error.
- Corrupt or Outdated Graphics Driver: If the system’s graphics driver is corrupt or outdated, then its incompatibility with the problematic application may lead to the error 126.
- Dual Graphics Cards: If the system has two graphics cards i.e., a switchable graphics system with one built-in graphics card and the other dedicated, then it can cause the loadlibrary issue if the application modules try to use both cards at the same time.
- Corrupt System Files: If the essential system files are corrupt, then an application may fail to access an essential directory or file, resulting in the loadlibrary failed with error 126.
Launch the Problematic Application as an Administrator
You may encounter the loadlibrary failed with error 126 when the problematic application does not have the privileges to access a protected system resource. In this case, launching the problematic application as an administrator may solve the problem.
- Right-click on the shortcut icon of the problematic application (or in the search results of the start menu) like Adobe Illustrator.
Run Illustrator as Administrator - Now select Run as Administrator and check if the application launches fines.
- If so, close the application and again launch it normally (not as administrator) and check if it is working fine.
- If not, then right-click on the shortcut of the problematic application (like Adobe Photoshop) and select Properties. In case, the start menu search is used, select Open File Location, right-click on Illustrator, and select Properties.
Open File Location of Adobe Illustrator - Now head to the Compatibility tab and checkmark Run This Program as an Administrator.
Open Properties of Adobe Illustrator - Then apply the changes made and launch the application through the shortcut to check if it is clear of the loadlibrary failed error 126.
Check Run This Program as Administrator for Adobe Illustrator
Enable Virtual Super Resolution in the AMD Settings
VSR (or Virtual Super Resolution) is an AMD feature that lets an application or game render at higher resolutions (beyond the native display resolution). If the display resolution in use is not compatible with the game (like Civilization VI), then that may cause the loadlibrary error at hand. In this context, enabling the Virtual Super Resolution in the AMD Settings may solve the problem.
- Open the AMD Software and click on Settings (near the top right corner).
- Now head to the Display tab and under Display Options, enable Virtual Super Resolution.
Enable Virtual Super Resolution in AMD Settings - Then launch the problematic game (like Civilization VI) or application and check if the loadlibrary issue is resolved.
Copy the DLL File to the System32 Directory
You may encounter the issue under discussion if an essential DLL file is missing from the System32 directory and copying the same may solve the problem.
- Right-click Windows and open Run.
Open the Run Command Box from the Quick Access Menu - Now navigate to the following:
C:WindowsSystem32DriverStoreFileRepositoryu0352938.inf_amd64_e098709f94aef08dB352876
- Then copy the atio6axx.dll file and paste it into the following directory:
C:windowssystem32
- Now restart the system and upon restart, launch the problematic application (like ArcMap) to check if it is working fine.
- If not, click Windows, search, right-click Command Prompt, and select Run as Administrator.
Open Command Prompt as Administrator - Then execute the following (copy/paste the command, otherwise, make sure the spacing is right):
C:WindowsSystem32 copy atio6axx.dll .dll
Copy atio6axx.dll File - Now restart the system and upon restart, check if the loadlibrary error is cleared.
Change the Main Monitor or Disconnect the External Display
In a multi-display environment, you may encounter the loadlibrary failed error if the main monitor is not the internal display (in case of a laptop) or if the external display is not connected to a dedicated graphics card port but to an on-board graphics card port (in a dual graphics cards setup) as this may cause incompatible resource hogging by the cards. In such a case, changing the main monitor of the system or disconnecting the external display may fix error 126.
- Right-click Windows and open Settings.
Open Windows Settings - Now, in the System tab, open Display and expand Multiple Displays.
Open Display in the System Tab of the Windows Settings - Then select the Internal Display (you may use the Identify button to find out which display belongs to what) and checkmark Make This My Main Display.
Set the Laptop’s Internal Display as the Main Display - Now launch the application in question (like Adobe Photoshop) and check if it is operating fine.
- If not, check if connecting the external display to another port (or swapping monitors’ ports) solves the problem.
- If that did not work, disconnect the external monitor from the system and restart the system.
- Upon restart, launch the problematic application and check if it is working fine. If so, then you may connect back the external monitor.
Perform an SFC Scan of the System
The loadlibrary may fail with error 126 if the essential system files are corrupt which may not let an application access an essential system directory or resource. In this case, you may fix the issue by performing an SFC scan of the system.
- Perform an SFC scan of the system and wait till the scan is complete. Make sure to launch the Command Prompt as an administrator. Moreover, this scan may take some time to complete, so try it in your spare time (or overnight).
Perform an SFC Scan - Once the SFC scan is completed, check if the loadlibrary problem is solved.
Perform a Clean Boot of the System
The loadlibrary error might occur if a process/service on the system is interfering with the problematic application’s execution. In such a case, ending the conflicting processes in the Task Manager or performing a clean boot of the system may clear the error 126.
End Conflicting Tasks in the Task Manager
- Right-click Windows and open Task Manager.
Open the Task Manager of the System Through the Quick Access Menu - Now end all the processes related to Intel and then check if the issue is resolved.
End Intel Related Processes in the Task Manager - If not, then check if ending all the non-essential processes or processes related to the problematic application (like Adobe processes if the issue is occurring with an Adobe application like Photoshop) solves the problem.
Perform a Clean Boot of the System
- Perform a clean boot of the system (make sure to disable Radeon Software in the Startup tab of the Task Manager) and check if the loadlibrary issue is cleared. If so, then you may enable back the processes one by one till the problematic one is found. Once found, either keep it disabled or uninstall it.
- If the issue persists, check if booting the system into the Safe Mode solves the problem.
Uninstall AMD Software
There are many applications (found by clean booting the system) reported to cause the loadlibrary issue but in many instances, users reported that the AMD Software triggered the error. Here, uninstalling the AMD Software may solve the problem.
- Right-click Windows and open Apps & Features.
Open Apps & Features - Now, in front of AMD Software, click on three vertical ellipses and select Uninstall.
Uninstall AMD Software - Then confirm to uninstall AMD Software and follow the prompts on the screen to uninstall it.
- Once uninstalled, restart the system, and upon restart, check if the loadlibrary problem is solved.
Disable the System’s Built-in Graphics Card
You may encounter loadlibrary error 126 if the system has two graphics cards (i.e., one built-in and the other dedicated) and the modules of the applications involved tried to use different cards simultaneously.
For example, if the issue occurs when an RDP session is used to launch Blender and the loadlibrary error is shown, then the issue might have occurred as the RDP session tried to use a built-in graphics card, whereas, Blender was trying to use the dedicated graphics card. In this scenario, disabling the built-in graphics card (after all, dedicated graphics is more powerful and useful) will force the usage of a single card and thus may fix the LoadLibrary error.
- Right-click Windows and open Device Manager.
Open Device Manager Through the Quick Access Menu - Now expand Display Adapters and right-click on the built-in graphics device (like an Intel one).
Disable Intel Graphics Card in the Device Manager - Then select Disable Device and afterward, confirm to disable the graphics device.
- Now launch the problematic application or pair of applications (like RDP and Blender) and check if the loadlibrary failed error is cleared. Keep in mind, you can enable the built-in graphics device afterward.
- If that did not work, check if disabling and enabling the dedicated graphics card (like an AMD card) solves the problem.
Edit the System’s Group Policy for Remote Connections
If the issue is occurring when a remote connection is used to access the system, then the improper usage of graphics properties of the host may trigger the issue at hand. Here, editing the system’s Group Policy about the remote connection to force the proper usage of the graphics properties may solve the problem.
- Click Windows, search, and open Edit Group Policy.
Open Edit Group Policy - Now navigate to the following path:
Computer Configuration>> Administrative Templates>> Windows Components>> Remote Desktop Services>> Remote Desktop Session Host>> Remote Session Environment
- Then disable the option of Use WDDM Graphics Display Driver for Remote Desktop Connections and close the editor.
Disable Use WDDM Graphics Display Driver for Remote Desktop Connections in the Group Policy Editor - Now restart the system and upon restart, check if the loadlibrary error 126 is cleared.
- If not, open the Group Policy Editor and make sure the following are set as Enabled:
Use Hardware Graphics Adapters for All Remote Desktop Services Prioritize H.265/AVC444 Graphics Mode for Remote Desktop Connections Configure H.264/AVC Hardware Encoding for Remote Desktop Connections
Enable Relevant Graphics Settings in the Group Policy Editor - Then close the Group Policy Editor and restart your system.
- Upon restart, check if the loadlibrary issue is resolved.
Uninstall A Java Version
If an application (like Minecraft) requires JAVA but the system has two Java versions installed (like a 32-bit and other, 64-bit), then that may break the operation of the application and cause loadlibrary failed with error 126. In this case, uninstalling a Java version may solve the problem.
- Right-click Windows and open Apps & Features.
- Now check if there is more than one Java version installed.
- If so, uninstall the 64-bit version and afterward, restart the system.
Uninstall Java 64-bit Version - Upon restart, check if the system is cleared of the libraryload error.
Update or Reinstall the Graphics Driver
You may encounter loadlibrary failed with error 126 if the system’s graphics driver is outdated or corrupt as it can lead to the incompatibility between the other OS modules (like the application showing the error) and the driver. In this scenario, updating the graphics driver to the latest build or reinstalling it may solve the problem.
Update the Graphics Driver Through the Device Manager
- Right-click Windows and open Device Manager.
- Now expand the Display Adapters tab and right-click on the problematic graphics card.
- Then select Update Driver and click on Search Automatically for Drivers.
Update Driver of the Graphics Device in the Device Manager - If an updated driver is available, install it and then restart the system.
Search Automatically for Drivers of the Graphics Device - Upon restart, check if the system is clear of the loadlibrary error.
- If not, right-click on the graphics driver in the Display Adapter tab of the Device Manager and select Update Driver.
- Now choose to Browse My Computer for Drivers and click on Let Me Pick from a List of Available Drivers on My Computer.
Select Browse My Computer for Drivers When Updating the Touchpad Driver - Then select Microsoft Basic Display Adapter and click on Next.
Let Me Pick from a List of Available Drivers on My Computer - Once the driver is installed, restart your system and upon restart, check if the loadlibrary error 126 is cleared.
Select Microsoft Basic Display Adapter for the Graphics Card
Update the Graphics Driver Through the OEM Website
- Launch a web browser and visit the graphics card OEM website (like AMD).
- Now download the latest graphics driver as per your graphics card and then launch the downloaded driver as an administrator.
- Then follow the prompts on the screen to complete the installation and once done, restart your system.
- Upon restart, check if the loadlibrary issue is resolved.
- If not, navigate to the support page of the OEM’s website (like AMD Support) and download the OEM utility that auto-detects and install updates for the graphics driver (like AMD Auto-Detect and Install Updates for Radeon Graphics and Ryzen Chipset Drivers for Windows).
Download AMD Auto-Detect Utility - Then install that utility as an administrator and afterward, restart your system.
- Upon restart, check if the system is clear of the error 126.
Reinstall the Graphics Driver
- If the above did not work, download the latest graphics driver from the OEM website.
- Then right-click on the graphics card in the Display Adapters tab of the Device Manager and select Uninstall Device.
Uninstall the Graphics Driver in the Device Manager - Now checkmark Attempt to Remove the Drivers for This Device (Windows 10 user might see the option as Delete the Driver Software of This Device) and then click on Uninstall.
Select Attempt to Remove the Driver for This Device and Click on Uninstall for the Graphics Device - Once the driver is uninstalled, restart your system and upon restart, check if the system is clear of the loadlibrary problem.
- If not, install the latest graphics driver (not the application like AMD Graphics Software, just install the driver) as an administrator (downloaded earlier) and make sure to select Perform a Clean Install.
Perform a Clean Installation of AMD Drivers - Afterward, restart your system and upon restart, check if the loadlibary failed error is cleared.
- If that did not work, boot the system into the safe mode and uninstall the graphics driver (as discussed earlier).
- Now boot the system into the normal mode and install the latest graphics driver as administrator (downloaded earlier).
- Once done, restart your PC and upon restart, check if the system is clear of the loadlibrary error.
- If the issue persists, check if uninstalling the driver with the OEM utility (like AMD Cleanup Utility) and then reinstall the latest graphics driver as administrator solves the problem.
Launch the AMD Clean Up Utility - If the issue is still there, check if using an older graphics driver (you may download the one from the OEM’s website) solves the problem.
Reinstall the Drivers of the Dual Graphics Cards
In case, the system is using dual graphics cards (like a built-in Intel card and a dedicated AMD card), then reinstalling both the drivers may solve the problem.
- Firstly, make sure to download the latest graphics drivers from the related OEM websites (like Intel and AMD).
- Now, uninstall both the graphics drivers from the system’s Device Manager (as discussed earlier) and right-click on Windows.
Uninstall Intel and AMD Drivers in the Device Manager - Now select Apps & Features and uninstall all applications related to both graphics cards.
- Then install the driver of the built-in graphics card (like an Intel driver) and restart your system.
- Upon restart, install the driver of the dedicated graphics card (like an AMD driver), and afterward, check if the loadlibrary failed issue is resolved.
Perform an In-Place Upgrade of the System’s Windows
If none of the above worked for you, then the issue could be the result of the corrupt installation of Windows (that is beyond repair). In this case, performing an in-place upgrade of the system’s Windows may solve the problem. For elucidation, we will discuss the process for a Windows 11 PC.
- Launch a web browser and steer to the Windows 11 download page of Microsoft.
- Now, in the section of Download Windows 11 Disk Image (ISO), select Windows 11 in the dropdown and click on Download.
Download the Windows 11 ISO File - Then wait till the download is complete and afterward, right-click on the downloaded ISO.
- Now select Mount and then open the mounted drive through the File Explorer.
Mount Windows 11 ISO - Then right-click on the Setup file and select Run as Administrator.
Open Windows 11 Setup as Administrator - Now follow the prompts on the screen to complete the process but make sure to select Keep Files, Apps, and Settings.
- Once the in-place upgrade is complete, restart the system and upon restart, hopefully, the system will be cleared of the loadlibrary issue.
The Loadlibrary failed with error 126, 87, 1114 or 1455 has been with Windows since years, and there are reports that people are still facing the problem even in the latest Windows 11. The error message occurs upon launching an application on Windows PC. the accompanying messages may be:
The specified modue could not be found
A dynamic link library (dll) initialization routine failed
There’s a long list of applications affected by this error message. But the most popular among them are:
- Adobe Suite
- BlueStacks
- Minecraft
- Microsoft Remote Desktop
- Virtual Box
- Steam
- Logitech peripherals
- Civilization VI
It’s easy to troubleshoot this problem. Continue with the guide to solve the issue on your system.
What is LoadLibrary?
Says Microsoft – LoadLibrary can be used to load a library module into the address space of the process and return a handle that can be used in GetProcAddress to get the address of a DLL function. LoadLibrary can also be used to load other executable modules. In short – it is a critical OS process that is need to work properly.
What causes the Loadlibrary failed with error on Windows PC
There can be multiple reasons behind the Loadlibrary failed with error 126, 87, 1114 or 1455 in Windows 11/10. But among all, the major reasons triggering the problem are mentioned below.
- If you haven’t provided the problematic applications with administrative rights, you will most likely face the mentioned problem.
- Not having the latest graphics driver update can be another major reason behind the problem. Additionally, a corrupted driver can also trigger the issue.
- If your system features two graphics cards, the problematic application will try to use both of them simultaneously, which will directly cause different problems, including the one in question.
- If the Windows file has been corrupted, you will face the Loadlibrary failed with error on your Windows PC.
Now that you have a piece of prior knowledge about different reasons causing the problem let’s check out how to eliminate them.
Below is a list of all the effective solutions you can try to fix Loadlibrary failed with error 126, 87, 1114 or 1455 on Windows PC.
- Restart the application and PC
- Run the application in administrator mode
- Copy the DLL file to the System32 folder
- Close unnecessary background running applications
- Run the SFC scan
- Download the latest Graphics Driver update
Now, let’s take a look at all these solutions in detail.
1] Restart the application and PC
To begin with, restart the problem at the application all over again. But make sure none of the associated services is running in the background. You can check it by opening the Task Manager and closing all the services associated with the problematic application. Once done, check if the problem is solved or not.
If you are still facing the problem, you can go with restarting the system. As it turns out, the error message can appear due to a temporary glitch. And the best thing you can do to eliminate such glitches is restart your system. Do it, and see if there’s any difference.
2] Run the application in administrator mode
As mentioned, the major reason behind the problem can be the lack of administrative privileges. Most of the applications that throw the mentioned error needs administrative rights to perform normally. But if this isn’t the case, i.e., you haven’t provided the rights, you will face different issues, including the one you’re currently facing. So, grant administrative rights to the application and check if the problem is solved.
- Open the Start Menu by pressing the Windows key.
- In the space provided, type the name of the problematic application and press Enter.
- From the result, right-click on the application and choose Open file location.
- Right-click on the application exe file in the following window and choose the Properties option.
- Click on the Compatibility tab.
- Select Run this program as an administrator.
- Click on Apply > OK.
Now, restart your system, and launch the application. Check if you’re still facing the problem. If yes, try the next solution.
3] Copy the DLL file to the System32 folder
You will face the mentioned problem if the important DLL files are missing from the System32 folder. To solve the problem, you will have to copy-paste the DLL file to the required folder. Here are the steps you need to follow.
Open the Run dialogue box by pressing Windows + R shortcut key.
Copy-paste the below-mentioned location and press the enter key.
C:WindowsSystem32DriverStoreFileRepositoryu0352938.inf_amd64_e098709f94aef08dB352876
In the folder, copy the atio6axx.dll file and paste it in the following location.
C:Windowssystem32
Once done, restart your system and launch the application. Check if the problem continues.
See: Fix vulkan-1.dll not found or missing error
Sometimes, a large number of unnecessary background running applications can also be the primary reason behind the problem. In this case, the best thing to do is close all the background running applications using the Task Manager. Click the Ctrl + Shift + Esc shortcut key to open Task Manager > Right-click on unnecessary applications > End Task.
Now, check if the problem persists. If yes, continue with the guide.
5] Run the SFC scan
You can run the SFC scan on your Windows PC to fix the Loadlibrary failed with error 126. The SFC scan helps to scan and restore corrupt Windows system files. You can run the SFC scan by following the below steps.
- Open Command Prompt in administrator mode.
- Type the following command and press enter.
sfc /scannow
Wait until the command is executed. Once done, check for the problem.
See: Fix Wireless Display Install Failed Error
6] Download the latest Graphics Driver update
The mentioned error can be caused due to updated or corrupted graphics driver. In either case, the best thing you can do is download the latest graphics driver update. Here are the steps you need to follow to get the work done.
- Check Optional Updates to update the driver.
- Go to the manufacturer’s website and download your driver.
- Update your driver from the Device Manager.
Install the downloaded driver on your system, followed by a simple restart.
Read: Access is Denied error while installing software
How do you fix error code 126 on Minecraft?
It’s very easy to troubleshoot the error code 126 on Minecraft. You can try either of these steps to solve the problem: Run Minecraft in administrator mode, perform Clean Boot, Run SFC scan, and download the latest graphics driver update. If nothing works, you can reinstall the game to solve the problem.
What is Loadlibrary failed with Error 87?
The Loadlibrary failed with Error 87 hawkers due to machine graphics card configuration. In laymen’s terms, the problem indicates that you need to download the latest graphics driver update. It’s very easy to troubleshoot Loadlibrary failed with Error 87.
Read Next: Event ID 307 and 304 with error code 0x801c001d.
Adobe Photoshop Version: 22.0.1 20201106.r.73 2020/11/06: 70b4743b574 x64
Number of Launches: 2
Operating System: Windows 10 64-bit
Version: 10 or greater 10.0.19041.546
System architecture: Intel CPU Family:6, Model:14, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, AVX2, HyperThreading
Physical processor count: 4
Logical processor count: 8
Processor speed: 3600 MHz
Built-in memory: 24476 MB
Free memory: 15684 MB
Memory available to Photoshop: 22406 MB
Memory used by Photoshop: 70 %
ACP.local Status:
— SDK Version: 1.34.1.4
— Core Sync Status: Reachable and compatible
— Core Sync Running: 4.3.61.1
— Min Core Sync Required: 4.3.28.24
ACPL Cache Config:
— Time to Live: 5184000 seconds
— Max Size: 20480 MB
— Purge Percentage: 50%
— Threshold Percentage: 85%
— Purge Interval: 60 seconds
Native GPU: Enabled.
Manta Canvas: Enabled.
Alias Layers: Disabled.
Modifier Palette: Enabled.
Highbeam: Enabled.
Image tile size: 1024K
Image cache levels: 4
Font Preview: Medium
TextComposer: Latin
The GPU Sniffer crashed on 11/26/2020 at 9:20:04 AM
Display: 1
Display Bounds: top=0, left=0, bottom=2160, right=3840
OpenGL Drawing: Disabled.
OpenGL Allow Old GPUs: Not Detected.
License Type: Subscription
Serial number: 96040971690560074296
GUIDBucket:Composite Core (enable_composite_core): onComposite Core GPU (comp_core_gpu): offComposite Core UI (comp_core_ui): offDocument Graph (enable_doc_graph): off
Application folder: C:Program FilesAdobeAdobe Photoshop 2021
Temporary file path: C:UserstinaAppDataLocalTemp
Photoshop scratch has async I/O enabled
Scratch volume(s):
Startup, 223.7G, 35.8G free
Required Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021RequiredPlug-ins
Primary Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021Plug-ins
Installed components:
A3DLIBS.dll A3DLIB Dynamic Link Library 9.2.0.112
ACE.dll ACE 2020/10/28-12:40:22 113.624934 113.624934
AdbePM.dll PatchMatch 2020/09/29:17:00:06 1.624362 1.624362
AdobeLinguistic.dll Adobe Linguisitc Library developer.633ca06620e3b28a3ccee5d61e3e97bd84fe66b3
AdobeOwl.dll Adobe Owl 5.5.0
AdobePDFL.dll PDFL 2020/08/08-01:12:48 79.395135 79.395135
AdobePDFSettings.dll Adobe PDFSettings 1.07
AdobePIP.dll Adobe Product Improvement Program 8.1.0.68.49183
AdobeSVGAGM.dll AdobeSVGAGM 79.623146 79.623146
AdobeXMP.dll Adobe XMP Core 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPFiles.dll Adobe XMP Files 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPScript.dll Adobe XMP Script 2020/07/10-22:06:53 79.164488 79.164488
adobe_caps.dll Adobe CAPS 10,0,0,6
AGM.dll AGM 2020/10/28-12:40:22 113.624934 113.624934
AID.dll AID DLL 1.0.0.12
AIDE.dll AIDE 2020/08/10-16:30:32 79.623154 79.623154
ARE.dll ARE 2020/10/28-12:40:22 113.624934 113.624934
AXE8SharedExpat.dll AXE8SharedExpat 2020/08/01-01:08:32 79.622927 79.622927
AXEDOMCore.dll AXEDOMCore 2020/08/01-01:08:32 79.622927 79.622927
Bib.dll BIB 2020/10/28-12:40:22 113.624934 113.624934
BIBUtils.dll BIBUtils 2020/10/28-12:40:22 113.624934 113.624934
boost_date_time.dll photoshopdva 12.1.0
boost_filesystem.dll photoshopdva 12.1.0
boost_system.dll photoshopdva 12.1.0
boost_threads.dll photoshopdva 12.1.0
CoolType.dll CoolType 2020/10/28-12:40:22 113.624934 113.624934
CRClient.dll Adobe Crash Reporter Client DLL 3.0.2.0
DirectML.dll DirectML Redistributable Library 1.0.200514-0504.1.redist-dml-2.1.0.dcd3712
dnssd.dll Bonjour 3,0,0,2
dvaaccelerate.dll photoshopdva 12.1.0
dvaappsupport.dll photoshopdva 12.1.0
dvaaudiodevice.dll photoshopdva 12.1.0
dvacore.dll photoshopdva 12.1.0
dvacrashhandler.dll Adobe Audition CC 2017 10.0.0
dvamarshal.dll photoshopdva 12.1.0
dvamediatypes.dll photoshopdva 12.1.0
dvametadata.dll photoshopdva 12.1.0
dvametadataapi.dll photoshopdva 12.1.0
dvametadataui.dll photoshopdva 12.1.0
dvaplayer.dll photoshopdva 12.1.0
dvascripting.dll photoshopdva 12.1.0
dvatransport.dll photoshopdva 12.1.0
dvaui.dll photoshopdva 12.1.0
dvaunittesting.dll photoshopdva 12.1.0
dynamic-torqnative.dll Unified Extensibility Platform uxp-4.1.2.214
dynamiclink.dll photoshopdva 12.1.0
ExtendScript.dll ExtendScript 2019/07/29-10:07:31 82.2 82.2
icucnv66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icudt66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icuuc66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
igestep30.dll IGES Reader 9.3.0.113
ippcc.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcck0.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccl9.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccy8.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcore.dll core. Intel(R) Integrated Performance Primitives. Core Library. 2020.0.1 (r0x35c5ec66)
ippcv.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvk0.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvl9.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvy8.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippi.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippik0.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippil9.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippiy8.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ipps.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsk0.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsl9.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsy8.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippvm.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmk0.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvml9.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmy8.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
JP2KLib.dll JP2KLib 2020/06/29-16:59:49 79.275695 79.275695
libifcoremd.dll Intel(r) Visual Fortran Compiler 10.0 (Update A)
libiomp5md.dll Intel(R) OpenMP* Runtime Library 5.0
libmmd.dll Intel(R) C/C++/Fortran Compiler Mainline
LogSession.dll LogSession 8.1.0.68.49183
mediacoreif.dll photoshopdva 12.1.0
Microsoft.AI.MachineLearning.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
MPS.dll MPS 2020/08/10-16:30:32 79.623129 79.623129
onnxruntime.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
opencv_world440.dll OpenCV library 4.4.0
Photoshop.dll Adobe Photoshop 2021 22.0
Plugin.dll Adobe Photoshop 2021 22.0
PlugPlugExternalObject.dll Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 10.0.0
PlugPlugOwl.dll Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 10.0.0.80
PSCloud.dll 1.0.0.1
PSViews.dll Adobe Photoshop 2021 22.0
ScCore.dll ScCore 2019/07/29-10:07:31 82.2 82.2
SVGRE.dll SVGRE 79.623146 79.623146
svml_dispmd.dll Intel(R) C/C++/Fortran Compiler Mainline
tbb.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
tbbmalloc.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
TfFontMgr.dll FontMgr 9.3.0.113
TfKernel.dll Kernel 9.3.0.113
TFKGEOM.dll Kernel Geom 9.3.0.113
TFUGEOM.dll Adobe, UGeom© 9.3.0.113
VulcanControl.dll Vulcan Application Control Library 6.5.0.000
VulcanMessage5.dll Vulcan Message Library 6.5.0.000
WinRTSupport.dll Adobe Photoshop Windows RT Support 21.0.0.0
WRServices.dll WRServices Build 16.0.0.4539038 16.0.0.4539038
wu3d.dll U3D Writer 9.3.0.113
Unified Extensibility Platform uxp-4.1.2.214
Required plugins:
Accented Edges 22.0 — from the file “Filter Gallery.8bf”
Adaptive Wide Angle 22.0 — from the file “Adaptive Wide Angle.8bf”
Angled Strokes 22.0 — from the file “Filter Gallery.8bf”
Average 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Average.8bf”
Bas Relief 22.0 — from the file “Filter Gallery.8bf”
BMP 22.0 — from the file “Standard MultiPlugin.8bf”
Camera Raw 13.0.2 — from the file “Camera Raw.8bi”
Camera Raw Filter 13.0.2 — from the file “Camera Raw.8bi”
Chalk && Charcoal 22.0 — from the file “Filter Gallery.8bf”
Charcoal 22.0 — from the file “Filter Gallery.8bf”
Chrome 22.0 — from the file “Filter Gallery.8bf”
Cineon 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Cineon.8bi”
Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Color Halftone 22.0 — from the file “Standard MultiPlugin.8bf”
Colored Pencil 22.0 — from the file “Filter Gallery.8bf”
Conté Crayon 22.0 — from the file “Filter Gallery.8bf”
Craquelure 22.0 — from the file “Filter Gallery.8bf”
Crop and Straighten Photos 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “CropPhotosAuto.8li”
Crop and Straighten Photos Filter 22.0 — from the file “Standard MultiPlugin.8bf”
Crosshatch 22.0 — from the file “Filter Gallery.8bf”
Crystallize 22.0 — from the file “Standard MultiPlugin.8bf”
Cutout 22.0 — from the file “Filter Gallery.8bf”
Dark Strokes 22.0 — from the file “Filter Gallery.8bf”
De-Interlace 22.0 — from the file “Standard MultiPlugin.8bf”
Dicom 22.0 — from the file “Dicom.8bi”
Difference Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Diffuse Glow 22.0 — from the file “Filter Gallery.8bf”
Displace 22.0 — from the file “Standard MultiPlugin.8bf”
Dry Brush 22.0 — from the file “Filter Gallery.8bf”
Eazel Acquire 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “EazelAcquire.8ba”
Entropy 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Export Color Lookup Tables 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Extrude 22.0 — from the file “Standard MultiPlugin.8bf”
FastCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “FastCore.8bx”
Fibers 22.0 — from the file “Standard MultiPlugin.8bf”
Film Grain 22.0 — from the file “Filter Gallery.8bf”
Filter Gallery 22.0 — from the file “Filter Gallery.8bf”
Fresco 22.0 — from the file “Filter Gallery.8bf”
Glass 22.0 — from the file “Filter Gallery.8bf”
Glowing Edges 22.0 — from the file “Filter Gallery.8bf”
Grain 22.0 — from the file “Filter Gallery.8bf”
Graphic Pen 22.0 — from the file “Filter Gallery.8bf”
Halftone Pattern 22.0 — from the file “Filter Gallery.8bf”
Halide Bottlenecks 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “HalideBottlenecks.8bx”
HDRMergeUI 22.0 — from the file “HDRMergeUI.8bf”
HSB/HSL 22.0 — from the file “Standard MultiPlugin.8bf”
IFF Format 22.0 — from the file “Standard MultiPlugin.8bf”
IGES 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Ink Outlines 22.0 — from the file “Filter Gallery.8bf”
JPEG 2000 22.0 — from the file “JPEG2000.8bi”
Kurtosis 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Lens Blur 22.0 — from the file “Lens Blur.8bf”
Lens Correction 22.0 — from the file “Lens Correction.8bf”
Lens Flare 22.0 — from the file “Standard MultiPlugin.8bf”
Liquify 22.0 — from the file “Liquify.8bf”
Matlab Operation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Maximum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mean 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Measurement Core 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MeasurementCore.8me”
Median 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mezzotint 22.0 — from the file “Standard MultiPlugin.8bf”
Minimum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
MMXCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MMXCore.8bx”
Mosaic Tiles 22.0 — from the file “Filter Gallery.8bf”
Multiprocessor Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MultiProcessor Support.8bx”
Neon Glow 22.0 — from the file “Filter Gallery.8bf”
Note Paper 22.0 — from the file “Filter Gallery.8bf”
NTSC Colors 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “NTSC Colors.8bf”
Ocean Ripple 22.0 — from the file “Filter Gallery.8bf”
OpenEXR 22.0 — from the file “Standard MultiPlugin.8bf”
Paint Daubs 22.0 — from the file “Filter Gallery.8bf”
Palette Knife 22.0 — from the file “Filter Gallery.8bf”
Patchwork 22.0 — from the file “Filter Gallery.8bf”
Paths to Illustrator 22.0 — from the file “Standard MultiPlugin.8bf”
PCX 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PCX.8bi”
Photocopy 22.0 — from the file “Filter Gallery.8bf”
Picture Package Filter 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Pinch 22.0 — from the file “Standard MultiPlugin.8bf”
Pixar 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Pixar.8bi”
Plaster 22.0 — from the file “Filter Gallery.8bf”
Plastic Wrap 22.0 — from the file “Filter Gallery.8bf”
Pointillize 22.0 — from the file “Standard MultiPlugin.8bf”
Polar Coordinates 22.0 — from the file “Standard MultiPlugin.8bf”
Portable Bit Map 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PBM.8bi”
Poster Edges 22.0 — from the file “Filter Gallery.8bf”
PRC 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Radial Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Radiance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Radiance.8bi”
Range 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Render Color Lookup Grid 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Reticulation 22.0 — from the file “Filter Gallery.8bf”
Ripple 22.0 — from the file “Standard MultiPlugin.8bf”
Rough Pastels 22.0 — from the file “Filter Gallery.8bf”
Save for Web 22.0 — from the file “Save for Web.8be”
ScriptingSupport 22.0 — from the file “ScriptingSupport.8li”
Shake Reduction 22.0 — from the file “Shake Reduction.8bf”
Shear 22.0 — from the file “Standard MultiPlugin.8bf”
Skewness 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Smart Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Smudge Stick 22.0 — from the file “Filter Gallery.8bf”
Solarize 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Solarize.8bf”
Spaces 22.0 — from the file “Spaces.8li”
Spatter 22.0 — from the file “Filter Gallery.8bf”
Spherize 22.0 — from the file “Standard MultiPlugin.8bf”
Sponge 22.0 — from the file “Filter Gallery.8bf”
Sprayed Strokes 22.0 — from the file “Filter Gallery.8bf”
Stained Glass 22.0 — from the file “Filter Gallery.8bf”
Stamp 22.0 — from the file “Filter Gallery.8bf”
Standard Deviation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Sumi-e 22.0 — from the file “Filter Gallery.8bf”
Summation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Targa 22.0 — from the file “Standard MultiPlugin.8bf”
Texturizer 22.0 — from the file “Filter Gallery.8bf”
Tiles 22.0 — from the file “Standard MultiPlugin.8bf”
Torn Edges 22.0 — from the file “Filter Gallery.8bf”
Twirl 22.0 — from the file “Standard MultiPlugin.8bf”
U3D 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Underpainting 22.0 — from the file “Filter Gallery.8bf”
Vanishing Point 22.0 — from the file “VanishingPoint.8bf”
Variance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Water Paper 22.0 — from the file “Filter Gallery.8bf”
Watercolor 22.0 — from the file “Filter Gallery.8bf”
Wave 22.0 — from the file “Standard MultiPlugin.8bf”
WIA Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WIASupport.8li”
Wind 22.0 — from the file “Standard MultiPlugin.8bf”
Wireless Bitmap 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WBMP.8bi”
ZigZag 22.0 — from the file “Standard MultiPlugin.8bf”
Optional and third party plugins: NONE
Duplicate and Disabled plugins: NONE
Plugins that failed to load: NONE
Unified Extensibility Platform — Extensions:
com.adobe.ccx.start (L) 3.8.0.28 — from the file «C:Program FilesCommon FilesAdobe/UXP/Extensionscom.adobe.ccx.start-3.8.0»
CDO: 1.76.10
CmdN: 1.5.18
CDP: 1.100.16
com.adobe.unifiedpanel (L) 1.1.0.24 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.unifiedpanel»
com.adobe.ccx.timeline (L) 2.6.27.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.ccx.timeline»
com.adobe.nfp.gallery (P) 1.2.109.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.nfp.gallery»
com.adobe.photoshop.exportAs (P) 5.1.2.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.exportAs»
com.adobe.photoshop.personalization (L) 1.0.0.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.personalization»
com.adobe.pluginspanel (P) 1.0.50.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.pluginspanel»
Extensions:
Libraries 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288index.html”
New Document 3.4.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.fnft-3.4.0fnft.html?v=3.4.0.16”
com.adobe.inapp.typekit.purchase 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288purchaseTypekit.html”
Home 2.15.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.start-2.15.0index.html?v=2.15.0.7”
com.adobe.capture.extension 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionscapturecapture.html”
com.adobe.stock.panel.licensing-embedded 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionsstock-panel-licensingindex.html”
Adobe Color Themes 6.1.0 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.KulerPanel.htmlindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Installed TWAIN devices: NONE
Adobe Photoshop Version: 22.0.1 20201106.r.73 2020/11/06: 70b4743b574 x64
Number of Launches: 2
Operating System: Windows 10 64-bit
Version: 10 or greater 10.0.19041.546
System architecture: Intel CPU Family:6, Model:14, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, AVX2, HyperThreading
Physical processor count: 4
Logical processor count: 8
Processor speed: 3600 MHz
Built-in memory: 24476 MB
Free memory: 15684 MB
Memory available to Photoshop: 22406 MB
Memory used by Photoshop: 70 %
ACP.local Status:
— SDK Version: 1.34.1.4
— Core Sync Status: Reachable and compatible
— Core Sync Running: 4.3.61.1
— Min Core Sync Required: 4.3.28.24
ACPL Cache Config:
— Time to Live: 5184000 seconds
— Max Size: 20480 MB
— Purge Percentage: 50%
— Threshold Percentage: 85%
— Purge Interval: 60 seconds
Native GPU: Enabled.
Manta Canvas: Enabled.
Alias Layers: Disabled.
Modifier Palette: Enabled.
Highbeam: Enabled.
Image tile size: 1024K
Image cache levels: 4
Font Preview: Medium
TextComposer: Latin
The GPU Sniffer crashed on 11/26/2020 at 9:20:04 AM
Display: 1
Display Bounds: top=0, left=0, bottom=2160, right=3840
OpenGL Drawing: Disabled.
OpenGL Allow Old GPUs: Not Detected.
License Type: Subscription
Serial number: 96040971690560074296
GUIDBucket:Composite Core (enable_composite_core): onComposite Core GPU (comp_core_gpu): offComposite Core UI (comp_core_ui): offDocument Graph (enable_doc_graph): off
Application folder: C:Program FilesAdobeAdobe Photoshop 2021
Temporary file path: C:UserstinaAppDataLocalTemp
Photoshop scratch has async I/O enabled
Scratch volume(s):
Startup, 223.7G, 35.8G free
Required Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021RequiredPlug-ins
Primary Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021Plug-ins
Installed components:
A3DLIBS.dll A3DLIB Dynamic Link Library 9.2.0.112
ACE.dll ACE 2020/10/28-12:40:22 113.624934 113.624934
AdbePM.dll PatchMatch 2020/09/29:17:00:06 1.624362 1.624362
AdobeLinguistic.dll Adobe Linguisitc Library developer.633ca06620e3b28a3ccee5d61e3e97bd84fe66b3
AdobeOwl.dll Adobe Owl 5.5.0
AdobePDFL.dll PDFL 2020/08/08-01:12:48 79.395135 79.395135
AdobePDFSettings.dll Adobe PDFSettings 1.07
AdobePIP.dll Adobe Product Improvement Program 8.1.0.68.49183
AdobeSVGAGM.dll AdobeSVGAGM 79.623146 79.623146
AdobeXMP.dll Adobe XMP Core 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPFiles.dll Adobe XMP Files 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPScript.dll Adobe XMP Script 2020/07/10-22:06:53 79.164488 79.164488
adobe_caps.dll Adobe CAPS 10,0,0,6
AGM.dll AGM 2020/10/28-12:40:22 113.624934 113.624934
AID.dll AID DLL 1.0.0.12
AIDE.dll AIDE 2020/08/10-16:30:32 79.623154 79.623154
ARE.dll ARE 2020/10/28-12:40:22 113.624934 113.624934
AXE8SharedExpat.dll AXE8SharedExpat 2020/08/01-01:08:32 79.622927 79.622927
AXEDOMCore.dll AXEDOMCore 2020/08/01-01:08:32 79.622927 79.622927
Bib.dll BIB 2020/10/28-12:40:22 113.624934 113.624934
BIBUtils.dll BIBUtils 2020/10/28-12:40:22 113.624934 113.624934
boost_date_time.dll photoshopdva 12.1.0
boost_filesystem.dll photoshopdva 12.1.0
boost_system.dll photoshopdva 12.1.0
boost_threads.dll photoshopdva 12.1.0
CoolType.dll CoolType 2020/10/28-12:40:22 113.624934 113.624934
CRClient.dll Adobe Crash Reporter Client DLL 3.0.2.0
DirectML.dll DirectML Redistributable Library 1.0.200514-0504.1.redist-dml-2.1.0.dcd3712
dnssd.dll Bonjour 3,0,0,2
dvaaccelerate.dll photoshopdva 12.1.0
dvaappsupport.dll photoshopdva 12.1.0
dvaaudiodevice.dll photoshopdva 12.1.0
dvacore.dll photoshopdva 12.1.0
dvacrashhandler.dll Adobe Audition CC 2017 10.0.0
dvamarshal.dll photoshopdva 12.1.0
dvamediatypes.dll photoshopdva 12.1.0
dvametadata.dll photoshopdva 12.1.0
dvametadataapi.dll photoshopdva 12.1.0
dvametadataui.dll photoshopdva 12.1.0
dvaplayer.dll photoshopdva 12.1.0
dvascripting.dll photoshopdva 12.1.0
dvatransport.dll photoshopdva 12.1.0
dvaui.dll photoshopdva 12.1.0
dvaunittesting.dll photoshopdva 12.1.0
dynamic-torqnative.dll Unified Extensibility Platform uxp-4.1.2.214
dynamiclink.dll photoshopdva 12.1.0
ExtendScript.dll ExtendScript 2019/07/29-10:07:31 82.2 82.2
icucnv66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icudt66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icuuc66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
igestep30.dll IGES Reader 9.3.0.113
ippcc.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcck0.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccl9.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccy8.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcore.dll core. Intel(R) Integrated Performance Primitives. Core Library. 2020.0.1 (r0x35c5ec66)
ippcv.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvk0.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvl9.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvy8.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippi.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippik0.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippil9.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippiy8.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ipps.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsk0.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsl9.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsy8.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippvm.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmk0.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvml9.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmy8.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
JP2KLib.dll JP2KLib 2020/06/29-16:59:49 79.275695 79.275695
libifcoremd.dll Intel(r) Visual Fortran Compiler 10.0 (Update A)
libiomp5md.dll Intel(R) OpenMP* Runtime Library 5.0
libmmd.dll Intel(R) C/C++/Fortran Compiler Mainline
LogSession.dll LogSession 8.1.0.68.49183
mediacoreif.dll photoshopdva 12.1.0
Microsoft.AI.MachineLearning.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
MPS.dll MPS 2020/08/10-16:30:32 79.623129 79.623129
onnxruntime.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
opencv_world440.dll OpenCV library 4.4.0
Photoshop.dll Adobe Photoshop 2021 22.0
Plugin.dll Adobe Photoshop 2021 22.0
PlugPlugExternalObject.dll Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 10.0.0
PlugPlugOwl.dll Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 10.0.0.80
PSCloud.dll 1.0.0.1
PSViews.dll Adobe Photoshop 2021 22.0
ScCore.dll ScCore 2019/07/29-10:07:31 82.2 82.2
SVGRE.dll SVGRE 79.623146 79.623146
svml_dispmd.dll Intel(R) C/C++/Fortran Compiler Mainline
tbb.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
tbbmalloc.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
TfFontMgr.dll FontMgr 9.3.0.113
TfKernel.dll Kernel 9.3.0.113
TFKGEOM.dll Kernel Geom 9.3.0.113
TFUGEOM.dll Adobe, UGeom© 9.3.0.113
VulcanControl.dll Vulcan Application Control Library 6.5.0.000
VulcanMessage5.dll Vulcan Message Library 6.5.0.000
WinRTSupport.dll Adobe Photoshop Windows RT Support 21.0.0.0
WRServices.dll WRServices Build 16.0.0.4539038 16.0.0.4539038
wu3d.dll U3D Writer 9.3.0.113
Unified Extensibility Platform uxp-4.1.2.214
Required plugins:
Accented Edges 22.0 — from the file “Filter Gallery.8bf”
Adaptive Wide Angle 22.0 — from the file “Adaptive Wide Angle.8bf”
Angled Strokes 22.0 — from the file “Filter Gallery.8bf”
Average 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Average.8bf”
Bas Relief 22.0 — from the file “Filter Gallery.8bf”
BMP 22.0 — from the file “Standard MultiPlugin.8bf”
Camera Raw 13.0.2 — from the file “Camera Raw.8bi”
Camera Raw Filter 13.0.2 — from the file “Camera Raw.8bi”
Chalk && Charcoal 22.0 — from the file “Filter Gallery.8bf”
Charcoal 22.0 — from the file “Filter Gallery.8bf”
Chrome 22.0 — from the file “Filter Gallery.8bf”
Cineon 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Cineon.8bi”
Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Color Halftone 22.0 — from the file “Standard MultiPlugin.8bf”
Colored Pencil 22.0 — from the file “Filter Gallery.8bf”
Conté Crayon 22.0 — from the file “Filter Gallery.8bf”
Craquelure 22.0 — from the file “Filter Gallery.8bf”
Crop and Straighten Photos 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “CropPhotosAuto.8li”
Crop and Straighten Photos Filter 22.0 — from the file “Standard MultiPlugin.8bf”
Crosshatch 22.0 — from the file “Filter Gallery.8bf”
Crystallize 22.0 — from the file “Standard MultiPlugin.8bf”
Cutout 22.0 — from the file “Filter Gallery.8bf”
Dark Strokes 22.0 — from the file “Filter Gallery.8bf”
De-Interlace 22.0 — from the file “Standard MultiPlugin.8bf”
Dicom 22.0 — from the file “Dicom.8bi”
Difference Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Diffuse Glow 22.0 — from the file “Filter Gallery.8bf”
Displace 22.0 — from the file “Standard MultiPlugin.8bf”
Dry Brush 22.0 — from the file “Filter Gallery.8bf”
Eazel Acquire 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “EazelAcquire.8ba”
Entropy 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Export Color Lookup Tables 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Extrude 22.0 — from the file “Standard MultiPlugin.8bf”
FastCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “FastCore.8bx”
Fibers 22.0 — from the file “Standard MultiPlugin.8bf”
Film Grain 22.0 — from the file “Filter Gallery.8bf”
Filter Gallery 22.0 — from the file “Filter Gallery.8bf”
Fresco 22.0 — from the file “Filter Gallery.8bf”
Glass 22.0 — from the file “Filter Gallery.8bf”
Glowing Edges 22.0 — from the file “Filter Gallery.8bf”
Grain 22.0 — from the file “Filter Gallery.8bf”
Graphic Pen 22.0 — from the file “Filter Gallery.8bf”
Halftone Pattern 22.0 — from the file “Filter Gallery.8bf”
Halide Bottlenecks 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “HalideBottlenecks.8bx”
HDRMergeUI 22.0 — from the file “HDRMergeUI.8bf”
HSB/HSL 22.0 — from the file “Standard MultiPlugin.8bf”
IFF Format 22.0 — from the file “Standard MultiPlugin.8bf”
IGES 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Ink Outlines 22.0 — from the file “Filter Gallery.8bf”
JPEG 2000 22.0 — from the file “JPEG2000.8bi”
Kurtosis 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Lens Blur 22.0 — from the file “Lens Blur.8bf”
Lens Correction 22.0 — from the file “Lens Correction.8bf”
Lens Flare 22.0 — from the file “Standard MultiPlugin.8bf”
Liquify 22.0 — from the file “Liquify.8bf”
Matlab Operation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Maximum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mean 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Measurement Core 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MeasurementCore.8me”
Median 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mezzotint 22.0 — from the file “Standard MultiPlugin.8bf”
Minimum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
MMXCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MMXCore.8bx”
Mosaic Tiles 22.0 — from the file “Filter Gallery.8bf”
Multiprocessor Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MultiProcessor Support.8bx”
Neon Glow 22.0 — from the file “Filter Gallery.8bf”
Note Paper 22.0 — from the file “Filter Gallery.8bf”
NTSC Colors 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “NTSC Colors.8bf”
Ocean Ripple 22.0 — from the file “Filter Gallery.8bf”
OpenEXR 22.0 — from the file “Standard MultiPlugin.8bf”
Paint Daubs 22.0 — from the file “Filter Gallery.8bf”
Palette Knife 22.0 — from the file “Filter Gallery.8bf”
Patchwork 22.0 — from the file “Filter Gallery.8bf”
Paths to Illustrator 22.0 — from the file “Standard MultiPlugin.8bf”
PCX 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PCX.8bi”
Photocopy 22.0 — from the file “Filter Gallery.8bf”
Picture Package Filter 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Pinch 22.0 — from the file “Standard MultiPlugin.8bf”
Pixar 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Pixar.8bi”
Plaster 22.0 — from the file “Filter Gallery.8bf”
Plastic Wrap 22.0 — from the file “Filter Gallery.8bf”
Pointillize 22.0 — from the file “Standard MultiPlugin.8bf”
Polar Coordinates 22.0 — from the file “Standard MultiPlugin.8bf”
Portable Bit Map 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PBM.8bi”
Poster Edges 22.0 — from the file “Filter Gallery.8bf”
PRC 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Radial Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Radiance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Radiance.8bi”
Range 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Render Color Lookup Grid 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Reticulation 22.0 — from the file “Filter Gallery.8bf”
Ripple 22.0 — from the file “Standard MultiPlugin.8bf”
Rough Pastels 22.0 — from the file “Filter Gallery.8bf”
Save for Web 22.0 — from the file “Save for Web.8be”
ScriptingSupport 22.0 — from the file “ScriptingSupport.8li”
Shake Reduction 22.0 — from the file “Shake Reduction.8bf”
Shear 22.0 — from the file “Standard MultiPlugin.8bf”
Skewness 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Smart Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Smudge Stick 22.0 — from the file “Filter Gallery.8bf”
Solarize 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Solarize.8bf”
Spaces 22.0 — from the file “Spaces.8li”
Spatter 22.0 — from the file “Filter Gallery.8bf”
Spherize 22.0 — from the file “Standard MultiPlugin.8bf”
Sponge 22.0 — from the file “Filter Gallery.8bf”
Sprayed Strokes 22.0 — from the file “Filter Gallery.8bf”
Stained Glass 22.0 — from the file “Filter Gallery.8bf”
Stamp 22.0 — from the file “Filter Gallery.8bf”
Standard Deviation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Sumi-e 22.0 — from the file “Filter Gallery.8bf”
Summation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Targa 22.0 — from the file “Standard MultiPlugin.8bf”
Texturizer 22.0 — from the file “Filter Gallery.8bf”
Tiles 22.0 — from the file “Standard MultiPlugin.8bf”
Torn Edges 22.0 — from the file “Filter Gallery.8bf”
Twirl 22.0 — from the file “Standard MultiPlugin.8bf”
U3D 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Underpainting 22.0 — from the file “Filter Gallery.8bf”
Vanishing Point 22.0 — from the file “VanishingPoint.8bf”
Variance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Water Paper 22.0 — from the file “Filter Gallery.8bf”
Watercolor 22.0 — from the file “Filter Gallery.8bf”
Wave 22.0 — from the file “Standard MultiPlugin.8bf”
WIA Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WIASupport.8li”
Wind 22.0 — from the file “Standard MultiPlugin.8bf”
Wireless Bitmap 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WBMP.8bi”
ZigZag 22.0 — from the file “Standard MultiPlugin.8bf”
Optional and third party plugins: NONE
Duplicate and Disabled plugins: NONE
Plugins that failed to load: NONE
Unified Extensibility Platform — Extensions:
com.adobe.ccx.start (L) 3.8.0.28 — from the file «C:Program FilesCommon FilesAdobe/UXP/Extensionscom.adobe.ccx.start-3.8.0»
CDO: 1.76.10
CmdN: 1.5.18
CDP: 1.100.16
com.adobe.unifiedpanel (L) 1.1.0.24 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.unifiedpanel»
com.adobe.ccx.timeline (L) 2.6.27.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.ccx.timeline»
com.adobe.nfp.gallery (P) 1.2.109.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.nfp.gallery»
com.adobe.photoshop.exportAs (P) 5.1.2.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.exportAs»
com.adobe.photoshop.personalization (L) 1.0.0.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.personalization»
com.adobe.pluginspanel (P) 1.0.50.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.pluginspanel»
Extensions:
Libraries 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288index.html”
New Document 3.4.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.fnft-3.4.0fnft.html?v=3.4.0.16”
com.adobe.inapp.typekit.purchase 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288purchaseTypekit.html”
Home 2.15.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.start-2.15.0index.html?v=2.15.0.7”
com.adobe.capture.extension 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionscapturecapture.html”
com.adobe.stock.panel.licensing-embedded 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionsstock-panel-licensingindex.html”
Adobe Color Themes 6.1.0 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.KulerPanel.htmlindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Installed TWAIN devices: NONE
Adobe Photoshop Version: 22.0.1 20201106.r.73 2020/11/06: 70b4743b574 x64
Number of Launches: 2
Operating System: Windows 10 64-bit
Version: 10 or greater 10.0.19041.546
System architecture: Intel CPU Family:6, Model:14, Stepping:9 with MMX, SSE Integer, SSE FP, SSE2, SSE3, SSE4.1, SSE4.2, AVX, AVX2, HyperThreading
Physical processor count: 4
Logical processor count: 8
Processor speed: 3600 MHz
Built-in memory: 24476 MB
Free memory: 15684 MB
Memory available to Photoshop: 22406 MB
Memory used by Photoshop: 70 %
ACP.local Status:
— SDK Version: 1.34.1.4
— Core Sync Status: Reachable and compatible
— Core Sync Running: 4.3.61.1
— Min Core Sync Required: 4.3.28.24
ACPL Cache Config:
— Time to Live: 5184000 seconds
— Max Size: 20480 MB
— Purge Percentage: 50%
— Threshold Percentage: 85%
— Purge Interval: 60 seconds
Native GPU: Enabled.
Manta Canvas: Enabled.
Alias Layers: Disabled.
Modifier Palette: Enabled.
Highbeam: Enabled.
Image tile size: 1024K
Image cache levels: 4
Font Preview: Medium
TextComposer: Latin
The GPU Sniffer crashed on 11/26/2020 at 9:20:04 AM
Display: 1
Display Bounds: top=0, left=0, bottom=2160, right=3840
OpenGL Drawing: Disabled.
OpenGL Allow Old GPUs: Not Detected.
License Type: Subscription
Serial number: 96040971690560074296
GUIDBucket:Composite Core (enable_composite_core): onComposite Core GPU (comp_core_gpu): offComposite Core UI (comp_core_ui): offDocument Graph (enable_doc_graph): off
Application folder: C:Program FilesAdobeAdobe Photoshop 2021
Temporary file path: C:UserstinaAppDataLocalTemp
Photoshop scratch has async I/O enabled
Scratch volume(s):
Startup, 223.7G, 35.8G free
Required Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021RequiredPlug-ins
Primary Plugins folder: C:Program FilesAdobeAdobe Photoshop 2021Plug-ins
Installed components:
A3DLIBS.dll A3DLIB Dynamic Link Library 9.2.0.112
ACE.dll ACE 2020/10/28-12:40:22 113.624934 113.624934
AdbePM.dll PatchMatch 2020/09/29:17:00:06 1.624362 1.624362
AdobeLinguistic.dll Adobe Linguisitc Library developer.633ca06620e3b28a3ccee5d61e3e97bd84fe66b3
AdobeOwl.dll Adobe Owl 5.5.0
AdobePDFL.dll PDFL 2020/08/08-01:12:48 79.395135 79.395135
AdobePDFSettings.dll Adobe PDFSettings 1.07
AdobePIP.dll Adobe Product Improvement Program 8.1.0.68.49183
AdobeSVGAGM.dll AdobeSVGAGM 79.623146 79.623146
AdobeXMP.dll Adobe XMP Core 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPFiles.dll Adobe XMP Files 2020/07/10-22:06:53 79.164488 79.164488
AdobeXMPScript.dll Adobe XMP Script 2020/07/10-22:06:53 79.164488 79.164488
adobe_caps.dll Adobe CAPS 10,0,0,6
AGM.dll AGM 2020/10/28-12:40:22 113.624934 113.624934
AID.dll AID DLL 1.0.0.12
AIDE.dll AIDE 2020/08/10-16:30:32 79.623154 79.623154
ARE.dll ARE 2020/10/28-12:40:22 113.624934 113.624934
AXE8SharedExpat.dll AXE8SharedExpat 2020/08/01-01:08:32 79.622927 79.622927
AXEDOMCore.dll AXEDOMCore 2020/08/01-01:08:32 79.622927 79.622927
Bib.dll BIB 2020/10/28-12:40:22 113.624934 113.624934
BIBUtils.dll BIBUtils 2020/10/28-12:40:22 113.624934 113.624934
boost_date_time.dll photoshopdva 12.1.0
boost_filesystem.dll photoshopdva 12.1.0
boost_system.dll photoshopdva 12.1.0
boost_threads.dll photoshopdva 12.1.0
CoolType.dll CoolType 2020/10/28-12:40:22 113.624934 113.624934
CRClient.dll Adobe Crash Reporter Client DLL 3.0.2.0
DirectML.dll DirectML Redistributable Library 1.0.200514-0504.1.redist-dml-2.1.0.dcd3712
dnssd.dll Bonjour 3,0,0,2
dvaaccelerate.dll photoshopdva 12.1.0
dvaappsupport.dll photoshopdva 12.1.0
dvaaudiodevice.dll photoshopdva 12.1.0
dvacore.dll photoshopdva 12.1.0
dvacrashhandler.dll Adobe Audition CC 2017 10.0.0
dvamarshal.dll photoshopdva 12.1.0
dvamediatypes.dll photoshopdva 12.1.0
dvametadata.dll photoshopdva 12.1.0
dvametadataapi.dll photoshopdva 12.1.0
dvametadataui.dll photoshopdva 12.1.0
dvaplayer.dll photoshopdva 12.1.0
dvascripting.dll photoshopdva 12.1.0
dvatransport.dll photoshopdva 12.1.0
dvaui.dll photoshopdva 12.1.0
dvaunittesting.dll photoshopdva 12.1.0
dynamic-torqnative.dll Unified Extensibility Platform uxp-4.1.2.214
dynamiclink.dll photoshopdva 12.1.0
ExtendScript.dll ExtendScript 2019/07/29-10:07:31 82.2 82.2
icucnv66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icudt66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
icuuc66.dll International Components for Unicode Build dev.1a8973dfe99250a665e321702b3d76963c65bdfe
igestep30.dll IGES Reader 9.3.0.113
ippcc.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcck0.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccl9.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippccy8.dll ippCC. Intel(R) Integrated Performance Primitives. Color Conversion. 2020.0.1 (r0x35c5ec66)
ippcore.dll core. Intel(R) Integrated Performance Primitives. Core Library. 2020.0.1 (r0x35c5ec66)
ippcv.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvk0.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvl9.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippcvy8.dll ippCV. Intel(R) Integrated Performance Primitives. Computer Vision. 2020.0.1 (r0x35c5ec66)
ippi.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippik0.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippil9.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ippiy8.dll ippIP. Intel(R) Integrated Performance Primitives. Image Processing. 2020.0.1 (r0x35c5ec66)
ipps.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsk0.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsl9.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippsy8.dll ippSP. Intel(R) Integrated Performance Primitives. Signal Processing. 2020.0.1 (r0x35c5ec66)
ippvm.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmk0.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvml9.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
ippvmy8.dll ippVM. Intel(R) Integrated Performance Primitives. Vector Math. 2020.0.1 (r0x35c5ec66)
JP2KLib.dll JP2KLib 2020/06/29-16:59:49 79.275695 79.275695
libifcoremd.dll Intel(r) Visual Fortran Compiler 10.0 (Update A)
libiomp5md.dll Intel(R) OpenMP* Runtime Library 5.0
libmmd.dll Intel(R) C/C++/Fortran Compiler Mainline
LogSession.dll LogSession 8.1.0.68.49183
mediacoreif.dll photoshopdva 12.1.0
Microsoft.AI.MachineLearning.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
MPS.dll MPS 2020/08/10-16:30:32 79.623129 79.623129
onnxruntime.dll Microsoft® Windows® Operating System 1.3.20200515.1.eb5da13
opencv_world440.dll OpenCV library 4.4.0
Photoshop.dll Adobe Photoshop 2021 22.0
Plugin.dll Adobe Photoshop 2021 22.0
PlugPlugExternalObject.dll Adobe(R) CEP PlugPlugExternalObject Standard Dll (64 bit) 10.0.0
PlugPlugOwl.dll Adobe(R) CSXS PlugPlugOwl Standard Dll (64 bit) 10.0.0.80
PSCloud.dll 1.0.0.1
PSViews.dll Adobe Photoshop 2021 22.0
ScCore.dll ScCore 2019/07/29-10:07:31 82.2 82.2
SVGRE.dll SVGRE 79.623146 79.623146
svml_dispmd.dll Intel(R) C/C++/Fortran Compiler Mainline
tbb.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
tbbmalloc.dll Intel(R) Threading Building Blocks for Windows 2020, 2, 2020, 0311
TfFontMgr.dll FontMgr 9.3.0.113
TfKernel.dll Kernel 9.3.0.113
TFKGEOM.dll Kernel Geom 9.3.0.113
TFUGEOM.dll Adobe, UGeom© 9.3.0.113
VulcanControl.dll Vulcan Application Control Library 6.5.0.000
VulcanMessage5.dll Vulcan Message Library 6.5.0.000
WinRTSupport.dll Adobe Photoshop Windows RT Support 21.0.0.0
WRServices.dll WRServices Build 16.0.0.4539038 16.0.0.4539038
wu3d.dll U3D Writer 9.3.0.113
Unified Extensibility Platform uxp-4.1.2.214
Required plugins:
Accented Edges 22.0 — from the file “Filter Gallery.8bf”
Adaptive Wide Angle 22.0 — from the file “Adaptive Wide Angle.8bf”
Angled Strokes 22.0 — from the file “Filter Gallery.8bf”
Average 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Average.8bf”
Bas Relief 22.0 — from the file “Filter Gallery.8bf”
BMP 22.0 — from the file “Standard MultiPlugin.8bf”
Camera Raw 13.0.2 — from the file “Camera Raw.8bi”
Camera Raw Filter 13.0.2 — from the file “Camera Raw.8bi”
Chalk && Charcoal 22.0 — from the file “Filter Gallery.8bf”
Charcoal 22.0 — from the file “Filter Gallery.8bf”
Chrome 22.0 — from the file “Filter Gallery.8bf”
Cineon 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Cineon.8bi”
Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Color Halftone 22.0 — from the file “Standard MultiPlugin.8bf”
Colored Pencil 22.0 — from the file “Filter Gallery.8bf”
Conté Crayon 22.0 — from the file “Filter Gallery.8bf”
Craquelure 22.0 — from the file “Filter Gallery.8bf”
Crop and Straighten Photos 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “CropPhotosAuto.8li”
Crop and Straighten Photos Filter 22.0 — from the file “Standard MultiPlugin.8bf”
Crosshatch 22.0 — from the file “Filter Gallery.8bf”
Crystallize 22.0 — from the file “Standard MultiPlugin.8bf”
Cutout 22.0 — from the file “Filter Gallery.8bf”
Dark Strokes 22.0 — from the file “Filter Gallery.8bf”
De-Interlace 22.0 — from the file “Standard MultiPlugin.8bf”
Dicom 22.0 — from the file “Dicom.8bi”
Difference Clouds 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Clouds.8bf”
Diffuse Glow 22.0 — from the file “Filter Gallery.8bf”
Displace 22.0 — from the file “Standard MultiPlugin.8bf”
Dry Brush 22.0 — from the file “Filter Gallery.8bf”
Eazel Acquire 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “EazelAcquire.8ba”
Entropy 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Export Color Lookup Tables 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Extrude 22.0 — from the file “Standard MultiPlugin.8bf”
FastCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “FastCore.8bx”
Fibers 22.0 — from the file “Standard MultiPlugin.8bf”
Film Grain 22.0 — from the file “Filter Gallery.8bf”
Filter Gallery 22.0 — from the file “Filter Gallery.8bf”
Fresco 22.0 — from the file “Filter Gallery.8bf”
Glass 22.0 — from the file “Filter Gallery.8bf”
Glowing Edges 22.0 — from the file “Filter Gallery.8bf”
Grain 22.0 — from the file “Filter Gallery.8bf”
Graphic Pen 22.0 — from the file “Filter Gallery.8bf”
Halftone Pattern 22.0 — from the file “Filter Gallery.8bf”
Halide Bottlenecks 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “HalideBottlenecks.8bx”
HDRMergeUI 22.0 — from the file “HDRMergeUI.8bf”
HSB/HSL 22.0 — from the file “Standard MultiPlugin.8bf”
IFF Format 22.0 — from the file “Standard MultiPlugin.8bf”
IGES 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Ink Outlines 22.0 — from the file “Filter Gallery.8bf”
JPEG 2000 22.0 — from the file “JPEG2000.8bi”
Kurtosis 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Lens Blur 22.0 — from the file “Lens Blur.8bf”
Lens Correction 22.0 — from the file “Lens Correction.8bf”
Lens Flare 22.0 — from the file “Standard MultiPlugin.8bf”
Liquify 22.0 — from the file “Liquify.8bf”
Matlab Operation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Maximum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mean 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Measurement Core 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MeasurementCore.8me”
Median 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Mezzotint 22.0 — from the file “Standard MultiPlugin.8bf”
Minimum 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
MMXCore Routines 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MMXCore.8bx”
Mosaic Tiles 22.0 — from the file “Filter Gallery.8bf”
Multiprocessor Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “MultiProcessor Support.8bx”
Neon Glow 22.0 — from the file “Filter Gallery.8bf”
Note Paper 22.0 — from the file “Filter Gallery.8bf”
NTSC Colors 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “NTSC Colors.8bf”
Ocean Ripple 22.0 — from the file “Filter Gallery.8bf”
OpenEXR 22.0 — from the file “Standard MultiPlugin.8bf”
Paint Daubs 22.0 — from the file “Filter Gallery.8bf”
Palette Knife 22.0 — from the file “Filter Gallery.8bf”
Patchwork 22.0 — from the file “Filter Gallery.8bf”
Paths to Illustrator 22.0 — from the file “Standard MultiPlugin.8bf”
PCX 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PCX.8bi”
Photocopy 22.0 — from the file “Filter Gallery.8bf”
Picture Package Filter 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “ChannelPort.8bf”
Pinch 22.0 — from the file “Standard MultiPlugin.8bf”
Pixar 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Pixar.8bi”
Plaster 22.0 — from the file “Filter Gallery.8bf”
Plastic Wrap 22.0 — from the file “Filter Gallery.8bf”
Pointillize 22.0 — from the file “Standard MultiPlugin.8bf”
Polar Coordinates 22.0 — from the file “Standard MultiPlugin.8bf”
Portable Bit Map 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “PBM.8bi”
Poster Edges 22.0 — from the file “Filter Gallery.8bf”
PRC 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Radial Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Radiance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Radiance.8bi”
Range 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Render Color Lookup Grid 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Export3DLUT.8be”
Reticulation 22.0 — from the file “Filter Gallery.8bf”
Ripple 22.0 — from the file “Standard MultiPlugin.8bf”
Rough Pastels 22.0 — from the file “Filter Gallery.8bf”
Save for Web 22.0 — from the file “Save for Web.8be”
ScriptingSupport 22.0 — from the file “ScriptingSupport.8li”
Shake Reduction 22.0 — from the file “Shake Reduction.8bf”
Shear 22.0 — from the file “Standard MultiPlugin.8bf”
Skewness 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Smart Blur 22.0 — from the file “Standard MultiPlugin.8bf”
Smudge Stick 22.0 — from the file “Filter Gallery.8bf”
Solarize 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “Solarize.8bf”
Spaces 22.0 — from the file “Spaces.8li”
Spatter 22.0 — from the file “Filter Gallery.8bf”
Spherize 22.0 — from the file “Standard MultiPlugin.8bf”
Sponge 22.0 — from the file “Filter Gallery.8bf”
Sprayed Strokes 22.0 — from the file “Filter Gallery.8bf”
Stained Glass 22.0 — from the file “Filter Gallery.8bf”
Stamp 22.0 — from the file “Filter Gallery.8bf”
Standard Deviation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Sumi-e 22.0 — from the file “Filter Gallery.8bf”
Summation 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Targa 22.0 — from the file “Standard MultiPlugin.8bf”
Texturizer 22.0 — from the file “Filter Gallery.8bf”
Tiles 22.0 — from the file “Standard MultiPlugin.8bf”
Torn Edges 22.0 — from the file “Filter Gallery.8bf”
Twirl 22.0 — from the file “Standard MultiPlugin.8bf”
U3D 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “U3D.8bi”
Underpainting 22.0 — from the file “Filter Gallery.8bf”
Vanishing Point 22.0 — from the file “VanishingPoint.8bf”
Variance 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “statistics.8ba”
Water Paper 22.0 — from the file “Filter Gallery.8bf”
Watercolor 22.0 — from the file “Filter Gallery.8bf”
Wave 22.0 — from the file “Standard MultiPlugin.8bf”
WIA Support 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WIASupport.8li”
Wind 22.0 — from the file “Standard MultiPlugin.8bf”
Wireless Bitmap 22.0 (20201106.r.73 2020/11/06: 70b4743b574) — from the file “WBMP.8bi”
ZigZag 22.0 — from the file “Standard MultiPlugin.8bf”
Optional and third party plugins: NONE
Duplicate and Disabled plugins: NONE
Plugins that failed to load: NONE
Unified Extensibility Platform — Extensions:
com.adobe.ccx.start (L) 3.8.0.28 — from the file «C:Program FilesCommon FilesAdobe/UXP/Extensionscom.adobe.ccx.start-3.8.0»
CDO: 1.76.10
CmdN: 1.5.18
CDP: 1.100.16
com.adobe.unifiedpanel (L) 1.1.0.24 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.unifiedpanel»
com.adobe.ccx.timeline (L) 2.6.27.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.ccx.timeline»
com.adobe.nfp.gallery (P) 1.2.109.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.nfp.gallery»
com.adobe.photoshop.exportAs (P) 5.1.2.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.exportAs»
com.adobe.photoshop.personalization (L) 1.0.0.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.photoshop.personalization»
com.adobe.pluginspanel (P) 1.0.50.0 — from the file «C:Program FilesAdobeAdobe Photoshop 2021RequiredUXP/com.adobe.pluginspanel»
Extensions:
Libraries 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288index.html”
New Document 3.4.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.fnft-3.4.0fnft.html?v=3.4.0.16”
com.adobe.inapp.typekit.purchase 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288purchaseTypekit.html”
Home 2.15.0 — from the file “C:Program Files (x86)Common FilesAdobeCEPextensionscom.adobe.ccx.start-2.15.0index.html?v=2.15.0.7”
com.adobe.capture.extension 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionscapturecapture.html”
com.adobe.stock.panel.licensing-embedded 1.0.0 — from the file “C:Program FilesCommon FilesAdobeCEPextensionsCC_LIBRARIES_PANEL_EXTENSION_3_9_288extensionsstock-panel-licensingindex.html”
Adobe Color Themes 6.1.0 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.KulerPanel.htmlindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Export As 4.8.13 — from the file “C:Program FilesAdobeAdobe Photoshop 2021RequiredCEPextensionscom.adobe.photoshop.cremaindex.html”
Installed TWAIN devices: NONE
elstaci wrote:
This User in a previous AMD Forum Thread concerning a Consumer GPU card not a Professional GPU card with the same error 126 and fix that you tried with Command Prompt was fixed by using DDU in Safe mode. Then reinstalling the AMD Driver again.Can’t Update or Install AMD Driver
If you use DDU (Display Driver Uninstaller) you need to have the internet disconnected and in Safe Mode. Once the computer boots up again, install the AMD Driver again with the internet still disconnected. Once it is installed and working correctly you can reconnect the internet.
See if that fixes your error 126 or not.
elstaci,
I tried your suggested solution.
I downloaded DDU, rebooted computer into safe mode with network cable unplugged, and performed the uninstall with the tool. The computer rebooted with the network cable still unplugged.
I was able to get past the initial package extraction unlike before from the AMD driver installer and tried proceeding installing with their driver software. The installation stopped with an error saying it «has been partially installed. General error during package installation.» (log info below).
Thanks,
-UI 10/03/19 11:29:06 install
Advanced Micro Devices, Inc.
0xaae0
0x1002
0xaae0
0x1028
0x040300
0x00
AMD Radeon Graphics Advanced Micro Devices, Inc.
0x6995
0x1002
0x0b0c
0x1028
0x030000
0x00
Microsoft Visual C++ 2017 Redistributable (x64)
Succeed
14.14.26429.0
9
AMD Display Driver
Succeed
26.20.11024.6001
90
AMD Problem Report Wizard
Fail
3.1.723
20
AMD HDMI Audio Driver
Succeed
10.0.1.12
1
AMD User Experience Program
Fail
1910.24.06.725
20
AMD Radeon Pro Settings
Fail
2019.0725.0533.10011
150
AMD FirePro Control Center
Fail
2019.0725.0533.10011
150
Hardware information
Existing packages
Packages for install
Packages for uninstall
Other detected devices
Error messages
Name
Manufacturer
Chip type
Device ID
Other hardware
Download Failed
Success
Fail
Vendor ID
Class Code
Revision ID
Subsystem ID
Subsystem vendor ID
Install Manager
Installation Report
Final Status:
Version of Item:
Size:
Mbytes
Package Manager Install Package Failure!
Package Manager Install Package Failure!
Package Manager Install Package Failure!
Package Manager Install Package Failure!