Jump to content
How to Install Plugins ×

RawLAB - Raw File loader with GUI (2023-03-21)


operamint

Recommended Posts

RAW file importer plugin for Paint.NET based on LibRaw (dcraw_emu.exe)

 

Features

  • User can optionally adjust all input settings supported by DcRaw in the GUI, and reload image with modified DcRaw settings.
  • Displays raw image metadata for the last raw image loaded into Paint.NET
  • Non-intrusive: GUI can optionally be started minimized
  • Supports 35 raw file extensions: .3fr, .arw, .bay, .cf2, .cr2, .cr3, .crw, .dc2, .dcr, .dng, .erf, .fff, .iiq, .k25, .kdc, .mdc, .mef, .mfw, .mos, .mrw, .nef, .nrw, .orf, .pef, .ptx, .pxn, .r3d, .raf, .raw, .rw2, .rwl, .sr2, .srf, .srw, .x3f

 

image.png.00be17bc9bb284be5e0676b92de5bb59.pngimage.png.3be4688d9c1d209a204aba5f5c7e6734.png

 

Changes in 1.1.1.1

  • Fixed broken Custom multipliers in White balance settings

 

Previous changes

  • Updated the plugin, works with paint.net 5
  • Re-added Extract thumbnail option, using simple_dcraw.exe -e
  • Displays camera type, date, ISO speed, shutter, aperture and focal length at the bottom of dialog.
  • Reverted to display DcRaw options as default, raw file metadata in secondary tab.
  • Removed greyed-out Reload button, and cleanup in code.
  • Switched from original dcraw.exe to LibRaw. Supports most raw formats, including Canon .cr3
  • Larger metainfo window, and small load time optimization/cleanup
  • Added "Start minimized" checkbox (on About tab), instead of remembering window state from last session.

 

Installation

 

Useful links

 

Edited by operamint
New version uploaded.
  • Upvote 1
Link to comment
Share on other sites

  • 3 weeks later...
  • 3 months later...
On 05/06/2016 at 2:07 AM, operamint said:

FYI, the configuration files are saved in the <my documents>\paint.net User Files\FileType Presets\RAWFile folder.

 

Love the plugin, but I hate apps that clutter up the Docs folder. The Docs folder is for my docs only! Can you please update the plugin to save in a system approved location for settings, such as %LocalAppData%? Thanks!

 

Edit: I see that %LocalAppData%\Paint.NET already exists, so how about %LocalAppData%\Paint.NET\FileTypes?

Edited by stan
Link to comment
Share on other sites

  • 9 months later...

Hi,

 

Just upgraded to 4.2.4 (from 4.0.12, I think)  and now getting the following error when attempting to open a RAW file. (Specifically a .nef)  Details from the error message are:

 

Application version: paint.net 4.2.4

System.NullReferenceException: Object reference not set to an instance of an object.
   at RAWFile.RAWFiletype.OnLoad(Stream input)
   at PaintDotNet.FileType.Load(Stream input) in D:\src\pdn\src\Data\FileType.cs:line 511
   at PaintDotNet.Functional.Func.Eval[T1,TRet](Func`2 f, T1 arg1) in D:\src\pdn\src\Base\Functional\Func.cs:line 158

 

I'll revert to the earlier version, posting for awareness as much as anything

Link to comment
Share on other sites

4 hours ago, pdnFan said:

getting the following error when attempting to open a RAW file.

 

This plugin uses Reflection to access a private field that no longer exists in Paint.NET.

 

FieldInfo fi = input.GetType().GetField("stream", BindingFlags.NonPublic | BindingFlags.Instance);
FileStream fs = fi.GetValue(input) as FileStream;

 

This is not a bug in Paint.NET. The plugin will need to updated.

This is why there are rules; to protect plugins from becoming broken like this.

  • Like 1

(September 25th, 2023)  Sorry about any broken images in my posts. I am aware of the issue.

bp-sig.png
My Gallery  |  My Plugin Pack

Layman's Guide to CodeLab

Link to comment
Share on other sites

I've just bought a Canon M50 - this camera is using a new raw-file extension  - .CR3 -

Will this plugin be upgraded to support this fileformat?

 

Sincerely

Arild 

Link to comment
Share on other sites

I uploaded a new version that fixes the problem. I "updated" the "cheat" to get hold of the filename of the input stream, otherwise the "Reopen" feature will do nothing as the plugin does not know the name of the input file (admittedly not vital as it can be reopened from Pdn). However, if/when the cheat no longer works, it fallbacks to use "copy-stream-to-tempfile-and-load-it", so the plugin will still work fine. It will still function with older Pdn versions as well.

 

As for .CR3 support, I am afraid we have to wait until someone adds support for that in dcraw or any other tool that can easily be called by the plugin.

 

 

 

 

  • Upvote 1
Link to comment
Share on other sites

The Canon EOS M50 went on sale on March 23, 2018. The Canon CR3 codec has not been an independent download since 2013.
In order to get the codec plugin for Windows 10 you can to install the Canon Digital Photo Professional software:

dppw4.10.50-installer.zip

I have the Nikon D3500 which uses the NEF RAW codec. I did not get my NEF photos to appear as thumbnail icons nor in the Picture Viewer in Windows 10 until I installed the Nikon codec.

Edited by HyReZ


 

Link to comment
Share on other sites

  • 3 weeks later...

I tried opening DNG files from my Pixel 3 with no avail. I get the following error:

Application version: paint.net 4.2.5



System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified
   at System.Diagnostics.Process.StartWithShellExecuteEx(ProcessStartInfo startInfo)
   at RAWFile.RAWFiletype.ExecuteCommand(String startDir, String batFile, String args)
   at RAWFile.RAWFiletype.LoadRAW(String file)
   at RAWFile.RAWFiletype.LoadImageByCopy(Stream input)
   at RAWFile.RAWFiletype.LoadImage(Stream input)
   at RAWFile.RAWFiletype.OnLoad(Stream input)
   at PaintDotNet.FileType.Load(Stream input) in D:\src\pdn\src\Data\FileType.cs:line 512
   at PaintDotNet.Functional.Func.Eval[T1,TRet](Func`2 f, T1 arg1) in D:\src\pdn\src\Base\Functional\Func.cs:line 158

What is going on?

Link to comment
Share on other sites

3 minutes ago, crispycat said:

System.ComponentModel.Win32Exception (0x80004005): The system cannot find the file specified

 

Looks like you didn't install DCRAW. Please read the installation instructions for this plugin.

(September 25th, 2023)  Sorry about any broken images in my posts. I am aware of the issue.

bp-sig.png
My Gallery  |  My Plugin Pack

Layman's Guide to CodeLab

Link to comment
Share on other sites

Hi
I got a new Huawei Phone and need to load the DNG Files and EDIT the Images. I saw many Videos where People Edit such Images who look amazing.
The brought some details out who cant see in an Traditional .jpg Files.

I tried to install it and put them in the Folder but I cant see anything in Paint.Net so where should be the Import Tool?
Thanks

Link to comment
Share on other sites

These are the installation instructions:

On 6/5/2016 at 8:37 AM, operamint said:

Installation

  • Get latest 64-bit DCRAW from the link below. Rename dcraw64.exe to dcraw.exe.
  • Copy dcraw.exe, RAWFile.dll, RAWFileLAB.exe and raw2dng.bat into the FileTypes plugin folder <my documents>\paint.net App Files\FileTypes
  • FYI, the configuration files are saved in the folder <my documents>\paint.net User Files\FileType Presets\RAWFile

 

If you don't have the requisite FileTypes folder - you may need to create it. Instructions can be found here: https://www.getpaint.net/doc/latest/InstallPlugins.html#4

 

As a FileType plugin - this will only show up as an option in the Load/Save dialog (you won't find it in the menus).

Link to comment
Share on other sites

  • operamint changed the title to RAWFileLAB 1.0.5.1 - RAW File reader with GUI (2020-09-18)

@operamint, without a new post members and users will not be aware of the latest update. New posts alert everyone that there has been some change.

Editing the first post and changing the topic title does not, usually.

 

In the future, I think it's better for you to make a new post in this topic to let people know of any developments on the plugin.  

  • Upvote 1

Xkds4Lh.png

Link to comment
Share on other sites

  • 9 months later...

I get an error when I try to open a CR3 file:

 

Exception:

System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt.
   bei RAWFile.RAWFiletype.ExecuteDCRAW(Process process, String dcrawArgs, String file, XmlDocument xmlDoc)
   bei RAWFile.RAWFiletype.LoadRAW(String file)
   bei RAWFile.RAWFiletype.LoadImageByCopy(Stream input)
   bei RAWFile.RAWFiletype.LoadImage(Stream input)
   bei RAWFile.RAWFiletype.OnLoad(Stream input)
   bei PaintDotNet.FileType.Load(Stream input) in D:\src\pdn\src\Data\FileType.cs:Zeile 496.
   bei PaintDotNet.Functional.Func.Eval[T1,TRet](Func`2 f, T1 arg1) in D:\src\pdn\src\Base\Functional\Func.cs:Zeile 158.

Diagnostics:

Application                                   paint.net v4.2.16 (Final 4.216.7781.39227)
Build Date                                    Mittwoch, 21. April 2021
Install type                                  AppX

Hardwarebeschleunigtes Rendern (GPU)          True
Animationen                                   True
DPI                                           96 (1,00x scale)
Sprache                                       de

OS                                            Windows 10 Pro x64 (10.0.19043.0) (0x30)
.NET Runtime                                  4.0.30319.42000
Physical Memory                               14.265 MB

CPU                                           AMD Ryzen 5 3400G with Radeon Vega Graphics    
    Speed                                     ~3693 MHz
    Cores / Threads                           4 / 8
    Features                                  SSE, SSE2, SSE3, SSSE3, SSE4_1, SSE4_2, AVX, AVX2

Video Card                                    AMD Radeon(TM) RX Vega 11 Graphics
    Dedicated Video RAM                       2.032 MB
    Dedicated System RAM                      0 MB
    Shared System RAM                         7.132 MB
    Vendor ID                                 0x1002
    Device ID                                 0x15D8
    Subsystem ID                              0x876B1043
    Revision                                  200
    LUID                                      0x00011FA3
    Flags                                     AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                       DmaBufferBoundary
    Compute Preemption                        DmaBufferBoundary
    Outputs                                   1
    Feature Level                             Direct3D_12_1
    DXGI Formats                              A8_UNorm, B8G8R8A8_UNorm, R16G16B16A16_UNorm, R16G16B16A16_Float, R32G32B32A32_Float
    Buffer Precision                          UNorm8bpc, UNorm8bpcSrgb, UNorm16bpc, Float16bpc, Float32bpc

Video Card                                    Microsoft Basic Render Driver
    Dedicated Video RAM                       0 MB
    Dedicated System RAM                      0 MB
    Shared System RAM                         7.132 MB
    Vendor ID                                 0x1414
    Device ID                                 0x008C
    Subsystem ID                              0x00000000
    Revision                                  0
    LUID                                      0x000129B8
    Flags                                     Software, AcgCompatible, SupportMonitoredFences, KeyedMutexConformance
    Graphics Preemption                       InstructionBoundary
    Compute Preemption                        InstructionBoundary
    Outputs                                   0
    Feature Level                             Direct3D_12_1
    DXGI Formats                              A8_UNorm, B8G8R8A8_UNorm, R16G16B16A16_UNorm, R16G16B16A16_Float, R32G32B32A32_Float
    Buffer Precision                          UNorm8bpc, UNorm8bpcSrgb, UNorm16bpc, Float16bpc, Float32bpc

Managed assemblies                            34
    mscorlib                                  mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    PaintDotNet                               PaintDotNet, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    PaintDotNet.SystemLayer                   PaintDotNet.SystemLayer, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    System.Windows.Forms                      System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System                                    System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System.Drawing                            System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Base                          PaintDotNet.Base, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    System.Core                               System.Core, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    PaintDotNet.Core                          PaintDotNet.Core, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    PaintDotNet.Resources                     PaintDotNet.Resources, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    PaintDotNet.SystemLayer.Native.x64        PaintDotNet.SystemLayer.Native.x64, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    System.Configuration                      System.Configuration, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    WindowsBase                               WindowsBase, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    PaintDotNet.Data                          PaintDotNet.Data, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    PresentationFramework                     PresentationFramework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    PresentationCore                          PresentationCore, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35
    System.Xaml                               System.Xaml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System.Xml                                System.Xml, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
    System.Runtime.CompilerServices.Unsafe    System.Runtime.CompilerServices.Unsafe, Version=4.0.6.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    PaintDotNet.Framework                     PaintDotNet.Framework, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    PaintDotNet.Effects                       PaintDotNet.Effects, Version=4.216.7781.39227, Culture=neutral, PublicKeyToken=null
    ChromaKeyPlugin                           ChromaKeyPlugin, Version=1.0.0.2, Culture=neutral, PublicKeyToken=null
    RAWFile                                   RAWFile, Version=1.0.5.1, Culture=neutral, PublicKeyToken=null
    WebPFileType                              WebPFileType, Version=1.3.4.0, Culture=neutral, PublicKeyToken=null
    AvifFileType                              AvifFileType, Version=1.1.11.0, Culture=neutral, PublicKeyToken=null
    DdsFileTypePlus                           DdsFileTypePlus, Version=1.10.9.0, Culture=neutral, PublicKeyToken=null
    System.Windows.Forms.resources            System.Windows.Forms.resources, Version=4.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089
    System.Collections.Immutable              System.Collections.Immutable, Version=1.2.5.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a
    System.Buffers                            System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
    System.Memory                             System.Memory, Version=4.0.1.1, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51
    CK_Plugin                                 CK_Plugin, Version=1.5.5345.24808, Culture=neutral, PublicKeyToken=null
    GS_Plugin                                 GS_Plugin, Version=1.3.5345.24516, Culture=neutral, PublicKeyToken=null
    mscorlib.resources                        mscorlib.resources, Version=4.0.0.0, Culture=de, PublicKeyToken=b77a5c561934e089
    System.Drawing.resources                  System.Drawing.resources, Version=4.0.0.0, Culture=de, PublicKeyToken=b03f5f7f11d50a3a

Native modules                                129
    PaintDotNet.exe                           C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\PaintDotNet.exe, version=4.216.7781.39227
    ntdll.dll                                 C:\WINDOWS\SYSTEM32\ntdll.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    MSCOREE.DLL                               C:\WINDOWS\SYSTEM32\MSCOREE.DLL, version=10.0.19041.1 (WinBuild.160101.0800)
    KERNEL32.dll                              C:\WINDOWS\System32\KERNEL32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    KERNELBASE.dll                            C:\WINDOWS\System32\KERNELBASE.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    ADVAPI32.dll                              C:\WINDOWS\System32\ADVAPI32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    msvcrt.dll                                C:\WINDOWS\System32\msvcrt.dll, version=7.0.19041.546 (WinBuild.160101.0800)
    sechost.dll                               C:\WINDOWS\System32\sechost.dll, version=10.0.19041.1 (WinBuild.160101.0800)
    RPCRT4.dll                                C:\WINDOWS\System32\RPCRT4.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    mscoreei.dll                              C:\Windows\Microsoft.NET\Framework64\v4.0.30319\mscoreei.dll, version=4.8.4180.0 built by: NET48REL1LAST_B
    SHLWAPI.dll                               C:\WINDOWS\System32\SHLWAPI.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    kernel.appcore.dll                        C:\WINDOWS\SYSTEM32\kernel.appcore.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    VERSION.dll                               C:\WINDOWS\SYSTEM32\VERSION.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    clr.dll                                   C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clr.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    USER32.dll                                C:\WINDOWS\System32\USER32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    win32u.dll                                C:\WINDOWS\System32\win32u.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    GDI32.dll                                 C:\WINDOWS\System32\GDI32.dll, version=10.0.19041.746 (WinBuild.160101.0800)
    gdi32full.dll                             C:\WINDOWS\System32\gdi32full.dll, version=10.0.19041.928 (WinBuild.160101.0800)
    msvcp_win.dll                             C:\WINDOWS\System32\msvcp_win.dll, version=10.0.19041.789 (WinBuild.160101.0800)
    ucrtbase.dll                              C:\WINDOWS\System32\ucrtbase.dll, version=10.0.19041.789 (WinBuild.160101.0800)
    VCRUNTIME140_CLR0400.dll                  C:\WINDOWS\SYSTEM32\VCRUNTIME140_CLR0400.dll, version=14.10.25028.0 built by: VCTOOLSD15RTM
    ucrtbase_clr0400.dll                      C:\WINDOWS\SYSTEM32\ucrtbase_clr0400.dll, version=14.10.25028.0 built by: VCTOOLSD15RTM
    IMM32.DLL                                 C:\WINDOWS\System32\IMM32.DLL, version=10.0.19041.546 (WinBuild.160101.0800)
    psapi.dll                                 C:\WINDOWS\System32\psapi.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    mscorlib.ni.dll                           C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\mscorlib\16234675ede351917e6b94c968a734df\mscorlib.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    ole32.dll                                 C:\WINDOWS\System32\ole32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    combase.dll                               C:\WINDOWS\System32\combase.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    bcryptPrimitives.dll                      C:\WINDOWS\System32\bcryptPrimitives.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    uxtheme.dll                               C:\WINDOWS\system32\uxtheme.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    clrjit.dll                                C:\Windows\Microsoft.NET\Framework64\v4.0.30319\clrjit.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    System.ni.dll                             C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System\f2fbfb8c5e5ca3d878cda8322aa09c62\System.ni.dll, version=4.8.4360.0 built by: NET48REL1LAST_C
    System.Drawing.ni.dll                     C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Drawing\81542dd5dffc7bd19487acfcf85eaec8\System.Drawing.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    System.Windows.Forms.ni.dll               C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Windows.Forms\f2ea7aa07968617d1133b79c0e2ce659\System.Windows.Forms.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    shell32.dll                               C:\WINDOWS\System32\shell32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    windows.storage.dll                       C:\WINDOWS\SYSTEM32\windows.storage.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    Wldp.dll                                  C:\WINDOWS\SYSTEM32\Wldp.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    SHCORE.dll                                C:\WINDOWS\System32\SHCORE.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    System.Core.ni.dll                        C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Core\50e467896408e5712e17a1a135f5529a\System.Core.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    vcruntime140.dll                          C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\vcruntime140.dll, version=14.28.29913.0 built by: vcwrkspc
    vcruntime140_1.dll                        C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\vcruntime140_1.dll, version=14.28.29913.0 built by: vcwrkspc
    msvcp140.dll                              C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\msvcp140.dll, version=14.28.29913.0 built by: vcwrkspc
    msvcp140_1.dll                            C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\msvcp140_1.dll, version=14.28.29913.0 built by: vcwrkspc
    msvcp140_2.dll                            C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\msvcp140_2.dll, version=14.28.29913.0 built by: vcwrkspc
    msvcp140_codecvt_ids.dll                  C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\msvcp140_codecvt_ids.dll, version=14.28.29913.0 built by: vcwrkspc
    vcomp140.dll                              C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\Native\X64\vcomp140.dll, version=14.28.29913.0 built by: vcwrkspc
    PaintDotNet.SystemLayer.Native.x64.dll    C:\Program Files\WindowsApps\dotPDNLLC.paint.net_4.216.7781.0_x64__h55e3w7q8jbva\PaintDotNet.SystemLayer.Native.x64.dll, version=4.216.7781.39227
    OLEAUT32.dll                              C:\WINDOWS\System32\OLEAUT32.dll, version=10.0.19041.985 (WinBuild.160101.0800)
    gdiplus.dll                               C:\WINDOWS\WinSxS\amd64_microsoft.windows.gdiplus_6595b64144ccf1df_1.1.19041.1081_none_91a70388cc8594fd\gdiplus.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    PROPSYS.dll                               C:\WINDOWS\SYSTEM32\PROPSYS.dll, version=7.0.19041.1100 (WinBuild.160101.0800)
    WindowsCodecs.dll                         C:\WINDOWS\SYSTEM32\WindowsCodecs.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    bcrypt.dll                                C:\WINDOWS\System32\bcrypt.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    clbcatq.dll                               C:\WINDOWS\System32\clbcatq.dll, version=2001.12.10941.16384 (WinBuild.160101.0800)
    WindowsBase.ni.dll                        C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\WindowsBase\64722d8fb8086e6b58d9eb40e77fe2ca\WindowsBase.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    CRYPTSP.dll                               C:\WINDOWS\SYSTEM32\CRYPTSP.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    System.Configuration.ni.dll               C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Configuration\865d52c0991b67808a106c3b5601bb33\System.Configuration.ni.dll, version=4.8.4190.0 built by: NET48REL1LAST_B
    rsaenh.dll                                C:\WINDOWS\system32\rsaenh.dll, version=10.0.19041.1 (WinBuild.160101.0800)
    CRYPTBASE.dll                             C:\WINDOWS\SYSTEM32\CRYPTBASE.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    PresentationCore.ni.dll                   C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\PresentationCore\70a7a4cc176e1b099c6992e82d3e8b82\PresentationCore.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    PresentationFramework.ni.dll              C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\Presentatio5ae0f00f#\97535ae9e5323cf0ec895c76784eacab\PresentationFramework.ni.dll, version=4.8.4390.0
    System.Xaml.ni.dll                        C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Xaml\3964cc0aad3412daf7b63deb9225fba3\System.Xaml.ni.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    PresentationNative_v0400.dll              C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WPF\PresentationNative_v0400.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    System.Xml.ni.dll                         C:\WINDOWS\assembly\NativeImages_v4.0.30319_64\System.Xml\164cbde40352a6ecd3dec0af43a53fd0\System.Xml.ni.dll, version=4.8.4084.0 built by: NET48REL1
    profapi.dll                               C:\WINDOWS\SYSTEM32\profapi.dll, version=10.0.19041.844 (WinBuild.160101.0800)
    MSCTF.dll                                 C:\WINDOWS\System32\MSCTF.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    dxgi.dll                                  C:\WINDOWS\SYSTEM32\dxgi.dll, version=10.0.19041.964 (WinBuild.160101.0800)
    dwrite.dll                                C:\WINDOWS\SYSTEM32\dwrite.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    wpfgfx_v0400.dll                          C:\Windows\Microsoft.NET\Framework64\v4.0.30319\WPF\wpfgfx_v0400.dll, version=4.8.4390.0 built by: NET48REL1LAST_C
    MSVCP140_CLR0400.dll                      C:\WINDOWS\SYSTEM32\MSVCP140_CLR0400.dll, version=14.10.25028.0 built by: VCTOOLSD15RTM
    UIAnimation.dll                           C:\WINDOWS\System32\UIAnimation.dll, version=10.0.19041.746 (WinBuild.160101.0800)
    comctl32.dll                              C:\WINDOWS\WinSxS\amd64_microsoft.windows.common-controls_6595b64144ccf1df_6.0.19041.1052_none_60b8f8fd71f5e8cb\comctl32.dll, version=6.10 (WinBuild.160101.0800)
    mfplat.dll                                C:\WINDOWS\SYSTEM32\mfplat.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    cfgmgr32.dll                              C:\WINDOWS\System32\cfgmgr32.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    RTWorkQ.DLL                               C:\WINDOWS\SYSTEM32\RTWorkQ.DLL, version=10.0.19041.1 (WinBuild.160101.0800)
    CompPkgSup.DLL                            C:\WINDOWS\SYSTEM32\CompPkgSup.DLL, version=10.0.19041.746 (WinBuild.160101.0800)
    Windows.StateRepositoryPS.dll             C:\Windows\System32\Windows.StateRepositoryPS.dll, version=10.0.19041.844 (WinBuild.160101.0800)
    WinTypes.dll                              C:\Windows\System32\WinTypes.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    TextShaping.dll                           C:\WINDOWS\System32\TextShaping.dll, version=
    d2d1.dll                                  C:\WINDOWS\SYSTEM32\d2d1.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    wtsapi32.dll                              C:\WINDOWS\SYSTEM32\wtsapi32.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    WINSTA.dll                                C:\WINDOWS\SYSTEM32\WINSTA.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    d3d11.dll                                 C:\WINDOWS\SYSTEM32\d3d11.dll, version=10.0.19041.746 (WinBuild.160101.0800)
    D3D10Warp.dll                             C:\WINDOWS\SYSTEM32\D3D10Warp.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    dxcore.dll                                C:\WINDOWS\SYSTEM32\dxcore.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    dwmapi.dll                                C:\WINDOWS\SYSTEM32\dwmapi.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    dataexchange.dll                          C:\WINDOWS\system32\dataexchange.dll, version=10.0.19041.746 (WinBuild.160101.0800)
    dcomp.dll                                 C:\WINDOWS\system32\dcomp.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    twinapi.appcore.dll                       C:\WINDOWS\system32\twinapi.appcore.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    textinputframework.dll                    C:\WINDOWS\SYSTEM32\textinputframework.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    CoreUIComponents.dll                      C:\WINDOWS\SYSTEM32\CoreUIComponents.dll, version=10.0.19041.546
    CoreMessaging.dll                         C:\WINDOWS\SYSTEM32\CoreMessaging.dll, version=10.0.19041.746
    WS2_32.dll                                C:\WINDOWS\System32\WS2_32.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    ntmarta.dll                               C:\WINDOWS\SYSTEM32\ntmarta.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    powrprof.dll                              C:\WINDOWS\SYSTEM32\powrprof.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    UMPDC.dll                                 C:\WINDOWS\SYSTEM32\UMPDC.dll, version=
    winmm.dll                                 C:\WINDOWS\SYSTEM32\winmm.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    explorerframe.dll                         C:\WINDOWS\system32\explorerframe.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    diasymreader.dll                          C:\Windows\Microsoft.NET\Framework64\v4.0.30319\diasymreader.dll, version=14.8.4084.0 built by: NET48REL1
    aticfx64.dll                              C:\WINDOWS\System32\DriverStore\FileRepository\u0368925.inf_amd64_05ef22929fd9ebfc\B368707\aticfx64.dll, version=8.17.10.1695
    atiuxp64.dll                              C:\WINDOWS\System32\DriverStore\FileRepository\u0368925.inf_amd64_05ef22929fd9ebfc\B368707\atiuxp64.dll, version=8.14.01.6564
    atidxx64.dll                              C:\WINDOWS\System32\DriverStore\FileRepository\u0368925.inf_amd64_05ef22929fd9ebfc\B368707\atidxx64.dll, version=8.17.10.01019
    SETUPAPI.dll                              C:\WINDOWS\System32\SETUPAPI.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    apphelp.dll                               C:\WINDOWS\SYSTEM32\apphelp.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    amdihk64.dll                              C:\WINDOWS\SYSTEM32\amdihk64.dll, version=2,00,00,1788
    daxexec.dll                               C:\WINDOWS\SYSTEM32\daxexec.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    FLTLIB.DLL                                C:\WINDOWS\SYSTEM32\FLTLIB.DLL, version=10.0.19041.1100 (WinBuild.160101.0800)
    container.dll                             C:\WINDOWS\SYSTEM32\container.dll, version=10.0.19041.1052 (WinBuild.160101.0800)
    IPHLPAPI.DLL                              C:\WINDOWS\SYSTEM32\IPHLPAPI.DLL, version=10.0.19041.1100 (WinBuild.160101.0800)
    AppXDeploymentClient.dll                  C:\WINDOWS\SYSTEM32\AppXDeploymentClient.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    Windows.FileExplorer.Common.dll           C:\Windows\System32\Windows.FileExplorer.Common.dll, version=10.0.19041.1 (WinBuild.160101.0800)
    iertutil.dll                              C:\Windows\System32\iertutil.dll, version=11.00.19041.1100 (WinBuild.160101.0800)
    edputil.dll                               C:\WINDOWS\SYSTEM32\edputil.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    urlmon.dll                                C:\WINDOWS\SYSTEM32\urlmon.dll, version=11.00.19041.1100 (WinBuild.160101.0800)
    SspiCli.dll                               C:\WINDOWS\SYSTEM32\SspiCli.dll, version=10.0.19041.906 (WinBuild.160101.0800)
    smartscreenps.dll                         C:\Windows\System32\smartscreenps.dll, version=10.0.19041.844 (WinBuild.160101.0800)
    policymanager.dll                         C:\WINDOWS\SYSTEM32\policymanager.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    msvcp110_win.dll                          C:\Windows\System32\msvcp110_win.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    shdocvw.dll                               C:\WINDOWS\SYSTEM32\shdocvw.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    cldapi.dll                                C:\Windows\System32\cldapi.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    appresolver.dll                           C:\Windows\System32\appresolver.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    Bcp47Langs.dll                            C:\Windows\System32\Bcp47Langs.dll, version=10.0.19041.867 (WinBuild.160101.0800)
    SLC.dll                                   C:\Windows\System32\SLC.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    USERENV.dll                               C:\Windows\System32\USERENV.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    sppc.dll                                  C:\Windows\System32\sppc.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    OneCoreCommonProxyStub.dll                C:\Windows\System32\OneCoreCommonProxyStub.dll, version=10.0.19041.1081 (WinBuild.160101.0800)
    OneCoreUAPCommonProxyStub.dll             C:\Windows\System32\OneCoreUAPCommonProxyStub.dll, version=10.0.19041.1023 (WinBuild.160101.0800)
    DEVOBJ.dll                                C:\WINDOWS\SYSTEM32\DEVOBJ.dll, version=10.0.19041.546 (WinBuild.160101.0800)
    WINTRUST.dll                              C:\WINDOWS\System32\WINTRUST.dll, version=10.0.19041.1052 (WinBuild.160101.0800)
    CRYPT32.dll                               C:\WINDOWS\System32\CRYPT32.dll, version=10.0.19041.1100 (WinBuild.160101.0800)
    MSASN1.dll                                C:\WINDOWS\SYSTEM32\MSASN1.dll, version=10.0.19041.546 (WinBuild.160101.0800)

d.160101.0800)

Edited by wildeskraut
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...