Posted by Ivan Fratric, Project Zero
tl;dr I combined [Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>) (an open-source JavaScript engine fuzzer), with [TinyInst](<https://github.com/googleprojectzero/TinyInst>) (an open-source dynamic instrumentation library for fuzzing). I also added grammar-based mutation support to [Jackalope](<https://github.com/googleprojectzero/Jackalope>) (my black-box binary fuzzer). So far, these two approaches resulted in finding three security issues in jscript9.dll (default JavaScript engine used by Internet Explorer).
# Introduction or “when you can’t beat them, join them”
In the past, I’ve invested a lot of time in generation-based fuzzing, which was a successful way to find vulnerabilities in various targets, especially those that take some form of language as input. For example, Domato, my grammar-based generational fuzzer, found [over 40 vulnerabilities in WebKit](<https://bugs.chromium.org/p/project-zero/issues/list?q=ifratric%20webkit&can=1>) and [numerous bugs in Jscript](<https://bugs.chromium.org/p/project-zero/issues/list?q=ifratric%20jscript&can=1>).
While generation-based fuzzing is still a good way to fuzz many complex targets, it was demonstrated that, for finding vulnerabilities in modern JavaScript engines, especially engines with JIT compilers, better results can be achieved with mutational, coverage-guided approaches. My colleague Samuel Groß gives a compelling case on why that is in his [OffensiveCon talk](<https://www.youtube.com/watch?v=OHjq9Y66yfc>). Samuel is also the author of [Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>), an open-source JavaScript engine fuzzer based on mutating a custom intermediate language. Fuzzilli has found a large number of bugs in various JavaScript engines.
While there has been a lot of development on coverage-guided fuzzers over the last few years, most of the public tooling focuses on open-source targets or software running on the Linux operating system. Meanwhile, I focused on developing tooling for fuzzing of closed-source binaries on operating systems where such software is more prevalent (currently Windows and macOS). Some years back, I published [WinAFL](<https://github.com/googleprojectzero/winafl>), the first performant AFL-based fuzzer for Windows. About a year and a half ago, however, I started working on a brand new toolset for black-box coverage-guided fuzzing. [TinyInst](<https://github.com/googleprojectzero/TinyInst>) and [Jackalope](<https://github.com/googleprojectzero/Jackalope>) are the two outcomes of this effort.
It comes somewhat naturally to combine the tooling I’ve been working on with techniques that have been so successful in finding JavaScript bugs, and try to use the resulting tooling to fuzz JavaScript engines for which the source code is not available. Of such engines, I know two: jscript and jscript9 (implemented in jscript.dll and jscript9.dll) on Windows, which are both used by the Internet Explorer web browser. Of these two, jscript9 is probably more interesting in the context of mutational coverage-guided fuzzing since it includes a JIT compiler and more advanced engine features.
While you might think that Internet Explorer is a [thing of the past](<https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/>) and it doesn’t make sense to spend energy looking for bugs in it, the fact remains that Internet Explorer is still heavily exploited by real-world attackers. In [2020](<https://docs.google.com/spreadsheets/d/1lkNJ0uQwbeC1ZTRrxdtuPLCIl7mlUreoKfSIgajnSyY/edit#gid=1869060786>) there were two Internet Explorer 0days exploited in the wild and three in [2021](<https://docs.google.com/spreadsheets/d/1lkNJ0uQwbeC1ZTRrxdtuPLCIl7mlUreoKfSIgajnSyY/edit#gid=2129022708>) so far. One of these vulnerabilities was in the JIT compiler of jscript9. I’ve personally vowed several times that I’m done looking into Internet Explorer, but each time, more 0days in the wild pop up and I change my mind.
Additionally, the techniques described here could be applied to any closed-source or even open-source software, not just Internet Explorer. In particular, grammar-based mutational fuzzing described two sections down can be applied to targets other than JavaScript engines by simply changing the input grammar.
# Approach 1: Fuzzilli + TinyInst
[Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>), as said above, is a state-of-the-art JavaScript engine fuzzer and [TinyInst](<https://github.com/googleprojectzero/TinyInst>) is a dynamic instrumentation library. Although TinyInst is general-purpose and could be used in other applications, it comes with various features useful for fuzzing, such as out-of-the-box support for persistent fuzzing, various types of coverage instrumentations etc. TinyInst is meant to be simple to integrate with other software, in particular fuzzers, and has already been integrated with some.
So, integrating with Fuzzilli was meant to be simple. However, there were still various challenges to overcome for different reasons:
Challenge 1: Getting Fuzzilli to build on Windows where our targets are.
Edit 2021-09-20: The version of Swift for Windows used in this project was from January 2021, when I first started working on it. Since version 5.4, Swift Package Manager is supported on Windows, so building Swift code should be much easier now. Additionally, static linking is supported for C/C++ code.
Fuzzilli was written in Swift and the support for Swift on Windows is currently not great. While [Swift on Windows](<https://github.com/compnerd/swift-build>) builds exist (I’m linking to the builds by Saleem Abdulrasool instead of the official ones because the latter didn’t work for me), not all features that you would find on Linux and macOS are there. For example, one does not simply run swift build on Windows, as the build system is one of the features that didn’t get ported (yet). Fortunately, CMake and Ninja support Swift, so the solution to this problem is to switch to the CMake build system. There are [helpful examples](<https://github.com/compnerd/swift-cmake-examples>) on how to do this, once again from Saleem Abdulrasool.
Another feature that didn’t make it to Swift for Windows is statically linking libraries. This means that all libraries (such as those written in C and C++ that the user wants to include in their Swift project) need to be dynamically linked. This goes for libraries already included in the Fuzzilli project, but also for TinyInst. Since TinyInst also uses the CMake build system, my first attempt at integrating TinyInst was to include it via the Fuzzilli CMake project, and simply have it built as a shared library. However, the same tooling that was successful in building Fuzzilli would fail to build TinyInst (probably due to various platform libraries TinyInst uses). That’s why, in the end, TinyInst was being built separately into a .dll and this .dll loaded “manually” into Fuzzilli via the [LoadLibrary](<https://docs.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-loadlibrarya>) API. This turned out not to be so bad - Swift build tooling for Windows was quite slow, and so it was much faster to only build TinyInst when needed, rather than build the entire Fuzzilli project (even when the changes made were minor).
The Linux/macOS parts of Fuzzilli, of course, also needed to be rewritten. Fortunately, it turned out that the parts that needed to be rewritten were the parts written in C, and the parts written in Swift worked as-is (other than a couple of exceptions, mostly related to networking). As someone with no previous experience with Swift, this was quite a relief. The main parts that needed to be rewritten were the networking library (libsocket), the library used to run and monitor the child process (libreprl) and the library for collecting coverage (libcoverage). The latter two were changed to use TinyInst. Since these are separate libraries in Fuzzilli, but TinyInst handles both of these tasks, some plumbing through Swift code was needed to make sure both of these libraries talk to the same TinyInst instance for a given target.
Challenge 2: Threading woes
Another feature that made the integration less straightforward than hoped for was the use of threading in Swift. TinyInst is built on a custom debugger and, on Windows, it uses the Windows debugging API. One specific feature of the Windows debugging API, for example [WaitForDebugEvent](<https://docs.microsoft.com/en-us/windows/win32/api/debugapi/nf-debugapi-waitfordebugevent>), is that it does not take a debugee pid or a process handle as an argument. So then, the question is, if you have multiple debugees, to which of them does the API call refer? The answer to that is, when a debugger on Windows attaches to a debugee (or starts a debugee process), the thread that started/attached it is the debugger. Any subsequent calls for that particular debugee need to be issued on that same thread.
In contrast, the preferred Swift coding style (that Fuzzilli also uses) is to take advantage of threading primitives such as [DispatchQueue](<https://developer.apple.com/documentation/dispatch/dispatchqueue>). When tasks get posted on a DispatchQueue, they can run in parallel on “background” threads. However, with the background threads, there is no guarantee that a certain task is always going to run on the same thread. So it would happen that calls to the same TinyInst instance happened from different threads, thus breaking the Windows debugging model. This is why, for the purposes of this project, TinyInst was modified to create its own thread (one for each target process) and ensure that any debugger calls for a particular child process always happen on that thread.
Various minor changes
Some examples of features Fuzzilli requires that needed to be added to TinyInst are stdin/stdout redirection and a channel for reading out the “status” of JavaScript execution (specifically, to be able to tell if JavaScript code was throwing an exception or executing successfully). Some of these features were already integrated into the “mainline” TinyInst or will be integrated in the future.
After all of that was completed though, the Fuzzilli/Tinyinst hybrid was running in a stable manner:
[](<https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiry3nRhxaazq03y2AKG_3VBvYocm8t5239naPV7YNNU_FWG9uUcVsOjUTDwf9JDft3dkh7Qpxr-UgRfshNt7FAtbYARvIbpbTIYWK3RS_hFhSjX-7rAy4WmN_5nsgIlktzDWNBzZEpDVJWlERlFwc0hcOgZl8rg_-akQ6w9918lhrM_oFisW7F_43P/s1999/image2%20%283%29.png>)
Note that coverage percentage reported by Fuzzilli is incorrect. Because TinyInst is a dynamic instrumentation library, it cannot know the number of basic blocks/edges in advance.
Primarily because of the current Swift on Windows issues, this closed-source mode of Fuzzilli is not something we want to officially support. However, the sources and the build we used can be downloaded [here](<https://drive.google.com/file/d/10q4bIZHYAxQRkEVSk27Z7NPjKNnB6dKq/view>).
# Approach 2: Grammar-based mutation fuzzing with Jackalope
[Jackalope](<https://github.com/googleprojectzero/Jackalope>) is a coverage-guided fuzzer I developed for fuzzing black-box binaries on Windows and, recently, macOS. Jackalope initially included mutators suitable for fuzzing of binary formats. However, a key feature of Jackalope is modularity: it is meant to be easy to plug in or replace individual components, including, but not limited to, sample mutators.
After observing how Fuzzilli works more closely during Approach 1, as well as observing samples it generated and the bugs it found, the idea was to extend Jackalope to allow mutational JavaScript fuzzing, but also in the future, mutational fuzzing of other targets whose samples can be described by a context-free grammar.
Jackalope uses a grammar syntax similar to that of [Domato](<https://github.com/googleprojectzero/domato>), but somewhat simplified (with some features not supported at this time). This grammar format is easy to write and easy to modify (but also easy to parse). The grammar syntax, as well as the list of builtin symbols, can be found on [this page](<https://github.com/googleprojectzero/Jackalope/tree/main/mutators/grammar>) and the JavaScript grammar used in this project can be found [here](<https://github.com/googleprojectzero/Jackalope/tree/main/examples/grammar>).
One addition to the Domato grammar syntax that allows for more natural mutations, but also sample minimization, are the <repeat_*> grammar nodes. A <repeat_x> symbol tells the grammar engine that it can be represented as zero or more <x> nodes. For example, in our JavaScript grammar, we have
<statementlist> = <repeat_statement>
telling the grammar engine that <statementlist> can be constructed by concatenating zero or more <statement>s. In our JavaScript grammar, a <statement> expands to an actual JavaScript statement. This helps the mutation engine in the following way: it now knows it can mutate a sample by inserting another <statement> node anywhere in the <statementlist> node. It can also remove <statement> nodes from the <statementlist> node. Both of these operations will keep the sample valid (in the grammar sense).
It’s not mandatory to have <repeat_*> nodes in the grammar, as the mutation engine knows how to mutate other nodes as well (see the list of mutations below). However, including them where it makes sense might help make mutations in a more natural way, as is the case of the JavaScript grammar.
Internally, grammar-based mutation works by keeping a tree representation of the sample instead of representing the sample just as an array of bytes (Jackalope must in fact represent a grammar sample as a sequence of bytes at some points in time, e.g when storing it to disk, but does so by serializing the tree and deserializing when needed). Mutations work by modifying a part of the tree in a manner that ensures the resulting tree is still valid within the context of the input grammar. Minimization works by removing those nodes that are determined to be unnecessary.
Jackalope’s mutation engine can currently perform the following operations on the tree:
* Generate a new tree from scratch. This is not really a mutation and is mainly used to bootstrap the fuzzers when no input samples are provided. In fact, grammar fuzzing mode in Jackalope must either start with an empty corpus or a corpus generated by a previous session. This is because there is currently no way to parse a text file (e.g. a JavaScript source file) into its grammar tree representation (in general, there is no guaranteed unique way to parse a sample with a context-free grammar).
* Select a random node in the sample's tree representation. Generate just this node anew while keeping the rest of the tree unchanged.
* Splice: Select a random node from the current sample and a node with the same symbol from another sample. Replace the node in the current sample with a node from the other sample.
* Repeat node mutation: One or more new children get added to a <repeat_*> node, or some of the existing children get replaced.
* Repeat splice: Selects a <repeat_*> node from the current sample and a similar <repeat_*> node from another sample. Mixes children from the other node into the current node.
JavaScript grammar was initially constructed by following the [ECMAScript 2022 specification](<https://tc39.es/ecma262/#sec-grammar-summary>). However, as always when constructing fuzzing grammars from specifications or in a (semi)automated way, this grammar was only a starting point. More manual work was needed to make the grammar output valid and generate interesting samples more frequently.
Jackalope now supports grammar fuzzing out-of-the box, and, in order to use it, you just need to add -grammar <path_to_grammar_file> to Jackalope’s command lines. In addition to running against closed-source targets on Windows and macOS, Jackalope can now run against open-source targets on Linux using [Sanitizer Coverage](<https://clang.llvm.org/docs/SanitizerCoverage.html>) based instrumentation. This is to allow experimentation with grammar-based mutation fuzzing on open-source software.
The following image shows Jackalope running against jscript9.
[](<https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0ICp0XcQvQKPsp_TLgLwihBn_mtCG1gcIsh63iWACU035qj7GOJt7GYuaSL_mHhFVVcIl0FJNlPFfBAZhx7CguYk_tgfPpLZlZWXjaZoR8vEBPEul4iL-5yHMeJt31SFXXIPQTfD1n3M3EjHLPO_HhD9pRryHjOZFRDNCsC4iD2bPLv111rg9IxZC/s1563/image1%20%284%29.png>)
# Results
I ran Fuzzilli for several weeks on 100 cores. This resulted in finding two vulnerabilities, [CVE-2021-26419](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2157>) and [CVE-2021-31959](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2168>). Note that the bugs that were analyzed and determined not to have security impact are not counted here. Both of the vulnerabilities found were in the bytecode generator, a part of the JavaScript engine that is typically not very well tested by generation-based fuzzing approaches. Both of these bugs were found relatively early in the fuzzing process and would be findable even by fuzzing on a single machine.
The second of the two bugs was particularly interesting because it initially manifested only as a NULL pointer dereference that happened occasionally, and it took quite a bit of effort (including tracing JavaScript interpreter execution in cases where it crashed and in cases where it didn’t to see where the execution flow diverges) to reach the root cause. [Time travel debugging](<https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/time-travel-debugging-overview>) was also useful here - it would be quite difficult if not impossible to analyze the sample without it. The reader is referred to the [vulnerability report](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2168>) for further details about the issue.
Jackalope was run on a similar setup: for several weeks on 100 cores. Interestingly, at least against jscript9, Jackalope with grammar-based mutations behaved quite similarly to Fuzzilli: it was hitting a similar level of coverage and finding similar bugs. It also found CVE-2021-26419 quickly into the fuzzing process. Of course, it’s easy to re-discover bugs once they have already been found with another tool, but neither the grammar engine nor the JavaScript grammar contain anything specifically meant for finding these bugs.
About a week and a half into fuzzing with Jackalope, it triggered a bug I hadn't seen before, [CVE-2021-34480](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2188>). This time, the bug was in the JIT compiler, which is another component not exercised very well with generation-based approaches. I was quite happy with this find, because it validated the feasibility of a grammar-based approach for finding JIT bugs.
# Limitations and improvement ideas
While successful coverage-guided fuzzing of closed-source JavaScript engines is certainly possible as demonstrated above, it does have its limitations. The biggest one is inability to compile the target with additional debug checks. Most of the modern open-source JavaScript engines include additional checks that can be compiled in if needed, and enable catching certain types of bugs more easily, without requiring that the bug crashes the target process. If jscript9 source code included such checks, they are lost in the release build we fuzzed.
Related to this, we also can’t compile the target with something like [Address Sanitizer](<https://clang.llvm.org/docs/AddressSanitizer.html>). The usual workaround for this on Windows would be to enable [Page Heap](<https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/gflags-and-pageheap>) for the target. However, it does not work well here. The reason is, jscript9 uses a custom allocator for JavaScript objects. As Page Heap works by replacing the default malloc(), it simply does not apply here.
A way to get around this would be to use instrumentation (TinyInst is already a general-purpose instrumentation library so it could be used for this in addition to code coverage) to instrument the allocator and either insert additional checks or replace it completely. However, doing this was out-of-scope for this project.
# Conclusion
Coverage-guided fuzzing of closed-source targets, even complex ones such as JavaScript engines is certainly possible, and there are plenty of tools and approaches available to accomplish this.
In the context of this project, Jackalope fuzzer was extended to allow grammar-based mutation fuzzing. These extensions have potential to be useful beyond just JavaScript fuzzing and can be adapted to other targets by simply using a different input grammar. It would be interesting to see which other targets the broader community could think of that would benefit from a mutation-based approach.
Finally, despite being targeted by security researchers for a long time now, Internet Explorer still has many exploitable bugs that can be found even without large resources. After the development on this project was complete, Microsoft announced that they will be [removing Internet Explorer as a separate browser](<https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/>). This is a good first step, but with Internet Explorer (or Internet Explorer engine) integrated into various other products (most notably, Microsoft Office, as also exploited by in-the-wild attackers), I wonder how long it will truly take before attackers stop abusing it.
{"id": "GOOGLEPROJECTZERO:C8077AF60F0E22ECAD33F23194C38BB6", "vendorId": null, "type": "googleprojectzero", "bulletinFamily": "info", "title": "\nFuzzing Closed-Source JavaScript Engines with Coverage Feedback\n", "description": "Posted by Ivan Fratric, Project Zero\n\ntl;dr I combined [Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>) (an open-source JavaScript engine fuzzer), with [TinyInst](<https://github.com/googleprojectzero/TinyInst>) (an open-source dynamic instrumentation library for fuzzing). I also added grammar-based mutation support to [Jackalope](<https://github.com/googleprojectzero/Jackalope>) (my black-box binary fuzzer). So far, these two approaches resulted in finding three security issues in jscript9.dll (default JavaScript engine used by Internet Explorer).\n\n# Introduction or \u201cwhen you can\u2019t beat them, join them\u201d\n\nIn the past, I\u2019ve invested a lot of time in generation-based fuzzing, which was a successful way to find vulnerabilities in various targets, especially those that take some form of language as input. For example, Domato, my grammar-based generational fuzzer, found [over 40 vulnerabilities in WebKit](<https://bugs.chromium.org/p/project-zero/issues/list?q=ifratric%20webkit&can=1>) and [numerous bugs in Jscript](<https://bugs.chromium.org/p/project-zero/issues/list?q=ifratric%20jscript&can=1>).\n\nWhile generation-based fuzzing is still a good way to fuzz many complex targets, it was demonstrated that, for finding vulnerabilities in modern JavaScript engines, especially engines with JIT compilers, better results can be achieved with mutational, coverage-guided approaches. My colleague Samuel Gro\u00df gives a compelling case on why that is in his [OffensiveCon talk](<https://www.youtube.com/watch?v=OHjq9Y66yfc>). Samuel is also the author of [Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>), an open-source JavaScript engine fuzzer based on mutating a custom intermediate language. Fuzzilli has found a large number of bugs in various JavaScript engines.\n\nWhile there has been a lot of development on coverage-guided fuzzers over the last few years, most of the public tooling focuses on open-source targets or software running on the Linux operating system. Meanwhile, I focused on developing tooling for fuzzing of closed-source binaries on operating systems where such software is more prevalent (currently Windows and macOS). Some years back, I published [WinAFL](<https://github.com/googleprojectzero/winafl>), the first performant AFL-based fuzzer for Windows. About a year and a half ago, however, I started working on a brand new toolset for black-box coverage-guided fuzzing. [TinyInst](<https://github.com/googleprojectzero/TinyInst>) and [Jackalope](<https://github.com/googleprojectzero/Jackalope>) are the two outcomes of this effort.\n\nIt comes somewhat naturally to combine the tooling I\u2019ve been working on with techniques that have been so successful in finding JavaScript bugs, and try to use the resulting tooling to fuzz JavaScript engines for which the source code is not available. Of such engines, I know two: jscript and jscript9 (implemented in jscript.dll and jscript9.dll) on Windows, which are both used by the Internet Explorer web browser. Of these two, jscript9 is probably more interesting in the context of mutational coverage-guided fuzzing since it includes a JIT compiler and more advanced engine features.\n\nWhile you might think that Internet Explorer is a [thing of the past](<https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/>) and it doesn\u2019t make sense to spend energy looking for bugs in it, the fact remains that Internet Explorer is still heavily exploited by real-world attackers. In [2020](<https://docs.google.com/spreadsheets/d/1lkNJ0uQwbeC1ZTRrxdtuPLCIl7mlUreoKfSIgajnSyY/edit#gid=1869060786>) there were two Internet Explorer 0days exploited in the wild and three in [2021](<https://docs.google.com/spreadsheets/d/1lkNJ0uQwbeC1ZTRrxdtuPLCIl7mlUreoKfSIgajnSyY/edit#gid=2129022708>) so far. One of these vulnerabilities was in the JIT compiler of jscript9. I\u2019ve personally vowed several times that I\u2019m done looking into Internet Explorer, but each time, more 0days in the wild pop up and I change my mind.\n\nAdditionally, the techniques described here could be applied to any closed-source or even open-source software, not just Internet Explorer. In particular, grammar-based mutational fuzzing described two sections down can be applied to targets other than JavaScript engines by simply changing the input grammar.\n\n# Approach 1: Fuzzilli + TinyInst\n\n[Fuzzilli](<https://github.com/googleprojectzero/fuzzilli>), as said above, is a state-of-the-art JavaScript engine fuzzer and [TinyInst](<https://github.com/googleprojectzero/TinyInst>) is a dynamic instrumentation library. Although TinyInst is general-purpose and could be used in other applications, it comes with various features useful for fuzzing, such as out-of-the-box support for persistent fuzzing, various types of coverage instrumentations etc. TinyInst is meant to be simple to integrate with other software, in particular fuzzers, and has already been integrated with some.\n\nSo, integrating with Fuzzilli was meant to be simple. However, there were still various challenges to overcome for different reasons:\n\nChallenge 1: Getting Fuzzilli to build on Windows where our targets are.\n\nEdit 2021-09-20: The version of Swift for Windows used in this project was from January 2021, when I first started working on it. Since version 5.4, Swift Package Manager is supported on Windows, so building Swift code should be much easier now. Additionally, static linking is supported for C/C++ code.\n\nFuzzilli was written in Swift and the support for Swift on Windows is currently not great. While [Swift on Windows](<https://github.com/compnerd/swift-build>) builds exist (I\u2019m linking to the builds by Saleem Abdulrasool instead of the official ones because the latter didn\u2019t work for me), not all features that you would find on Linux and macOS are there. For example, one does not simply run swift build on Windows, as the build system is one of the features that didn\u2019t get ported (yet). Fortunately, CMake and Ninja support Swift, so the solution to this problem is to switch to the CMake build system. There are [helpful examples](<https://github.com/compnerd/swift-cmake-examples>) on how to do this, once again from Saleem Abdulrasool.\n\nAnother feature that didn\u2019t make it to Swift for Windows is statically linking libraries. This means that all libraries (such as those written in C and C++ that the user wants to include in their Swift project) need to be dynamically linked. This goes for libraries already included in the Fuzzilli project, but also for TinyInst. Since TinyInst also uses the CMake build system, my first attempt at integrating TinyInst was to include it via the Fuzzilli CMake project, and simply have it built as a shared library. However, the same tooling that was successful in building Fuzzilli would fail to build TinyInst (probably due to various platform libraries TinyInst uses). That\u2019s why, in the end, TinyInst was being built separately into a .dll and this .dll loaded \u201cmanually\u201d into Fuzzilli via the [LoadLibrary](<https://docs.microsoft.com/en-us/windows/win32/api/libloaderapi/nf-libloaderapi-loadlibrarya>) API. This turned out not to be so bad - Swift build tooling for Windows was quite slow, and so it was much faster to only build TinyInst when needed, rather than build the entire Fuzzilli project (even when the changes made were minor).\n\nThe Linux/macOS parts of Fuzzilli, of course, also needed to be rewritten. Fortunately, it turned out that the parts that needed to be rewritten were the parts written in C, and the parts written in Swift worked as-is (other than a couple of exceptions, mostly related to networking). As someone with no previous experience with Swift, this was quite a relief. The main parts that needed to be rewritten were the networking library (libsocket), the library used to run and monitor the child process (libreprl) and the library for collecting coverage (libcoverage). The latter two were changed to use TinyInst. Since these are separate libraries in Fuzzilli, but TinyInst handles both of these tasks, some plumbing through Swift code was needed to make sure both of these libraries talk to the same TinyInst instance for a given target.\n\nChallenge 2: Threading woes\n\nAnother feature that made the integration less straightforward than hoped for was the use of threading in Swift. TinyInst is built on a custom debugger and, on Windows, it uses the Windows debugging API. One specific feature of the Windows debugging API, for example [WaitForDebugEvent](<https://docs.microsoft.com/en-us/windows/win32/api/debugapi/nf-debugapi-waitfordebugevent>), is that it does not take a debugee pid or a process handle as an argument. So then, the question is, if you have multiple debugees, to which of them does the API call refer? The answer to that is, when a debugger on Windows attaches to a debugee (or starts a debugee process), the thread that started/attached it is the debugger. Any subsequent calls for that particular debugee need to be issued on that same thread.\n\nIn contrast, the preferred Swift coding style (that Fuzzilli also uses) is to take advantage of threading primitives such as [DispatchQueue](<https://developer.apple.com/documentation/dispatch/dispatchqueue>). When tasks get posted on a DispatchQueue, they can run in parallel on \u201cbackground\u201d threads. However, with the background threads, there is no guarantee that a certain task is always going to run on the same thread. So it would happen that calls to the same TinyInst instance happened from different threads, thus breaking the Windows debugging model. This is why, for the purposes of this project, TinyInst was modified to create its own thread (one for each target process) and ensure that any debugger calls for a particular child process always happen on that thread.\n\nVarious minor changes\n\nSome examples of features Fuzzilli requires that needed to be added to TinyInst are stdin/stdout redirection and a channel for reading out the \u201cstatus\u201d of JavaScript execution (specifically, to be able to tell if JavaScript code was throwing an exception or executing successfully). Some of these features were already integrated into the \u201cmainline\u201d TinyInst or will be integrated in the future.\n\nAfter all of that was completed though, the Fuzzilli/Tinyinst hybrid was running in a stable manner:\n\n[](<https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiry3nRhxaazq03y2AKG_3VBvYocm8t5239naPV7YNNU_FWG9uUcVsOjUTDwf9JDft3dkh7Qpxr-UgRfshNt7FAtbYARvIbpbTIYWK3RS_hFhSjX-7rAy4WmN_5nsgIlktzDWNBzZEpDVJWlERlFwc0hcOgZl8rg_-akQ6w9918lhrM_oFisW7F_43P/s1999/image2%20%283%29.png>)\n\nNote that coverage percentage reported by Fuzzilli is incorrect. Because TinyInst is a dynamic instrumentation library, it cannot know the number of basic blocks/edges in advance. \n\nPrimarily because of the current Swift on Windows issues, this closed-source mode of Fuzzilli is not something we want to officially support. However, the sources and the build we used can be downloaded [here](<https://drive.google.com/file/d/10q4bIZHYAxQRkEVSk27Z7NPjKNnB6dKq/view>).\n\n# Approach 2: Grammar-based mutation fuzzing with Jackalope\n\n[Jackalope](<https://github.com/googleprojectzero/Jackalope>) is a coverage-guided fuzzer I developed for fuzzing black-box binaries on Windows and, recently, macOS. Jackalope initially included mutators suitable for fuzzing of binary formats. However, a key feature of Jackalope is modularity: it is meant to be easy to plug in or replace individual components, including, but not limited to, sample mutators.\n\nAfter observing how Fuzzilli works more closely during Approach 1, as well as observing samples it generated and the bugs it found, the idea was to extend Jackalope to allow mutational JavaScript fuzzing, but also in the future, mutational fuzzing of other targets whose samples can be described by a context-free grammar.\n\nJackalope uses a grammar syntax similar to that of [Domato](<https://github.com/googleprojectzero/domato>), but somewhat simplified (with some features not supported at this time). This grammar format is easy to write and easy to modify (but also easy to parse). The grammar syntax, as well as the list of builtin symbols, can be found on [this page](<https://github.com/googleprojectzero/Jackalope/tree/main/mutators/grammar>) and the JavaScript grammar used in this project can be found [here](<https://github.com/googleprojectzero/Jackalope/tree/main/examples/grammar>).\n\nOne addition to the Domato grammar syntax that allows for more natural mutations, but also sample minimization, are the <repeat_*> grammar nodes. A <repeat_x> symbol tells the grammar engine that it can be represented as zero or more <x> nodes. For example, in our JavaScript grammar, we have\n\n<statementlist> = <repeat_statement>\n\ntelling the grammar engine that <statementlist> can be constructed by concatenating zero or more <statement>s. In our JavaScript grammar, a <statement> expands to an actual JavaScript statement. This helps the mutation engine in the following way: it now knows it can mutate a sample by inserting another <statement> node anywhere in the <statementlist> node. It can also remove <statement> nodes from the <statementlist> node. Both of these operations will keep the sample valid (in the grammar sense).\n\nIt\u2019s not mandatory to have <repeat_*> nodes in the grammar, as the mutation engine knows how to mutate other nodes as well (see the list of mutations below). However, including them where it makes sense might help make mutations in a more natural way, as is the case of the JavaScript grammar.\n\nInternally, grammar-based mutation works by keeping a tree representation of the sample instead of representing the sample just as an array of bytes (Jackalope must in fact represent a grammar sample as a sequence of bytes at some points in time, e.g when storing it to disk, but does so by serializing the tree and deserializing when needed). Mutations work by modifying a part of the tree in a manner that ensures the resulting tree is still valid within the context of the input grammar. Minimization works by removing those nodes that are determined to be unnecessary.\n\nJackalope\u2019s mutation engine can currently perform the following operations on the tree:\n\n * Generate a new tree from scratch. This is not really a mutation and is mainly used to bootstrap the fuzzers when no input samples are provided. In fact, grammar fuzzing mode in Jackalope must either start with an empty corpus or a corpus generated by a previous session. This is because there is currently no way to parse a text file (e.g. a JavaScript source file) into its grammar tree representation (in general, there is no guaranteed unique way to parse a sample with a context-free grammar).\n * Select a random node in the sample's tree representation. Generate just this node anew while keeping the rest of the tree unchanged.\n * Splice: Select a random node from the current sample and a node with the same symbol from another sample. Replace the node in the current sample with a node from the other sample.\n * Repeat node mutation: One or more new children get added to a <repeat_*> node, or some of the existing children get replaced.\n * Repeat splice: Selects a <repeat_*> node from the current sample and a similar <repeat_*> node from another sample. Mixes children from the other node into the current node.\n\nJavaScript grammar was initially constructed by following the [ECMAScript 2022 specification](<https://tc39.es/ecma262/#sec-grammar-summary>). However, as always when constructing fuzzing grammars from specifications or in a (semi)automated way, this grammar was only a starting point. More manual work was needed to make the grammar output valid and generate interesting samples more frequently.\n\nJackalope now supports grammar fuzzing out-of-the box, and, in order to use it, you just need to add -grammar <path_to_grammar_file> to Jackalope\u2019s command lines. In addition to running against closed-source targets on Windows and macOS, Jackalope can now run against open-source targets on Linux using [Sanitizer Coverage](<https://clang.llvm.org/docs/SanitizerCoverage.html>) based instrumentation. This is to allow experimentation with grammar-based mutation fuzzing on open-source software.\n\nThe following image shows Jackalope running against jscript9.\n\n[](<https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg0ICp0XcQvQKPsp_TLgLwihBn_mtCG1gcIsh63iWACU035qj7GOJt7GYuaSL_mHhFVVcIl0FJNlPFfBAZhx7CguYk_tgfPpLZlZWXjaZoR8vEBPEul4iL-5yHMeJt31SFXXIPQTfD1n3M3EjHLPO_HhD9pRryHjOZFRDNCsC4iD2bPLv111rg9IxZC/s1563/image1%20%284%29.png>)\n\n# Results\n\nI ran Fuzzilli for several weeks on 100 cores. This resulted in finding two vulnerabilities, [CVE-2021-26419](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2157>) and [CVE-2021-31959](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2168>). Note that the bugs that were analyzed and determined not to have security impact are not counted here. Both of the vulnerabilities found were in the bytecode generator, a part of the JavaScript engine that is typically not very well tested by generation-based fuzzing approaches. Both of these bugs were found relatively early in the fuzzing process and would be findable even by fuzzing on a single machine.\n\nThe second of the two bugs was particularly interesting because it initially manifested only as a NULL pointer dereference that happened occasionally, and it took quite a bit of effort (including tracing JavaScript interpreter execution in cases where it crashed and in cases where it didn\u2019t to see where the execution flow diverges) to reach the root cause. [Time travel debugging](<https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/time-travel-debugging-overview>) was also useful here - it would be quite difficult if not impossible to analyze the sample without it. The reader is referred to the [vulnerability report](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2168>) for further details about the issue.\n\nJackalope was run on a similar setup: for several weeks on 100 cores. Interestingly, at least against jscript9, Jackalope with grammar-based mutations behaved quite similarly to Fuzzilli: it was hitting a similar level of coverage and finding similar bugs. It also found CVE-2021-26419 quickly into the fuzzing process. Of course, it\u2019s easy to re-discover bugs once they have already been found with another tool, but neither the grammar engine nor the JavaScript grammar contain anything specifically meant for finding these bugs.\n\nAbout a week and a half into fuzzing with Jackalope, it triggered a bug I hadn't seen before, [CVE-2021-34480](<https://bugs.chromium.org/p/project-zero/issues/detail?id=2188>). This time, the bug was in the JIT compiler, which is another component not exercised very well with generation-based approaches. I was quite happy with this find, because it validated the feasibility of a grammar-based approach for finding JIT bugs.\n\n# Limitations and improvement ideas\n\nWhile successful coverage-guided fuzzing of closed-source JavaScript engines is certainly possible as demonstrated above, it does have its limitations. The biggest one is inability to compile the target with additional debug checks. Most of the modern open-source JavaScript engines include additional checks that can be compiled in if needed, and enable catching certain types of bugs more easily, without requiring that the bug crashes the target process. If jscript9 source code included such checks, they are lost in the release build we fuzzed.\n\nRelated to this, we also can\u2019t compile the target with something like [Address Sanitizer](<https://clang.llvm.org/docs/AddressSanitizer.html>). The usual workaround for this on Windows would be to enable [Page Heap](<https://docs.microsoft.com/en-us/windows-hardware/drivers/debugger/gflags-and-pageheap>) for the target. However, it does not work well here. The reason is, jscript9 uses a custom allocator for JavaScript objects. As Page Heap works by replacing the default malloc(), it simply does not apply here.\n\nA way to get around this would be to use instrumentation (TinyInst is already a general-purpose instrumentation library so it could be used for this in addition to code coverage) to instrument the allocator and either insert additional checks or replace it completely. However, doing this was out-of-scope for this project.\n\n# Conclusion\n\nCoverage-guided fuzzing of closed-source targets, even complex ones such as JavaScript engines is certainly possible, and there are plenty of tools and approaches available to accomplish this.\n\nIn the context of this project, Jackalope fuzzer was extended to allow grammar-based mutation fuzzing. These extensions have potential to be useful beyond just JavaScript fuzzing and can be adapted to other targets by simply using a different input grammar. It would be interesting to see which other targets the broader community could think of that would benefit from a mutation-based approach.\n\nFinally, despite being targeted by security researchers for a long time now, Internet Explorer still has many exploitable bugs that can be found even without large resources. After the development on this project was complete, Microsoft announced that they will be [removing Internet Explorer as a separate browser](<https://blogs.windows.com/windowsexperience/2021/05/19/the-future-of-internet-explorer-on-windows-10-is-in-microsoft-edge/>). This is a good first step, but with Internet Explorer (or Internet Explorer engine) integrated into various other products (most notably, Microsoft Office, as also exploited by in-the-wild attackers), I wonder how long it will truly take before attackers stop abusing it. \n", "published": "2021-09-14T00:00:00", "modified": "2021-09-14T00:00:00", "epss": [{"cve": "CVE-2021-26419", "epss": 0.95313, "percentile": 0.98992, "modified": "2023-05-26"}, {"cve": "CVE-2021-31959", "epss": 0.00056, "percentile": 0.21448, "modified": "2023-05-26"}, {"cve": "CVE-2021-34480", "epss": 0.56167, "percentile": 0.97138, "modified": "2023-05-23"}], "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}, "cvss2": {"cvssV2": {"version": "2.0", "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "accessVector": "NETWORK", "accessComplexity": "HIGH", "authentication": "NONE", "confidentialityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "baseScore": 7.6}, "severity": "HIGH", "exploitabilityScore": 4.9, "impactScore": 10.0, "acInsufInfo": false, "obtainAllPrivilege": false, "obtainUserPrivilege": false, "obtainOtherPrivilege": false, "userInteractionRequired": true}, "cvss3": {"cvssV3": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH", "baseScore": 8.8, "baseSeverity": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}, "href": "https://googleprojectzero.blogspot.com/2021/09/fuzzing-closed-source-javascript.html", "reporter": "GoogleProjectZero", "references": [], "cvelist": ["CVE-2021-26419", "CVE-2021-31959", "CVE-2021-34480"], "immutableFields": [], "lastseen": "2023-05-27T02:00:27", "viewCount": 23, "enchantments": {"dependencies": {"references": [{"type": "attackerkb", "idList": ["AKB:2F48FB8A-EF4C-468F-9F4F-8BB9BB5FEC97"]}, {"type": "avleonov", "idList": ["AVLEONOV:9D3D76F4CC74C7ABB8000BC6AFB2A2CE"]}, {"type": "checkpoint_advisories", "idList": ["CPAI-2021-0260", "CPAI-2021-0382", "CPAI-2021-0490"]}, {"type": "cve", "idList": ["CVE-2021-26419", "CVE-2021-31959", "CVE-2021-34480"]}, {"type": "hivepro", "idList": ["HIVEPRO:1BBAC0CD5F3681EC49D06BE85DC90A92"]}, {"type": "kaspersky", "idList": ["KLA12167", "KLA12171", "KLA12198", "KLA12202", "KLA12250", "KLA12259"]}, {"type": "krebs", "idList": ["KREBS:4E22686F3C4E2536C402F6568B8E659A", "KREBS:E374075CAB55D7AB06EBD73CB87D33CD"]}, {"type": "malwarebytes", "idList": ["MALWAREBYTES:84CB84E43C5F560FDE9B8B7E65F7C4A3", "MALWAREBYTES:8B41C7471B07595F7246D3DCB8794894"]}, {"type": "mscve", "idList": ["MS:CVE-2021-26419", "MS:CVE-2021-31959", "MS:CVE-2021-34480"]}, {"type": "mskb", "idList": ["KB5003165", "KB5003169", "KB5003171", "KB5003172", "KB5003173", "KB5003174", "KB5003197", "KB5003208", "KB5003209", "KB5003210", "KB5003233", "KB5003636", "KB5003638", "KB5003646", "KB5003667", "KB5003671", "KB5003687", "KB5003697", "KB5005036"]}, {"type": "nessus", "idList": ["SMB_NT_MS21_AUG_5005030.NASL", "SMB_NT_MS21_AUG_5005031.NASL", "SMB_NT_MS21_AUG_5005033.NASL", "SMB_NT_MS21_AUG_5005040.NASL", "SMB_NT_MS21_AUG_5005043.NASL", "SMB_NT_MS21_AUG_5005089.NASL", "SMB_NT_MS21_AUG_5005094.NASL", "SMB_NT_MS21_AUG_5005106.NASL", "SMB_NT_MS21_AUG_INTERNET_EXPLORER.NASL", "SMB_NT_MS21_JUN_5003635.NASL", "SMB_NT_MS21_JUN_5003637.NASL", "SMB_NT_MS21_JUN_5003638.NASL", "SMB_NT_MS21_JUN_5003646.NASL", "SMB_NT_MS21_JUN_5003681.NASL", "SMB_NT_MS21_JUN_5003687.NASL", "SMB_NT_MS21_JUN_5003694.NASL", "SMB_NT_MS21_JUN_5003697.NASL", "SMB_NT_MS21_JUN_INTERNET_EXPLORER.NASL", "SMB_NT_MS21_MAY_5003169.NASL", "SMB_NT_MS21_MAY_5003171.NASL", "SMB_NT_MS21_MAY_5003172.NASL", "SMB_NT_MS21_MAY_5003174.NASL", "SMB_NT_MS21_MAY_5003197.NASL", "SMB_NT_MS21_MAY_5003210.NASL", "SMB_NT_MS21_MAY_5003233.NASL", "SMB_NT_MS21_MAY_INTERNET_EXPLORER.NASL"]}, {"type": "packetstorm", "idList": ["PACKETSTORM:162570"]}, {"type": "qualysblog", "idList": ["QUALYSBLOG:0F0ACCA731E84F3B1067935E483FC950", "QUALYSBLOG:23EF75126B24C22C999DAD4D7A2E9DF5", "QUALYSBLOG:A8EE36FB3E891C73934CB1C60E3B3D41"]}, {"type": "rapid7blog", "idList": ["RAPID7BLOG:05A653A5E863B78EDD56FD74F059E02E", "RAPID7BLOG:DE426F8A59CA497BB6C0B90C0F1849CD", "RAPID7BLOG:E44F025D612AC4EA5DF9F2B56FF8680C"]}, {"type": "thn", "idList": ["THN:25143CA85A0297381CEBBBD35F24F85B"]}, {"type": "threatpost", "idList": ["THREATPOST:8D4EA8B0593FD44763915E703BC9AB72", "THREATPOST:A2FE619CD27EBEC2F6B0C62ED026F02C"]}, {"type": "zdt", "idList": ["1337DAY-ID-36242"]}]}, "score": {"value": 8.4, "vector": "NONE"}, "backreferences": {"references": [{"type": "attackerkb", "idList": ["AKB:2F48FB8A-EF4C-468F-9F4F-8BB9BB5FEC97"]}, {"type": "avleonov", "idList": ["AVLEONOV:9D3D76F4CC74C7ABB8000BC6AFB2A2CE"]}, {"type": "checkpoint_advisories", "idList": ["CPAI-2021-0260", "CPAI-2021-0382", "CPAI-2021-0490"]}, {"type": "cve", "idList": ["CVE-2021-26419", "CVE-2021-34480"]}, {"type": "hivepro", "idList": ["HIVEPRO:1BBAC0CD5F3681EC49D06BE85DC90A92"]}, {"type": "kaspersky", "idList": ["KLA12167", "KLA12171", "KLA12198", "KLA12202"]}, {"type": "krebs", "idList": ["KREBS:4E22686F3C4E2536C402F6568B8E659A"]}, {"type": "malwarebytes", "idList": ["MALWAREBYTES:8B41C7471B07595F7246D3DCB8794894"]}, {"type": "metasploit", "idList": ["MSF:ILITIES/MSFT-CVE-2021-26419/"]}, {"type": "mscve", "idList": ["MS:CVE-2021-26419"]}, {"type": "mskb", "idList": ["KB5003165", "KB5003209", "KB5003638"]}, {"type": "nessus", "idList": ["SMB_NT_MS21_JUN_INTERNET_EXPLORER.NASL"]}, {"type": "packetstorm", "idList": ["PACKETSTORM:162570"]}, {"type": "qualysblog", "idList": ["QUALYSBLOG:A8EE36FB3E891C73934CB1C60E3B3D41"]}, {"type": "rapid7blog", "idList": ["RAPID7BLOG:05A653A5E863B78EDD56FD74F059E02E"]}, {"type": "thn", "idList": ["THN:25143CA85A0297381CEBBBD35F24F85B"]}, {"type": "threatpost", "idList": ["THREATPOST:0F9EDE9A622A021B9B79C50214D7E8AD", "THREATPOST:A2FE619CD27EBEC2F6B0C62ED026F02C"]}, {"type": "zdt", "idList": ["1337DAY-ID-36242"]}]}, "exploitation": null, "epss": [{"cve": "CVE-2021-26419", "epss": 0.94238, "percentile": 0.98717, "modified": "2023-05-01"}, {"cve": "CVE-2021-31959", "epss": 0.00056, "percentile": 0.21401, "modified": "2023-05-01"}, {"cve": "CVE-2021-34480", "epss": 0.71949, "percentile": 0.97538, "modified": "2023-05-01"}], "vulnersScore": 8.4}, "_state": {"dependencies": 1685153231, "score": 1685153067, "epss": 0}, "_internal": {"score_hash": "b6b752517e566f6bcbd62c8ea464018f"}}
{"checkpoint_advisories": [{"lastseen": "2022-02-16T19:34:21", "description": "A memory corruption vulnerability exists in Microsoft Windows. Successful exploitation of this vulnerability could allow a remote attacker to execute arbitrary code on the affected system.", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 7.8, "privilegesRequired": "NONE", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "userInteraction": "REQUIRED", "version": "3.1"}, "impactScore": 5.9}, "published": "2021-06-09T00:00:00", "type": "checkpoint_advisories", "title": "Microsoft Scripting Engine Memory Corruption (CVE-2021-31959)", "bulletinFamily": "info", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31959"], "modified": "2021-06-09T00:00:00", "id": "CPAI-2021-0382", "href": "", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2022-02-16T19:38:09", "description": "A memory corruption vulnerability exists in Microsoft Windows. Successful exploitation of this vulnerability could allow a remote attacker to execute arbitrary code on the affected system.", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 8.8, "privilegesRequired": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "userInteraction": "REQUIRED", "version": "3.1"}, "impactScore": 5.9}, "published": "2021-08-10T00:00:00", "type": "checkpoint_advisories", "title": "Microsoft Scripting Engine Memory Corruption (CVE-2021-34480)", "bulletinFamily": "info", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 6.4, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-34480"], "modified": "2021-08-10T00:00:00", "id": "CPAI-2021-0490", "href": "", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2022-02-16T19:33:07", "description": "A memory corruption vulnerability exists in Microsoft Internet Explorer. Successful exploitation of this vulnerability could allow a remote attacker to execute arbitrary code on the affected system.", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "baseScore": 7.5, "privilegesRequired": "NONE", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "userInteraction": "REQUIRED", "version": "3.1"}, "impactScore": 5.9}, "published": "2021-05-11T00:00:00", "type": "checkpoint_advisories", "title": "Microsoft Internet Explorer Scripting Engine Memory Corruption (CVE-2021-26419)", "bulletinFamily": "info", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "acInsufInfo": false, "impactScore": 10.0, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T00:00:00", "id": "CPAI-2021-0260", "href": "", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}], "mskb": [{"lastseen": "2023-05-19T10:51:48", "description": "None\nThis article applies to the following:\n\n * Internet Explorer 11 on Windows Server 2012 R2\n * Internet Explorer 11 on Windows 8.1\n * Internet Explorer 11 on Windows Server 2012\n * Internet Explorer 11 on Windows Server 2008 R2 SP1\n * Internet Explorer 11 on Windows 7 SP1\n * Internet Explorer 9 on Windows Server 2008 SP2\n\n**Important: **\n\n * As of February 11, 2020, Internet Explorer 10 is no longer in support. To get Internet Explorer 11 for Windows Server 2012 or Windows 8 Embedded Standard, see [KB4492872](<https://support.microsoft.com/help/4492872>). Install one of the following applicable updates to stay updated with the latest security fixes:\n * Cumulative Update for Internet Explorer 11 for Windows Server 2012.\n * Cumulative Update for Internet Explorer 11 for Windows 8 Embedded Standard.\n * The June 2021 Monthly Rollup.\n * Some customers using Windows Server 2008 R2 SP1 who activated their ESU multiple activation key (MAK) add-on before installing the January 14, 2020 updates might need to re-activate their key. Re-activation on affected devices should only be required once. For information on activation, see this [blog](<https://aka.ms/Windows7ESU>) post.\n * WSUS scan cab files will continue to be available for Windows 7 SP1 and Windows Server 2008 R2 SP1. If you have a subset of devices running these operating systems without ESU, they might show as non-compliant in your patch management and compliance toolsets.\n\n## **Summary**\n\nThis security update resolves vulnerabilities in Internet Explorer. To learn more about these vulnerabilities, see [Microsoft Common Vulnerabilities and Exposures](<https://portal.msrc.microsoft.com/en-us/security-guidance>).Additionally, see the following articles for more information about cumulative updates:\n\n * [Windows Server 2008 SP2 update history](<https://support.microsoft.com/help/4343218>)\n * [Windows 7 SP1 and Windows Server 2008 R2 SP1 update history](<https://support.microsoft.com/help/4009469>)\n * [Windows Server 2012 update history](<https://support.microsoft.com/help/4009471>)\n * [Windows 8.1 and Windows Server 2012 R2 update history](<https://support.microsoft.com/help/4009470>)\n\n**Important: **\n\n * The fixes that are included in this update are also included in the June 2021 Security Monthly Quality Rollup. Installing either this update or the Security Monthly Quality Rollup installs the same fixes.\n * This update is not applicable for installation on a device on which the Security Monthly Quality Rollup from June 2021 (or a later month) is already installed. This is because that update contains all the same fixes that are included in this update.\n * If you use update management processes other than Windows Update and you automatically approve all security update classifications for deployment, this update, the June 2021 Security Only Quality Update, and the June 2021 Security Monthly Quality Rollup are deployed. We recommend that you review your update deployment rules to make sure that the desired updates are deployed.\n * If you install a language pack after you install this update, you must reinstall this update. Therefore, we recommend that you install any language packs that you need before you install this update. For more information, see [Add language packs to Windows](<https://technet.microsoft.com/library/hh825699>).\n\n## **Known issues in this security update**\n\nWe are currently not aware of any issues in this update.\n\n## **How to get and install this update**\n\n**Before installing this update**To install Windows 7 SP1, Windows Server 2008 R2 SP1, or Windows Server 2008 SP2 updates released on or after July 2019, you must have the following required updates installed. If you use Windows Update, these required updates will be offered automatically as needed.\n\n * Install the SHA-2 code signing support updates: \n \nFor Windows 7 SP1, Windows Server 2008 R2, and Windows Server 2008 SP2, you must have the SHA-2 update ([KB4474419](<https://support.microsoft.com/help/4474419>)) that is dated September 23, 2019 or a later SHA-2 update installed and then restart your device before you apply this update. For more information about SHA-2 updates, see [2019 SHA-2 Code Signing Support requirement for Windows and WSUS](<https://support.microsoft.com/help/4472027>). \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the servicing stack update (SSU) ([KB4490628](<https://support.microsoft.com/help/4490628>)) that is dated March 12, 2019. After update [KB4490628](<https://support.microsoft.com/help/4490628>) is installed, we recommend that you install the December 8, 2020 SSU ([KB4592510](<https://support.microsoft.com/help/4592510>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>). \n \nFor Windows Server 2008 SP2, you must have installed the servicing stack update (SSU) ([KB4493730](<https://support.microsoft.com/help/4493730>)) that is dated April 9, 2019. After update [KB4493730](<https://support.microsoft.com/help/4493730>) is installed, we recommend that you install the October 13, 2020 SSU ([KB4580971](<https://support.microsoft.com/help/4580971>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>).\n * Install the Extended Security Update (ESU): \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the \"Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4538483](<https://support.microsoft.com/en/help/4538483>)) or the \"Update for the Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4575903](<https://support.microsoft.com/help/4575903>)). The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). \n \nFor Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, you must have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems and follow the procedures in [KB4522133](<https://support.microsoft.com/help/4522133>) to continue receiving security updates after extended support ends. Extended support ends as follows:\n * For Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, extended support ends on January 14, 2020.\n * For Windows Embedded Standard 7, extended support ends on October 13, 2020.\nFor more information about ESU and which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>). \n \nFor Windows Embedded Standard 7, Windows Management Instrumentation (WMI) must be enabled to get updates from Windows Update or Windows Server Update Services. \n \nFor Windows Thin PC, you must have the August 11, 2020 SSU ([KB4570673](<https://support.microsoft.com/help/4570673>)) or a later SSU installed to make sure you continue to get the extended security updates starting with the October 13, 2020 updates.\n\n**Important: **You must restart your device after you install these required updates.\n\n**Install this update**To install this update, use one of the following release channels.**Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| No| See the other following options. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://support.microsoft.com/help/5003636>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically synchronize with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2008 Service Pack 2, Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1, Windows Server 2012, Windows Embedded 8 Standard, Windows 8.1, Windows Server 2012 R2**Classification**: Security Updates \n \n## **File information**\n\nThe English (United States) version of this software update installs files that have the attributes that are listed in the following tables.**Note** The MANIFEST files (.manifest) and MUM files (.mum) that are installed are not listed.\n\n### Windows 8.1, Windows RT 8.1 and Windows Server 2012 R2\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20038| 17-May-2021| 21:41| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:35| 1,341,952 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:26| 230,912 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 17-May-2021| 23:57| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:39| 4,387,840 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 17-May-2021| 23:58| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niedkcs32.dll| 18.0.9600.20038| 17-May-2021| 21:49| 333,312 \ninstall.ins| Not versioned| 17-May-2021| 20:00| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:28| 710,656 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 20:55| 489,472 \niedvtool.dll| 11.0.9600.20038| 17-May-2021| 22:47| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:52| 38,912 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:36| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:31| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 4,096 \nF12.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Resources.dll| 11.0.9600.18939| 10-Feb-2018| 9:17| 10,948,096 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nF12.dll| 11.0.9600.19963| 12-Feb-2021| 18:17| 1,207,808 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:50| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20038| 17-May-2021| 22:47| 20,294,656 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:40| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nieetwcollector.exe| 11.0.9600.18666| 16-Apr-2017| 0:47| 104,960 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 2:19| 4,096 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.20038| 17-May-2021| 21:32| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 19:58| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 19:58| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 19:58| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 19:58| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:36| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 17-May-2021| 23:17| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.20038| 17-May-2021| 22:08| 1,399,296 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:18| 65 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:19| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:19| 2,308,608 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:11| 692,224 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:23| 154,112 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 124,928 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:11| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 21:55| 13,881,856 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:40| 24,486 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:38| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:25| 1,678,023 \ninetcomm.dll| 6.3.9600.20038| 17-May-2021| 21:54| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:02| 4,112,896 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:11| 653,824 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:20| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20038| 17-May-2021| 21:37| 2,882,048 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 21:22| 108,544 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 19:18| 65,024 \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:39| 1,563,136 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 23:30| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 21:51| 43,008 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:35| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:01| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:20| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:00| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:58| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:02| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 18-May-2021| 1:26| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nhtml.iec| 2019.0.0.20038| 17-May-2021| 22:30| 417,280 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,132,992 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:33| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 18-May-2021| 1:26| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:06| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 18-May-2021| 1:26| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:47| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 276,480 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:08| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 18-May-2021| 1:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:14| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:55| 4,858,880 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 21:57| 54,784 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 2:49| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:36| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 18-May-2021| 1:24| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:14| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 75,776 \nieui.dll| 11.0.9600.20038| 17-May-2021| 22:22| 615,936 \niedkcs32.dll| 18.0.9600.20038| 17-May-2021| 21:53| 381,952 \ninstall.ins| Not versioned| 17-May-2021| 20:02| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:22| 800,768 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:41| 145,920 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 21:40| 33,280 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:47| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 21:32| 666,624 \niedvtool.dll| 11.0.9600.20038| 18-May-2021| 0:16| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:21| 50,176 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:53| 491,008 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 316,416 \nEscMigPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 124,416 \nescUnattend.exe| 11.0.9600.19326| 25-Mar-2019| 22:54| 87,040 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.20038| 18-May-2021| 1:24| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:51| 245,248 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 19:00| 10,949,120 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:50| 372,224 \nF12.dll| 11.0.9600.20038| 17-May-2021| 21:58| 1,422,848 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:52| 809,472 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:54| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 23:54| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 5:16| 60,416 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 22:08| 12,800 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 13,824 \nmshtmled.dll| 11.0.9600.20038| 17-May-2021| 22:03| 92,672 \nmshtml.dll| 11.0.9600.20038| 18-May-2021| 0:16| 25,759,744 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 3:30| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:41| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 21:54| 132,096 \nieetwcollector.exe| 11.0.9600.18895| 1-Jan-2018| 21:17| 116,224 \nieetwproxystub.dll| 11.0.9600.18895| 1-Jan-2018| 21:28| 48,640 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 3:30| 4,096 \nielowutil.exe| 11.0.9600.17416| 30-Oct-2014| 21:55| 222,720 \nieproxy.dll| 11.0.9600.20038| 17-May-2021| 21:21| 870,400 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:29| 387,072 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 22:10| 167,424 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 143,872 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 18:08| 51,712 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 21:51| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 18-May-2021| 0:42| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 591,872 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:44| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 1,862,656 \nMshtmlDac.dll| 11.0.9600.19846| 23-Sep-2020| 21:25| 88,064 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 18:38| 1,217,024 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 21:19| 152,064 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:43| 65 \nwebcheck.dll| 11.0.9600.20038| 17-May-2021| 21:53| 262,144 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:44| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 579,192 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 403,592 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 107,152 \nmsrating.dll| 11.0.9600.18895| 1-Jan-2018| 20:56| 199,680 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:38| 2,916,864 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:28| 728,064 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 21:56| 34,304 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 66,560 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:58| 16,303 \ninseng.dll| 11.0.9600.19101| 18-Jul-2018| 21:03| 107,520 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 21:29| 111,616 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:45| 219,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:07| 172,032 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 11:58| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 1,018,880 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 237,568 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 23:22| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:15| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:16| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:12| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,278,912 \nieframe.dll.mui| 11.0.9600.20038| 18-May-2021| 1:30| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 22:08| 15,506,432 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:41| 24,486 \nieinstal.exe| 11.0.9600.18639| 25-Mar-2017| 10:20| 492,032 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:14| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:57| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:03| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \ninetres.admx| Not versioned| 8-Feb-2021| 20:02| 1,678,023 \ninetcomm.dll| 6.3.9600.20038| 17-May-2021| 21:59| 1,033,216 \nINETRES.dll| 6.3.9600.16384| 22-Aug-2013| 4:43| 84,480 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:52| 5,500,928 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 19:03| 814,592 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:21| 785,408 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:31| 581,120 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:50| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20038| 17-May-2021| 22:47| 20,294,656 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:43| 3,228 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 21:55| 13,881,856 \nie9props.propdesc| Not versioned| 23-Sep-2013| 19:34| 2,843 \nwow64_ieframe.ptxml| Not versioned| 5-Feb-2014| 21:43| 24,486 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:02| 4,112,896 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:11| 653,824 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:20| 498,176 \nactxprxy.dll| 6.3.9600.20038| 17-May-2021| 21:41| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:35| 1,341,952 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 17-May-2021| 23:57| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:39| 4,387,840 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 17-May-2021| 23:58| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \niedkcs32.dll| 18.0.9600.20038| 17-May-2021| 21:49| 333,312 \ninstall.ins| Not versioned| 17-May-2021| 20:00| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:28| 710,656 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \niedvtool.dll| 11.0.9600.20038| 17-May-2021| 22:47| 772,608 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.20038| 17-May-2021| 21:32| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:19| 2,308,608 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20038| 17-May-2021| 23:58| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \ninetcomm.dll| 6.3.9600.20038| 17-May-2021| 21:54| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \n \n### \n\n__\n\nInternet Explorer 11 on all supported ARM-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20038| 17-May-2021| 21:10| 1,064,960 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:30| 68,608 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 47,616 \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:02| 1,035,776 \niexplore.exe| 11.0.9600.19867| 12-Oct-2020| 22:01| 807,816 \nWininetPlugin.dll| 6.3.9600.16384| 21-Aug-2013| 19:52| 33,792 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 10:19| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:10| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 17-May-2021| 22:43| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nhtml.iec| 2019.0.0.20038| 17-May-2021| 21:41| 320,000 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:18| 2,007,040 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 307,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,888 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,304 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,008 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 303,104 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:16| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 283,648 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 291,840 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,520 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,376 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 258,048 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 256,512 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 288,256 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 285,184 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 297,472 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 17-May-2021| 22:43| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 281,600 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 286,720 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 292,352 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 242,176 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 17-May-2021| 22:43| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:03| 63,488 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:04| 215,552 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 10:09| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:54| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 17-May-2021| 22:43| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:59| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:01| 4,147,712 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 19:43| 39,936 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18698| 14-May-2017| 12:41| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 17-May-2021| 22:43| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:22| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 75,776 \nieui.dll| 11.0.9600.19650| 11-Feb-2020| 4:46| 427,520 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 17:52| 292,864 \ninstall.ins| Not versioned| 17-May-2021| 19:58| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:04| 548,864 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 107,008 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 19:34| 23,552 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:02| 62,464 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.17416| 30-Oct-2014| 19:52| 495,616 \niedvtool.dll| 11.0.9600.20038| 17-May-2021| 21:31| 726,016 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 39,936 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:06| 364,032 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 17:58| 221,696 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:50| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:20| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:17| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.20038| 17-May-2021| 22:43| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20038| 17-May-2021| 21:29| 175,616 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 17:44| 10,948,608 \nF12Tools.dll| 11.0.9600.20038| 17-May-2021| 21:29| 263,680 \nF12.dll| 11.0.9600.20038| 17-May-2021| 21:21| 1,186,304 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:18| 587,776 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:51| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:43| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:34| 43,520 \nmsfeedssync.exe| 11.0.9600.16384| 21-Aug-2013| 20:05| 11,776 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 73,216 \nmshtml.dll| 11.0.9600.20038| 17-May-2021| 21:15| 16,229,376 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 1:36| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:39| 3,228 \nIEAdvpack.dll| 11.0.9600.16384| 21-Aug-2013| 19:54| 98,816 \nieetwcollector.exe| 11.0.9600.18658| 5-Apr-2017| 10:29| 98,816 \nieetwproxystub.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 43,008 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 1:36| 4,096 \nielowutil.exe| 11.0.9600.17031| 22-Feb-2014| 1:32| 222,208 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:33| 308,224 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:11| 268,800 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:43| 34,816 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.16518| 6-Feb-2014| 1:12| 112,128 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 17-May-2021| 22:16| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 457,216 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 574,976 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 18:12| 1,935,360 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:22| 60,928 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 17:57| 1,105,408 \noccache.dll| 11.0.9600.19867| 12-Oct-2020| 21:01| 121,856 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \nwebcheck.dll| 11.0.9600.19867| 12-Oct-2020| 20:57| 201,216 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \npdm.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 420,752 \nmsdbg2.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 295,320 \npdmproxy100.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 76,712 \nmsrating.dll| 11.0.9600.17905| 15-Jun-2015| 12:46| 157,184 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 21:35| 2,186,240 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 17:52| 678,400 \niernonce.dll| 11.0.9600.16518| 6-Feb-2014| 1:15| 28,160 \niesetup.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 59,904 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:46| 16,303 \ninseng.dll| 11.0.9600.16384| 21-Aug-2013| 19:35| 77,312 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:28| 87,552 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:02| 155,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:14| 130,048 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:09| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 734,720 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 19:49| 236,032 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:03| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,278,912 \nieframe.dll.mui| 11.0.9600.20038| 17-May-2021| 22:44| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:48| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:50| 1,890,304 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 21:06| 12,315,648 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:38| 24,486 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 18:45| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:24| 1,678,023 \ninetcomm.dll| 6.3.9600.20038| 17-May-2021| 21:20| 675,328 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 20:15| 84,480 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 21:11| 3,573,248 \njscript9diag.dll| 11.0.9600.20038| 17-May-2021| 21:35| 557,568 \njscript.dll| 5.8.9600.20038| 17-May-2021| 21:35| 516,608 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 21:39| 403,968 \n \n### Windows Server 2012\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **File size**| **Date**| **Time** \n---|---|---|---|--- \nFileinfo.xml| Not versioned| 589,367| 19-May-2021| 22:25 \nIe11-windows6.2-kb5003636-x86-express.cab| Not versioned| 716,156| 19-May-2021| 21:29 \nIe11-windows6.2-kb5003636-x86.msu| Not versioned| 24,076,551| 19-May-2021| 21:05 \nIe11-windows6.2-kb5003636-x86.psf| Not versioned| 160,551,914| 19-May-2021| 21:16 \nPackageinfo.xml| Not versioned| 1,133| 19-May-2021| 22:25 \nPackagestructure.xml| Not versioned| 149,422| 19-May-2021| 22:25 \nPrebvtpackageinfo.xml| Not versioned| 573| 19-May-2021| 22:25 \nIe11-windows6.2-kb5003636-x86.cab| Not versioned| 23,952,108| 19-May-2021| 20:55 \nIe11-windows6.2-kb5003636-x86.xml| Not versioned| 450| 19-May-2021| 20:59 \nWsusscan.cab| Not versioned| 172,680| 19-May-2021| 21:01 \nUrlmon.dll| 11.0.9600.20038| 1,341,952| 18-May-2021| 4:35 \nIexplore.exe| 11.0.9600.20038| 810,376| 19-May-2021| 18:16 \nWininet.dll.mui| 11.0.9600.20038| 46,592| 19-May-2021| 18:17 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:18 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:19 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:19 \nWininet.dll.mui| 11.0.9600.20038| 56,320| 19-May-2021| 18:20 \nWininet.dll.mui| 11.0.9600.20038| 57,856| 19-May-2021| 18:21 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:22 \nWininet.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:22 \nWininet.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:23 \nWininet.dll.mui| 11.0.9600.20038| 55,296| 19-May-2021| 18:24 \nWininet.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 18:25 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:26 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:27 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 18:27 \nWininet.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 18:28 \nWininet.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 18:29 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:30 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:31 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:32 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:33 \nWininet.dll.mui| 11.0.9600.20038| 53,760| 19-May-2021| 18:34 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:34 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:36 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:36 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:37 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 18:38 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:39 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:39 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:41 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:41 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:42 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:43 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:44 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:45 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:45 \nInetcpl.cpl| 11.0.9600.20038| 2,058,752| 18-May-2021| 4:50 \nMshtml.dll.mui| 11.0.9600.20038| 307,200| 19-May-2021| 18:17 \nMshtml.dll.mui| 11.0.9600.20038| 293,888| 19-May-2021| 18:18 \nMshtml.dll.mui| 11.0.9600.20038| 290,304| 19-May-2021| 18:19 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 18:19 \nMshtml.dll.mui| 11.0.9600.20038| 299,008| 19-May-2021| 18:20 \nMshtml.dll.mui| 11.0.9600.20038| 303,104| 19-May-2021| 18:21 \nMshtml.dll.mui| 11.0.9600.20038| 282,112| 19-May-2021| 19:47 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 18:22 \nMshtml.dll.mui| 11.0.9600.20038| 283,648| 19-May-2021| 18:23 \nMshtml.dll.mui| 11.0.9600.20038| 291,840| 19-May-2021| 18:23 \nMshtml.dll.mui| 11.0.9600.20038| 299,520| 19-May-2021| 18:24 \nMshtml.dll.mui| 11.0.9600.20038| 275,968| 19-May-2021| 18:25 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 18:26 \nMshtml.dll.mui| 11.0.9600.20038| 293,376| 19-May-2021| 18:27 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 18:28 \nMshtml.dll.mui| 11.0.9600.20038| 258,048| 19-May-2021| 18:28 \nMshtml.dll.mui| 11.0.9600.20038| 256,512| 19-May-2021| 18:29 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 18:30 \nMshtml.dll.mui| 11.0.9600.20038| 288,256| 19-May-2021| 18:31 \nMshtml.dll.mui| 11.0.9600.20038| 285,184| 19-May-2021| 18:32 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 18:33 \nMshtml.dll.mui| 11.0.9600.20038| 297,472| 19-May-2021| 18:34 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 18:35 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 18:35 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 18:36 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 18:37 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 18:38 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 18:39 \nMshtml.dll.mui| 11.0.9600.20038| 288,768| 19-May-2021| 18:39 \nMshtml.dll.mui| 11.0.9600.20038| 286,208| 19-May-2021| 18:40 \nMshtml.dll.mui| 11.0.9600.20038| 281,600| 19-May-2021| 18:41 \nMshtml.dll.mui| 11.0.9600.20038| 286,720| 19-May-2021| 18:42 \nMshtml.dll.mui| 11.0.9600.20038| 292,352| 19-May-2021| 18:43 \nMshtml.dll.mui| 11.0.9600.20038| 242,176| 19-May-2021| 18:44 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 18:45 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 18:46 \nUrlmon.dll.mui| 11.0.9600.20038| 46,080| 19-May-2021| 18:17 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:18 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:18 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:19 \nUrlmon.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:20 \nUrlmon.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:21 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:22 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:23 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:23 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:24 \nUrlmon.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 18:25 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:26 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:27 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:28 \nUrlmon.dll.mui| 11.0.9600.20038| 39,936| 19-May-2021| 18:28 \nUrlmon.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 18:30 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:30 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:31 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:32 \nUrlmon.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:33 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:34 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:35 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:36 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:36 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:37 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:38 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:39 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:39 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:40 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 18:41 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:42 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 18:43 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:43 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:44 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:45 \nJsproxy.dll| 11.0.9600.20038| 47,104| 18-May-2021| 5:13 \nWininet.dll| 11.0.9600.20038| 4,387,840| 18-May-2021| 4:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,176| 19-May-2021| 18:17 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,928| 19-May-2021| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,880| 19-May-2021| 18:19 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,048| 19-May-2021| 18:20 \nInetcpl.cpl.mui| 11.0.9600.20038| 138,240| 19-May-2021| 18:21 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,688| 19-May-2021| 19:48 \nInetcpl.cpl.mui| 11.0.9600.20038| 131,584| 19-May-2021| 18:22 \nInetcpl.cpl.mui| 11.0.9600.20038| 117,760| 19-May-2021| 18:23 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,368| 19-May-2021| 18:23 \nInetcpl.cpl.mui| 11.0.9600.20038| 134,144| 19-May-2021| 18:24 \nInetcpl.cpl.mui| 11.0.9600.20038| 107,008| 19-May-2021| 18:25 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 18:26 \nInetcpl.cpl.mui| 11.0.9600.20038| 127,488| 19-May-2021| 18:27 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,512| 19-May-2021| 18:28 \nInetcpl.cpl.mui| 11.0.9600.20038| 88,576| 19-May-2021| 18:28 \nInetcpl.cpl.mui| 11.0.9600.20038| 82,944| 19-May-2021| 18:30 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 18:30 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 18:31 \nInetcpl.cpl.mui| 11.0.9600.20038| 120,320| 19-May-2021| 18:32 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 18:33 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,952| 19-May-2021| 18:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:35 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,000| 19-May-2021| 18:36 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:37 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:38 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,416| 19-May-2021| 18:40 \nInetcpl.cpl.mui| 11.0.9600.20038| 121,856| 19-May-2021| 18:40 \nInetcpl.cpl.mui| 11.0.9600.20038| 115,712| 19-May-2021| 18:41 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:42 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 18:43 \nInetcpl.cpl.mui| 11.0.9600.20038| 72,704| 19-May-2021| 18:44 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 18:45 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 18:46 \nMsfeedsbs.dll| 11.0.9600.20038| 52,736| 18-May-2021| 4:57 \nMsfeedsbs.mof| Not versioned| 1,574| 18-May-2021| 3:12 \nMsfeedssync.exe| 11.0.9600.20038| 11,776| 18-May-2021| 5:19 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not versioned| 3,228| 18-May-2021| 2:59 \nMshtml.dll| 11.0.9600.20038| 20,294,656| 18-May-2021| 5:47 \nMshtml.tlb| 11.0.9600.20038| 2,724,864| 18-May-2021| 5:29 \nIeproxy.dll| 11.0.9600.20038| 310,784| 18-May-2021| 4:26 \nIeshims.dll| 11.0.9600.20038| 290,304| 18-May-2021| 4:32 \nIertutil.dll| 11.0.9600.20038| 2,308,608| 18-May-2021| 5:19 \nSqmapi.dll| 6.2.9200.16384| 228,232| 19-May-2021| 18:16 \nIeframe.dll.mui| 11.0.9600.20038| 2,066,432| 19-May-2021| 18:17 \nIeframe.dll.mui| 11.0.9600.20038| 2,121,216| 19-May-2021| 18:18 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,136| 19-May-2021| 18:19 \nIeframe.dll.mui| 11.0.9600.20038| 2,063,872| 19-May-2021| 18:20 \nIeframe.dll.mui| 11.0.9600.20038| 2,314,240| 19-May-2021| 18:21 \nIeframe.dll.mui| 11.0.9600.20038| 2,390,528| 19-May-2021| 18:21 \nIeframe.dll.mui| 11.0.9600.20038| 2,033,152| 19-May-2021| 19:48 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 18:22 \nIeframe.dll.mui| 11.0.9600.20038| 2,255,872| 19-May-2021| 18:23 \nIeframe.dll.mui| 11.0.9600.20038| 2,061,312| 19-May-2021| 18:24 \nIeframe.dll.mui| 11.0.9600.20038| 2,326,016| 19-May-2021| 18:25 \nIeframe.dll.mui| 11.0.9600.20038| 2,019,840| 19-May-2021| 18:26 \nIeframe.dll.mui| 11.0.9600.20038| 2,071,040| 19-May-2021| 18:26 \nIeframe.dll.mui| 11.0.9600.20038| 2,082,816| 19-May-2021| 18:27 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 18:28 \nIeframe.dll.mui| 11.0.9600.20038| 2,170,368| 19-May-2021| 18:29 \nIeframe.dll.mui| 11.0.9600.20038| 2,153,984| 19-May-2021| 18:30 \nIeframe.dll.mui| 11.0.9600.20038| 2,291,712| 19-May-2021| 18:31 \nIeframe.dll.mui| 11.0.9600.20038| 2,283,520| 19-May-2021| 18:32 \nIeframe.dll.mui| 11.0.9600.20038| 2,052,096| 19-May-2021| 18:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,301,952| 19-May-2021| 18:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,093,056| 19-May-2021| 18:34 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,648| 19-May-2021| 18:35 \nIeframe.dll.mui| 11.0.9600.20038| 2,299,392| 19-May-2021| 18:36 \nIeframe.dll.mui| 11.0.9600.20038| 2,094,592| 19-May-2021| 18:37 \nIeframe.dll.mui| 11.0.9600.20038| 2,316,800| 19-May-2021| 18:38 \nIeframe.dll.mui| 11.0.9600.20038| 2,305,536| 19-May-2021| 18:38 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 18:39 \nIeframe.dll.mui| 11.0.9600.20038| 2,277,888| 19-May-2021| 18:40 \nIeframe.dll.mui| 11.0.9600.20038| 2,060,288| 19-May-2021| 18:41 \nIeframe.dll.mui| 11.0.9600.20038| 2,315,776| 19-May-2021| 18:42 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 18:42 \nIeframe.dll.mui| 11.0.9600.20038| 2,324,992| 19-May-2021| 18:43 \nIeframe.dll.mui| 11.0.9600.20038| 2,098,176| 19-May-2021| 18:44 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 18:45 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 18:46 \nIeframe.dll| 11.0.9600.20038| 13,881,856| 18-May-2021| 4:55 \nIeframe.ptxml| Not versioned| 24,486| 18-May-2021| 2:58 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:17 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:18 \nInetres.adml| Not versioned| 526,294| 19-May-2021| 18:19 \nInetres.adml| Not versioned| 499,654| 19-May-2021| 18:19 \nInetres.adml| Not versioned| 552,337| 19-May-2021| 18:20 \nInetres.adml| Not versioned| 944,559| 19-May-2021| 18:21 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:47 \nInetres.adml| Not versioned| 543,946| 19-May-2021| 18:22 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:23 \nInetres.adml| Not versioned| 526,557| 19-May-2021| 18:23 \nInetres.adml| Not versioned| 575,838| 19-May-2021| 18:24 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:25 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:26 \nInetres.adml| Not versioned| 570,737| 19-May-2021| 18:27 \nInetres.adml| Not versioned| 548,119| 19-May-2021| 18:27 \nInetres.adml| Not versioned| 639,271| 19-May-2021| 18:28 \nInetres.adml| Not versioned| 525,504| 19-May-2021| 18:29 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:30 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:31 \nInetres.adml| Not versioned| 488,488| 19-May-2021| 18:32 \nInetres.adml| Not versioned| 548,494| 19-May-2021| 18:33 \nInetres.adml| Not versioned| 559,343| 19-May-2021| 18:34 \nInetres.adml| Not versioned| 535,067| 19-May-2021| 18:35 \nInetres.adml| Not versioned| 541,455| 19-May-2021| 18:35 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:36 \nInetres.adml| Not versioned| 804,470| 19-May-2021| 18:37 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:38 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:39 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:39 \nInetres.adml| Not versioned| 503,909| 19-May-2021| 18:40 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:41 \nInetres.adml| Not versioned| 521,583| 19-May-2021| 18:42 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 18:43 \nInetres.adml| Not versioned| 420,082| 19-May-2021| 18:44 \nInetres.adml| Not versioned| 436,651| 19-May-2021| 18:45 \nInetres.adml| Not versioned| 436,651| 19-May-2021| 18:46 \nInetres.admx| Not versioned| 1,678,023| 9-Apr-2021| 0:59 \nJscript9.dll.mui| 11.0.9600.20038| 29,184| 19-May-2021| 18:17 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:18 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:19 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:19 \nJscript9.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:20 \nJscript9.dll.mui| 11.0.9600.20038| 37,888| 19-May-2021| 18:21 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:47 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:22 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:23 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:23 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:24 \nJscript9.dll.mui| 11.0.9600.20038| 27,648| 19-May-2021| 18:25 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:26 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:27 \nJscript9.dll.mui| 11.0.9600.20038| 33,792| 19-May-2021| 18:27 \nJscript9.dll.mui| 11.0.9600.20038| 23,040| 19-May-2021| 18:28 \nJscript9.dll.mui| 11.0.9600.20038| 22,016| 19-May-2021| 18:29 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:30 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:31 \nJscript9.dll.mui| 11.0.9600.20038| 31,232| 19-May-2021| 18:32 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:33 \nJscript9.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 18:34 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:35 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:35 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:36 \nJscript9.dll.mui| 11.0.9600.20038| 34,816| 19-May-2021| 18:38 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:38 \nJscript9.dll.mui| 11.0.9600.20038| 32,256| 19-May-2021| 18:39 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:39 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:40 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:41 \nJscript9.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:42 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:43 \nJscript9.dll.mui| 11.0.9600.20038| 16,384| 19-May-2021| 18:43 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 18:44 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 18:45 \nJscript9.dll| 11.0.9600.20038| 4,112,896| 18-May-2021| 5:02 \nJscript9diag.dll| 11.0.9600.20038| 620,032| 18-May-2021| 5:10 \nJscript.dll| 5.8.9600.20038| 653,824| 18-May-2021| 5:11 \nVbscript.dll| 5.8.9600.20038| 498,176| 18-May-2021| 5:20 \nPackage.cab| Not versioned| 300,489| 19-May-2021| 20:59 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **File size**| **Date**| **Time** \n---|---|---|---|--- \nFileinfo.xml| Not versioned| 916,651| 19-May-2021| 22:52 \nIe11-windows6.2-kb5003636-x64-express.cab| Not versioned| 1,195,395| 19-May-2021| 21:30 \nIe11-windows6.2-kb5003636-x64.msu| Not versioned| 44,923,495| 19-May-2021| 21:07 \nIe11-windows6.2-kb5003636-x64.psf| Not versioned| 226,183,901| 19-May-2021| 21:21 \nPackageinfo.xml| Not versioned| 1,228| 19-May-2021| 22:52 \nPackagestructure.xml| Not versioned| 239,770| 19-May-2021| 22:52 \nPrebvtpackageinfo.xml| Not versioned| 652| 19-May-2021| 22:52 \nIe11-windows6.2-kb5003636-x64.cab| Not versioned| 44,835,383| 19-May-2021| 20:59 \nIe11-windows6.2-kb5003636-x64.xml| Not versioned| 452| 19-May-2021| 20:59 \nWsusscan.cab| Not versioned| 172,262| 19-May-2021| 21:03 \nUrlmon.dll| 11.0.9600.20038| 1,563,136| 18-May-2021| 4:39 \nIexplore.exe| 11.0.9600.20038| 810,376| 19-May-2021| 19:13 \nWininet.dll.mui| 11.0.9600.20038| 46,592| 19-May-2021| 19:14 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 19:15 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 19:15 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 19:16 \nWininet.dll.mui| 11.0.9600.20038| 56,320| 19-May-2021| 19:17 \nWininet.dll.mui| 11.0.9600.20038| 57,856| 19-May-2021| 19:18 \nWininet.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 20:09 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 19:19 \nWininet.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 19:20 \nWininet.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:21 \nWininet.dll.mui| 11.0.9600.20038| 55,296| 19-May-2021| 19:21 \nWininet.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 19:23 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 19:23 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 19:24 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 19:25 \nWininet.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 19:25 \nWininet.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 19:26 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:27 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 19:28 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 19:29 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 19:30 \nWininet.dll.mui| 11.0.9600.20038| 53,760| 19-May-2021| 19:30 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 19:31 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 19:32 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 19:33 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 19:34 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 19:34 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 19:35 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 19:36 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 19:37 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 19:38 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:38 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:39 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 19:40 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 19:41 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 19:42 \nInetcpl.cpl| 11.0.9600.20038| 2,132,992| 18-May-2021| 4:50 \nMshtml.dll.mui| 11.0.9600.20038| 307,200| 19-May-2021| 19:14 \nMshtml.dll.mui| 11.0.9600.20038| 293,888| 19-May-2021| 19:15 \nMshtml.dll.mui| 11.0.9600.20038| 290,304| 19-May-2021| 19:16 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 19:17 \nMshtml.dll.mui| 11.0.9600.20038| 299,008| 19-May-2021| 19:17 \nMshtml.dll.mui| 11.0.9600.20038| 303,104| 19-May-2021| 19:18 \nMshtml.dll.mui| 11.0.9600.20038| 282,112| 19-May-2021| 20:10 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 19:19 \nMshtml.dll.mui| 11.0.9600.20038| 283,648| 19-May-2021| 19:20 \nMshtml.dll.mui| 11.0.9600.20038| 291,840| 19-May-2021| 19:20 \nMshtml.dll.mui| 11.0.9600.20038| 299,520| 19-May-2021| 19:21 \nMshtml.dll.mui| 11.0.9600.20038| 275,968| 19-May-2021| 19:22 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 19:23 \nMshtml.dll.mui| 11.0.9600.20038| 293,376| 19-May-2021| 19:24 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 19:25 \nMshtml.dll.mui| 11.0.9600.20038| 258,048| 19-May-2021| 19:25 \nMshtml.dll.mui| 11.0.9600.20038| 256,512| 19-May-2021| 19:26 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 19:27 \nMshtml.dll.mui| 11.0.9600.20038| 288,256| 19-May-2021| 19:28 \nMshtml.dll.mui| 11.0.9600.20038| 285,184| 19-May-2021| 19:29 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 19:30 \nMshtml.dll.mui| 11.0.9600.20038| 297,472| 19-May-2021| 19:31 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 19:32 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 19:32 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 19:33 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 19:34 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 19:35 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 19:35 \nMshtml.dll.mui| 11.0.9600.20038| 288,768| 19-May-2021| 19:36 \nMshtml.dll.mui| 11.0.9600.20038| 286,208| 19-May-2021| 19:37 \nMshtml.dll.mui| 11.0.9600.20038| 281,600| 19-May-2021| 19:38 \nMshtml.dll.mui| 11.0.9600.20038| 286,720| 19-May-2021| 19:38 \nMshtml.dll.mui| 11.0.9600.20038| 292,352| 19-May-2021| 19:39 \nMshtml.dll.mui| 11.0.9600.20038| 242,176| 19-May-2021| 19:40 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 19:41 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 19:42 \nUrlmon.dll.mui| 11.0.9600.20038| 46,080| 19-May-2021| 19:14 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:15 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 19:16 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 19:17 \nUrlmon.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 19:17 \nUrlmon.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 19:18 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 20:09 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:19 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 19:20 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:21 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 19:21 \nUrlmon.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 19:22 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:23 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:24 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 19:24 \nUrlmon.dll.mui| 11.0.9600.20038| 39,936| 19-May-2021| 19:25 \nUrlmon.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 19:26 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 19:27 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 19:28 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 19:29 \nUrlmon.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 19:30 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 19:30 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 19:32 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:32 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:33 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 19:34 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 19:34 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 19:35 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 19:36 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 19:37 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 19:38 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 19:39 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 19:39 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 19:40 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 19:41 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 19:42 \nJsproxy.dll| 11.0.9600.20038| 54,784| 18-May-2021| 5:24 \nWininet.dll| 11.0.9600.20038| 4,858,880| 18-May-2021| 4:55 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,176| 19-May-2021| 19:14 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 19:15 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,928| 19-May-2021| 19:16 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,880| 19-May-2021| 19:17 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,048| 19-May-2021| 19:17 \nInetcpl.cpl.mui| 11.0.9600.20038| 138,240| 19-May-2021| 19:18 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,688| 19-May-2021| 20:10 \nInetcpl.cpl.mui| 11.0.9600.20038| 131,584| 19-May-2021| 19:19 \nInetcpl.cpl.mui| 11.0.9600.20038| 117,760| 19-May-2021| 19:20 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,368| 19-May-2021| 19:20 \nInetcpl.cpl.mui| 11.0.9600.20038| 134,144| 19-May-2021| 19:21 \nInetcpl.cpl.mui| 11.0.9600.20038| 107,008| 19-May-2021| 19:22 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 19:23 \nInetcpl.cpl.mui| 11.0.9600.20038| 127,488| 19-May-2021| 19:24 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,512| 19-May-2021| 19:25 \nInetcpl.cpl.mui| 11.0.9600.20038| 88,576| 19-May-2021| 19:26 \nInetcpl.cpl.mui| 11.0.9600.20038| 82,944| 19-May-2021| 19:26 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 19:27 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 19:28 \nInetcpl.cpl.mui| 11.0.9600.20038| 120,320| 19-May-2021| 19:29 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 19:30 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 19:31 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,952| 19-May-2021| 19:32 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 19:32 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,000| 19-May-2021| 19:33 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 19:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 19:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 19:35 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,416| 19-May-2021| 19:36 \nInetcpl.cpl.mui| 11.0.9600.20038| 121,856| 19-May-2021| 19:37 \nInetcpl.cpl.mui| 11.0.9600.20038| 115,712| 19-May-2021| 19:38 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 19:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 19:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 72,704| 19-May-2021| 19:40 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 19:41 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 19:42 \nMsfeedsbs.dll| 11.0.9600.20038| 60,416| 18-May-2021| 5:03 \nMsfeedsbs.mof| Not versioned| 1,574| 18-May-2021| 3:14 \nMsfeedssync.exe| 11.0.9600.20038| 13,312| 18-May-2021| 5:32 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not versioned| 3,228| 18-May-2021| 3:01 \nMshtml.dll| 11.0.9600.20038| 25,759,744| 18-May-2021| 7:16 \nMshtml.tlb| 11.0.9600.20038| 2,724,864| 18-May-2021| 5:43 \nIeproxy.dll| 11.0.9600.20038| 870,400| 18-May-2021| 4:21 \nIeshims.dll| 11.0.9600.20038| 387,072| 18-May-2021| 4:27 \nIertutil.dll| 11.0.9600.20038| 2,916,864| 18-May-2021| 5:38 \nSqmapi.dll| 6.2.9200.16384| 286,088| 19-May-2021| 19:13 \nIeframe.dll.mui| 11.0.9600.20038| 2,066,432| 19-May-2021| 19:14 \nIeframe.dll.mui| 11.0.9600.20038| 2,121,216| 19-May-2021| 19:15 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,136| 19-May-2021| 19:16 \nIeframe.dll.mui| 11.0.9600.20038| 2,063,872| 19-May-2021| 19:17 \nIeframe.dll.mui| 11.0.9600.20038| 2,314,240| 19-May-2021| 19:18 \nIeframe.dll.mui| 11.0.9600.20038| 2,390,528| 19-May-2021| 19:18 \nIeframe.dll.mui| 11.0.9600.20038| 2,033,152| 19-May-2021| 20:10 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 19:19 \nIeframe.dll.mui| 11.0.9600.20038| 2,255,872| 19-May-2021| 19:20 \nIeframe.dll.mui| 11.0.9600.20038| 2,061,312| 19-May-2021| 19:21 \nIeframe.dll.mui| 11.0.9600.20038| 2,326,016| 19-May-2021| 19:22 \nIeframe.dll.mui| 11.0.9600.20038| 2,019,840| 19-May-2021| 19:22 \nIeframe.dll.mui| 11.0.9600.20038| 2,071,040| 19-May-2021| 19:23 \nIeframe.dll.mui| 11.0.9600.20038| 2,082,816| 19-May-2021| 19:24 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 19:25 \nIeframe.dll.mui| 11.0.9600.20038| 2,170,368| 19-May-2021| 19:26 \nIeframe.dll.mui| 11.0.9600.20038| 2,153,984| 19-May-2021| 19:27 \nIeframe.dll.mui| 11.0.9600.20038| 2,291,712| 19-May-2021| 19:28 \nIeframe.dll.mui| 11.0.9600.20038| 2,283,520| 19-May-2021| 19:28 \nIeframe.dll.mui| 11.0.9600.20038| 2,052,096| 19-May-2021| 19:29 \nIeframe.dll.mui| 11.0.9600.20038| 2,301,952| 19-May-2021| 19:30 \nIeframe.dll.mui| 11.0.9600.20038| 2,093,056| 19-May-2021| 19:31 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,648| 19-May-2021| 19:32 \nIeframe.dll.mui| 11.0.9600.20038| 2,299,392| 19-May-2021| 19:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,094,592| 19-May-2021| 19:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,316,800| 19-May-2021| 19:34 \nIeframe.dll.mui| 11.0.9600.20038| 2,305,536| 19-May-2021| 19:35 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 19:36 \nIeframe.dll.mui| 11.0.9600.20038| 2,277,888| 19-May-2021| 19:36 \nIeframe.dll.mui| 11.0.9600.20038| 2,060,288| 19-May-2021| 19:37 \nIeframe.dll.mui| 11.0.9600.20038| 2,315,776| 19-May-2021| 19:38 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 19:39 \nIeframe.dll.mui| 11.0.9600.20038| 2,324,992| 19-May-2021| 19:40 \nIeframe.dll.mui| 11.0.9600.20038| 2,098,176| 19-May-2021| 19:40 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 19:41 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 19:42 \nIeframe.dll| 11.0.9600.20038| 15,506,432| 18-May-2021| 5:08 \nIeframe.ptxml| Not versioned| 24,486| 18-May-2021| 3:00 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:14 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:15 \nInetres.adml| Not versioned| 526,294| 19-May-2021| 19:16 \nInetres.adml| Not versioned| 499,654| 19-May-2021| 19:17 \nInetres.adml| Not versioned| 552,337| 19-May-2021| 19:17 \nInetres.adml| Not versioned| 944,559| 19-May-2021| 19:18 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 20:10 \nInetres.adml| Not versioned| 543,946| 19-May-2021| 19:19 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:20 \nInetres.adml| Not versioned| 526,557| 19-May-2021| 19:20 \nInetres.adml| Not versioned| 575,838| 19-May-2021| 19:21 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:22 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:23 \nInetres.adml| Not versioned| 570,737| 19-May-2021| 19:24 \nInetres.adml| Not versioned| 548,119| 19-May-2021| 19:25 \nInetres.adml| Not versioned| 639,271| 19-May-2021| 19:25 \nInetres.adml| Not versioned| 525,504| 19-May-2021| 19:26 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:27 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:28 \nInetres.adml| Not versioned| 488,488| 19-May-2021| 19:29 \nInetres.adml| Not versioned| 548,494| 19-May-2021| 19:30 \nInetres.adml| Not versioned| 559,343| 19-May-2021| 19:31 \nInetres.adml| Not versioned| 535,067| 19-May-2021| 19:31 \nInetres.adml| Not versioned| 541,455| 19-May-2021| 19:32 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:33 \nInetres.adml| Not versioned| 804,470| 19-May-2021| 19:34 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:34 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:35 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:36 \nInetres.adml| Not versioned| 503,909| 19-May-2021| 19:37 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:38 \nInetres.adml| Not versioned| 521,583| 19-May-2021| 19:38 \nInetres.adml| Not versioned| 457,561| 19-May-2021| 19:39 \nInetres.adml| Not versioned| 420,082| 19-May-2021| 19:40 \nInetres.adml| Not versioned| 436,651| 19-May-2021| 19:41 \nInetres.adml| Not versioned| 436,651| 19-May-2021| 19:42 \nInetres.admx| Not versioned| 1,678,023| 25-Mar-2021| 1:16 \nJscript9.dll.mui| 11.0.9600.20038| 29,184| 19-May-2021| 19:14 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:15 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 19:16 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 19:17 \nJscript9.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 19:17 \nJscript9.dll.mui| 11.0.9600.20038| 37,888| 19-May-2021| 19:18 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 20:10 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 19:19 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:20 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 19:21 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 19:21 \nJscript9.dll.mui| 11.0.9600.20038| 27,648| 19-May-2021| 19:22 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:23 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 19:24 \nJscript9.dll.mui| 11.0.9600.20038| 33,792| 19-May-2021| 19:24 \nJscript9.dll.mui| 11.0.9600.20038| 23,040| 19-May-2021| 19:26 \nJscript9.dll.mui| 11.0.9600.20038| 22,016| 19-May-2021| 19:26 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:27 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:28 \nJscript9.dll.mui| 11.0.9600.20038| 31,232| 19-May-2021| 19:29 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 19:30 \nJscript9.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 19:31 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 19:31 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 19:32 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:33 \nJscript9.dll.mui| 11.0.9600.20038| 34,816| 19-May-2021| 19:34 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 19:34 \nJscript9.dll.mui| 11.0.9600.20038| 32,256| 19-May-2021| 19:35 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:36 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 19:37 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:38 \nJscript9.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 19:39 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:39 \nJscript9.dll.mui| 11.0.9600.20038| 16,384| 19-May-2021| 19:40 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 19:41 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 19:42 \nJscript9.dll| 11.0.9600.20038| 5,500,928| 18-May-2021| 5:52 \nJscript9diag.dll| 11.0.9600.20038| 814,592| 18-May-2021| 5:21 \nJscript.dll| 5.8.9600.20038| 785,408| 18-May-2021| 5:21 \nVbscript.dll| 5.8.9600.20038| 581,120| 18-May-2021| 5:31 \nIexplore.exe| 11.0.9600.20038| 810,376| 19-May-2021| 18:16 \nMshtml.dll| 11.0.9600.20038| 20,294,656| 18-May-2021| 5:47 \nMshtml.tlb| 11.0.9600.20038| 2,724,864| 18-May-2021| 5:29 \nWow64_microsoft-windows-ie-htmlrendering.ptxml| Not versioned| 3,228| 18-May-2021| 3:03 \nIe9props.propdesc| Not versioned| 2,843| 9-Apr-2021| 0:56 \nIeframe.dll| 11.0.9600.20038| 13,881,856| 18-May-2021| 4:55 \nWow64_ieframe.ptxml| Not versioned| 24,486| 18-May-2021| 3:02 \nJscript9.dll| 11.0.9600.20038| 4,112,896| 18-May-2021| 5:02 \nJscript9diag.dll| 11.0.9600.20038| 620,032| 18-May-2021| 5:10 \nJscript.dll| 5.8.9600.20038| 653,824| 18-May-2021| 5:11 \nVbscript.dll| 5.8.9600.20038| 498,176| 18-May-2021| 5:20 \nUrlmon.dll| 11.0.9600.20038| 1,341,952| 18-May-2021| 4:35 \nWininet.dll.mui| 11.0.9600.20038| 46,592| 19-May-2021| 18:17 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:18 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:19 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:19 \nWininet.dll.mui| 11.0.9600.20038| 56,320| 19-May-2021| 18:20 \nWininet.dll.mui| 11.0.9600.20038| 57,856| 19-May-2021| 18:21 \nWininet.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 19:48 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:22 \nWininet.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:22 \nWininet.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:23 \nWininet.dll.mui| 11.0.9600.20038| 55,296| 19-May-2021| 18:24 \nWininet.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 18:25 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:26 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:27 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 18:27 \nWininet.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 18:28 \nWininet.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 18:29 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:30 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:31 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:32 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:33 \nWininet.dll.mui| 11.0.9600.20038| 53,760| 19-May-2021| 18:34 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:34 \nWininet.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:36 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:36 \nWininet.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:37 \nWininet.dll.mui| 11.0.9600.20038| 53,248| 19-May-2021| 18:38 \nWininet.dll.mui| 11.0.9600.20038| 52,736| 19-May-2021| 18:39 \nWininet.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:39 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:41 \nWininet.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:41 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:42 \nWininet.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:43 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:44 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:45 \nWininet.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:45 \nInetcpl.cpl| 11.0.9600.20038| 2,058,752| 18-May-2021| 4:50 \nMshtml.dll.mui| 11.0.9600.20038| 307,200| 19-May-2021| 18:17 \nMshtml.dll.mui| 11.0.9600.20038| 293,888| 19-May-2021| 18:18 \nMshtml.dll.mui| 11.0.9600.20038| 290,304| 19-May-2021| 18:19 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 18:19 \nMshtml.dll.mui| 11.0.9600.20038| 299,008| 19-May-2021| 18:20 \nMshtml.dll.mui| 11.0.9600.20038| 303,104| 19-May-2021| 18:21 \nMshtml.dll.mui| 11.0.9600.20038| 282,112| 19-May-2021| 19:47 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 18:22 \nMshtml.dll.mui| 11.0.9600.20038| 283,648| 19-May-2021| 18:23 \nMshtml.dll.mui| 11.0.9600.20038| 291,840| 19-May-2021| 18:23 \nMshtml.dll.mui| 11.0.9600.20038| 299,520| 19-May-2021| 18:24 \nMshtml.dll.mui| 11.0.9600.20038| 275,968| 19-May-2021| 18:25 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 18:26 \nMshtml.dll.mui| 11.0.9600.20038| 293,376| 19-May-2021| 18:27 \nMshtml.dll.mui| 11.0.9600.20038| 296,960| 19-May-2021| 18:28 \nMshtml.dll.mui| 11.0.9600.20038| 258,048| 19-May-2021| 18:28 \nMshtml.dll.mui| 11.0.9600.20038| 256,512| 19-May-2021| 18:29 \nMshtml.dll.mui| 11.0.9600.20038| 289,280| 19-May-2021| 18:30 \nMshtml.dll.mui| 11.0.9600.20038| 288,256| 19-May-2021| 18:31 \nMshtml.dll.mui| 11.0.9600.20038| 285,184| 19-May-2021| 18:32 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 18:33 \nMshtml.dll.mui| 11.0.9600.20038| 297,472| 19-May-2021| 18:34 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 18:35 \nMshtml.dll.mui| 11.0.9600.20038| 295,424| 19-May-2021| 18:35 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 18:36 \nMshtml.dll.mui| 11.0.9600.20038| 294,400| 19-May-2021| 18:37 \nMshtml.dll.mui| 11.0.9600.20038| 292,864| 19-May-2021| 18:38 \nMshtml.dll.mui| 11.0.9600.20038| 290,816| 19-May-2021| 18:39 \nMshtml.dll.mui| 11.0.9600.20038| 288,768| 19-May-2021| 18:39 \nMshtml.dll.mui| 11.0.9600.20038| 286,208| 19-May-2021| 18:40 \nMshtml.dll.mui| 11.0.9600.20038| 281,600| 19-May-2021| 18:41 \nMshtml.dll.mui| 11.0.9600.20038| 286,720| 19-May-2021| 18:42 \nMshtml.dll.mui| 11.0.9600.20038| 292,352| 19-May-2021| 18:43 \nMshtml.dll.mui| 11.0.9600.20038| 242,176| 19-May-2021| 18:44 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 18:45 \nMshtml.dll.mui| 11.0.9600.20038| 243,200| 19-May-2021| 18:46 \nUrlmon.dll.mui| 11.0.9600.20038| 46,080| 19-May-2021| 18:17 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:18 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:18 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:19 \nUrlmon.dll.mui| 11.0.9600.20038| 51,712| 19-May-2021| 18:20 \nUrlmon.dll.mui| 11.0.9600.20038| 54,272| 19-May-2021| 18:21 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 19:47 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:22 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:23 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:23 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:24 \nUrlmon.dll.mui| 11.0.9600.20038| 45,056| 19-May-2021| 18:25 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:26 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:27 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:28 \nUrlmon.dll.mui| 11.0.9600.20038| 39,936| 19-May-2021| 18:28 \nUrlmon.dll.mui| 11.0.9600.20038| 39,424| 19-May-2021| 18:30 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:30 \nUrlmon.dll.mui| 11.0.9600.20038| 47,616| 19-May-2021| 18:31 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:32 \nUrlmon.dll.mui| 11.0.9600.20038| 51,200| 19-May-2021| 18:33 \nUrlmon.dll.mui| 11.0.9600.20038| 50,688| 19-May-2021| 18:34 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:35 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:36 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:36 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:37 \nUrlmon.dll.mui| 11.0.9600.20038| 50,176| 19-May-2021| 18:38 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:39 \nUrlmon.dll.mui| 11.0.9600.20038| 49,664| 19-May-2021| 18:39 \nUrlmon.dll.mui| 11.0.9600.20038| 48,640| 19-May-2021| 18:40 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 18:41 \nUrlmon.dll.mui| 11.0.9600.20038| 49,152| 19-May-2021| 18:42 \nUrlmon.dll.mui| 11.0.9600.20038| 48,128| 19-May-2021| 18:43 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:43 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:44 \nUrlmon.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:45 \nJsproxy.dll| 11.0.9600.20038| 47,104| 18-May-2021| 5:13 \nWininet.dll| 11.0.9600.20038| 4,387,840| 18-May-2021| 4:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,176| 19-May-2021| 18:17 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,928| 19-May-2021| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,880| 19-May-2021| 18:19 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,048| 19-May-2021| 18:20 \nInetcpl.cpl.mui| 11.0.9600.20038| 138,240| 19-May-2021| 18:21 \nInetcpl.cpl.mui| 11.0.9600.20038| 114,688| 19-May-2021| 19:48 \nInetcpl.cpl.mui| 11.0.9600.20038| 131,584| 19-May-2021| 18:22 \nInetcpl.cpl.mui| 11.0.9600.20038| 117,760| 19-May-2021| 18:23 \nInetcpl.cpl.mui| 11.0.9600.20038| 122,368| 19-May-2021| 18:23 \nInetcpl.cpl.mui| 11.0.9600.20038| 134,144| 19-May-2021| 18:24 \nInetcpl.cpl.mui| 11.0.9600.20038| 107,008| 19-May-2021| 18:25 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 18:26 \nInetcpl.cpl.mui| 11.0.9600.20038| 127,488| 19-May-2021| 18:27 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,512| 19-May-2021| 18:28 \nInetcpl.cpl.mui| 11.0.9600.20038| 88,576| 19-May-2021| 18:28 \nInetcpl.cpl.mui| 11.0.9600.20038| 82,944| 19-May-2021| 18:30 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 18:30 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,392| 19-May-2021| 18:31 \nInetcpl.cpl.mui| 11.0.9600.20038| 120,320| 19-May-2021| 18:32 \nInetcpl.cpl.mui| 11.0.9600.20038| 130,560| 19-May-2021| 18:33 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,952| 19-May-2021| 18:34 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:35 \nInetcpl.cpl.mui| 11.0.9600.20038| 128,000| 19-May-2021| 18:36 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:37 \nInetcpl.cpl.mui| 11.0.9600.20038| 129,024| 19-May-2021| 18:38 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:39 \nInetcpl.cpl.mui| 11.0.9600.20038| 124,416| 19-May-2021| 18:40 \nInetcpl.cpl.mui| 11.0.9600.20038| 121,856| 19-May-2021| 18:40 \nInetcpl.cpl.mui| 11.0.9600.20038| 115,712| 19-May-2021| 18:41 \nInetcpl.cpl.mui| 11.0.9600.20038| 123,904| 19-May-2021| 18:42 \nInetcpl.cpl.mui| 11.0.9600.20038| 125,440| 19-May-2021| 18:43 \nInetcpl.cpl.mui| 11.0.9600.20038| 72,704| 19-May-2021| 18:44 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 18:45 \nInetcpl.cpl.mui| 11.0.9600.20038| 73,728| 19-May-2021| 18:46 \nMsfeedsbs.dll| 11.0.9600.20038| 52,736| 18-May-2021| 4:57 \nMsfeedsbs.mof| Not versioned| 1,574| 18-May-2021| 3:12 \nMsfeedssync.exe| 11.0.9600.20038| 11,776| 18-May-2021| 5:19 \nIeproxy.dll| 11.0.9600.20038| 310,784| 18-May-2021| 4:26 \nIeshims.dll| 11.0.9600.20038| 290,304| 18-May-2021| 4:32 \nIertutil.dll| 11.0.9600.20038| 2,308,608| 18-May-2021| 5:19 \nSqmapi.dll| 6.2.9200.16384| 228,232| 19-May-2021| 18:16 \nIeframe.dll.mui| 11.0.9600.20038| 2,066,432| 19-May-2021| 18:17 \nIeframe.dll.mui| 11.0.9600.20038| 2,121,216| 19-May-2021| 18:18 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,136| 19-May-2021| 18:19 \nIeframe.dll.mui| 11.0.9600.20038| 2,063,872| 19-May-2021| 18:20 \nIeframe.dll.mui| 11.0.9600.20038| 2,314,240| 19-May-2021| 18:21 \nIeframe.dll.mui| 11.0.9600.20038| 2,390,528| 19-May-2021| 18:21 \nIeframe.dll.mui| 11.0.9600.20038| 2,033,152| 19-May-2021| 19:48 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 18:22 \nIeframe.dll.mui| 11.0.9600.20038| 2,255,872| 19-May-2021| 18:23 \nIeframe.dll.mui| 11.0.9600.20038| 2,061,312| 19-May-2021| 18:24 \nIeframe.dll.mui| 11.0.9600.20038| 2,326,016| 19-May-2021| 18:25 \nIeframe.dll.mui| 11.0.9600.20038| 2,019,840| 19-May-2021| 18:26 \nIeframe.dll.mui| 11.0.9600.20038| 2,071,040| 19-May-2021| 18:26 \nIeframe.dll.mui| 11.0.9600.20038| 2,082,816| 19-May-2021| 18:27 \nIeframe.dll.mui| 11.0.9600.20038| 2,307,584| 19-May-2021| 18:28 \nIeframe.dll.mui| 11.0.9600.20038| 2,170,368| 19-May-2021| 18:29 \nIeframe.dll.mui| 11.0.9600.20038| 2,153,984| 19-May-2021| 18:30 \nIeframe.dll.mui| 11.0.9600.20038| 2,291,712| 19-May-2021| 18:31 \nIeframe.dll.mui| 11.0.9600.20038| 2,283,520| 19-May-2021| 18:32 \nIeframe.dll.mui| 11.0.9600.20038| 2,052,096| 19-May-2021| 18:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,301,952| 19-May-2021| 18:33 \nIeframe.dll.mui| 11.0.9600.20038| 2,093,056| 19-May-2021| 18:34 \nIeframe.dll.mui| 11.0.9600.20038| 2,075,648| 19-May-2021| 18:35 \nIeframe.dll.mui| 11.0.9600.20038| 2,299,392| 19-May-2021| 18:36 \nIeframe.dll.mui| 11.0.9600.20038| 2,094,592| 19-May-2021| 18:37 \nIeframe.dll.mui| 11.0.9600.20038| 2,316,800| 19-May-2021| 18:38 \nIeframe.dll.mui| 11.0.9600.20038| 2,305,536| 19-May-2021| 18:38 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 18:39 \nIeframe.dll.mui| 11.0.9600.20038| 2,277,888| 19-May-2021| 18:40 \nIeframe.dll.mui| 11.0.9600.20038| 2,060,288| 19-May-2021| 18:41 \nIeframe.dll.mui| 11.0.9600.20038| 2,315,776| 19-May-2021| 18:42 \nIeframe.dll.mui| 11.0.9600.20038| 2,278,912| 19-May-2021| 18:42 \nIeframe.dll.mui| 11.0.9600.20038| 2,324,992| 19-May-2021| 18:43 \nIeframe.dll.mui| 11.0.9600.20038| 2,098,176| 19-May-2021| 18:44 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 18:45 \nIeframe.dll.mui| 11.0.9600.20038| 1,890,304| 19-May-2021| 18:46 \nJscript9.dll.mui| 11.0.9600.20038| 29,184| 19-May-2021| 18:17 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:18 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:19 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:19 \nJscript9.dll.mui| 11.0.9600.20038| 35,328| 19-May-2021| 18:20 \nJscript9.dll.mui| 11.0.9600.20038| 37,888| 19-May-2021| 18:21 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 19:47 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:22 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:23 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:23 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:24 \nJscript9.dll.mui| 11.0.9600.20038| 27,648| 19-May-2021| 18:25 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:26 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:27 \nJscript9.dll.mui| 11.0.9600.20038| 33,792| 19-May-2021| 18:27 \nJscript9.dll.mui| 11.0.9600.20038| 23,040| 19-May-2021| 18:28 \nJscript9.dll.mui| 11.0.9600.20038| 22,016| 19-May-2021| 18:29 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:30 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:31 \nJscript9.dll.mui| 11.0.9600.20038| 31,232| 19-May-2021| 18:32 \nJscript9.dll.mui| 11.0.9600.20038| 34,304| 19-May-2021| 18:33 \nJscript9.dll.mui| 11.0.9600.20038| 35,840| 19-May-2021| 18:34 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:35 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:35 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:36 \nJscript9.dll.mui| 11.0.9600.20038| 34,816| 19-May-2021| 18:38 \nJscript9.dll.mui| 11.0.9600.20038| 33,280| 19-May-2021| 18:38 \nJscript9.dll.mui| 11.0.9600.20038| 32,256| 19-May-2021| 18:39 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:39 \nJscript9.dll.mui| 11.0.9600.20038| 32,768| 19-May-2021| 18:40 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:41 \nJscript9.dll.mui| 11.0.9600.20038| 30,720| 19-May-2021| 18:42 \nJscript9.dll.mui| 11.0.9600.20038| 29,696| 19-May-2021| 18:43 \nJscript9.dll.mui| 11.0.9600.20038| 16,384| 19-May-2021| 18:43 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 18:44 \nJscript9.dll.mui| 11.0.9600.20038| 16,896| 19-May-2021| 18:45 \nPackage.cab| Not versioned| 302,961| 19-May-2021| 20:59 \n \n### Windows 7 and Windows Server 2008 R2\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:35| 1,341,952 \niexplore.exe| 11.0.9600.20038| 20-May-2021| 15:38| 810,376 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 31,744 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 39,424 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 32,768 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 37,376 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 38,400 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 30,720 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 25,600 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 24,576 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 20,992 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 21,504 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 21,504 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 46,592 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 56,320 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 57,856 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 49,664 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 47,616 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 49,152 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 55,296 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 45,056 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 39,424 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 35,840 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 53,760 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 30,720 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 10,752 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 307,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 293,888 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 290,304 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 299,008 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 303,104 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 282,112 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 283,648 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 291,840 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 299,520 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 275,968 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 293,376 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 258,048 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 256,512 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 288,256 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 285,184 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 297,472 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 288,768 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 286,208 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 281,600 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 286,720 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 292,352 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 242,176 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 243,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 243,200 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 73,728 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 74,240 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 78,848 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 74,752 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 62,464 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 75,264 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 72,192 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 73,216 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 41,472 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 37,888 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 74,240 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 70,656 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 71,168 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 71,680 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 71,168 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 69,632 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 59,904 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 69,120 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 29,696 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 30,720 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:08| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20038| 17-May-2021| 21:59| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20038| 17-May-2021| 22:01| 230,912 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 46,080 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 51,712 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 54,272 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 45,056 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 39,936 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 39,424 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 51,200 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 35,328 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 11,264 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 9,216 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:08| 6,656 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:39| 4,387,840 \njsproxy.dll| 11.0.9600.20038| 17-May-2021| 22:13| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:38| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:39| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:40| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:41| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:42| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:43| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:13| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:44| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:44| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:46| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:46| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:47| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:48| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:48| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:49| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:50| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:51| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:52| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:53| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:54| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:55| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:56| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:56| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:57| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:58| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:59| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:00| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:00| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:01| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:03| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:05| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:06| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:07| 73,728 \niedkcs32.dll| 18.0.9600.20038| 20-May-2021| 15:38| 341,896 \ninstall.ins| Not versioned| 17-May-2021| 20:00| 464 \nieapfltr.dat| 10.0.9301.0| 8-Apr-2021| 17:55| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:28| 710,656 \ntdc.ocx| 11.0.9600.20038| 17-May-2021| 21:59| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20038| 17-May-2021| 22:21| 489,472 \niedvtool.dll| 11.0.9600.20038| 17-May-2021| 22:47| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.20038| 17-May-2021| 22:22| 38,912 \ndxtmsft.dll| 11.0.9600.20038| 17-May-2021| 22:03| 415,744 \ndxtrans.dll| 11.0.9600.20038| 17-May-2021| 21:56| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 17-May-2021| 19:58| 11,892 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20038| 17-May-2021| 22:02| 175,104 \nF12Resources.dll| 11.0.9600.20038| 17-May-2021| 22:25| 10,948,096 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 2,048 \nF12Tools.dll| 11.0.9600.20038| 17-May-2021| 22:02| 256,000 \nF12.dll| 11.0.9600.20038| 17-May-2021| 21:53| 1,207,808 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:50| 696,320 \nmsfeeds.mof| Not versioned| 17-May-2021| 20:12| 1,518 \nmsfeedsbs.mof| Not versioned| 17-May-2021| 20:12| 1,574 \nmsfeedsbs.dll| 11.0.9600.20038| 17-May-2021| 21:57| 52,736 \nmsfeedssync.exe| 11.0.9600.20038| 17-May-2021| 22:19| 11,776 \nhtml.iec| 2019.0.0.20038| 17-May-2021| 22:18| 341,504 \nmshtmled.dll| 11.0.9600.20038| 17-May-2021| 21:56| 76,800 \nmshtmlmedia.dll| 11.0.9600.20038| 17-May-2021| 21:48| 1,155,584 \nmshtml.dll| 11.0.9600.20038| 17-May-2021| 22:47| 20,294,656 \nmshtml.tlb| 11.0.9600.20038| 17-May-2021| 22:29| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 17-May-2021| 19:59| 3,228 \nieetwcollector.exe| 11.0.9600.20038| 17-May-2021| 22:10| 104,960 \nieetwproxystub.dll| 11.0.9600.20038| 17-May-2021| 22:18| 47,616 \nieetwcollectorres.dll| 11.0.9600.20038| 17-May-2021| 22:29| 4,096 \nielowutil.exe| 11.0.9600.20038| 17-May-2021| 22:12| 221,184 \nieproxy.dll| 11.0.9600.20038| 17-May-2021| 21:26| 310,784 \nIEShims.dll| 11.0.9600.20038| 17-May-2021| 21:32| 290,304 \nWindows Pop-up Blocked.wav| Not versioned| 8-Apr-2021| 17:57| 85,548 \nWindows Information Bar.wav| Not versioned| 8-Apr-2021| 17:57| 23,308 \nWindows Feed Discovered.wav| Not versioned| 8-Apr-2021| 17:57| 19,884 \nWindows Navigation Start.wav| Not versioned| 8-Apr-2021| 17:57| 11,340 \nbing.ico| Not versioned| 8-Apr-2021| 17:56| 5,430 \nieUnatt.exe| 11.0.9600.20038| 17-May-2021| 22:10| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 20-May-2021| 17:12| 2,956 \njsprofilerui.dll| 11.0.9600.20038| 17-May-2021| 21:57| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.20038| 17-May-2021| 22:08| 1,399,296 \nMshtmlDac.dll| 11.0.9600.20038| 17-May-2021| 22:17| 64,000 \nnetworkinspection.dll| 11.0.9600.20038| 17-May-2021| 21:54| 1,075,200 \noccache.dll| 11.0.9600.20038| 17-May-2021| 21:54| 130,048 \ndesktop.ini| Not versioned| 8-Apr-2021| 17:55| 65 \nwebcheck.dll| 11.0.9600.20038| 17-May-2021| 21:50| 230,400 \ndesktop.ini| Not versioned| 8-Apr-2021| 17:55| 65 \nmsrating.dll| 11.0.9600.20038| 17-May-2021| 21:57| 168,960 \nicrav03.rat| Not versioned| 8-Apr-2021| 17:55| 8,798 \nticrf.rat| Not versioned| 8-Apr-2021| 17:55| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:19| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 20-May-2021| 15:38| 228,232 \nie4uinit.exe| 11.0.9600.20038| 17-May-2021| 21:49| 692,224 \niernonce.dll| 11.0.9600.20038| 17-May-2021| 22:12| 30,720 \niesetup.dll| 11.0.9600.20038| 17-May-2021| 22:19| 62,464 \nieuinit.inf| Not versioned| 17-May-2021| 21:10| 16,303 \ninseng.dll| 11.0.9600.20038| 17-May-2021| 21:59| 91,136 \nTimeline.dll| 11.0.9600.20038| 17-May-2021| 21:58| 154,112 \nTimeline_is.dll| 11.0.9600.20038| 17-May-2021| 22:13| 124,928 \nTimeline.cpu.xml| Not versioned| 8-Apr-2021| 17:55| 3,197 \nVGX.dll| 11.0.9600.20038| 17-May-2021| 21:56| 818,176 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 2,066,432 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 2,121,216 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,075,136 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,063,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 2,314,240 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 2,390,528 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 2,033,152 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,255,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,061,312 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,326,016 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,019,840 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,071,040 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 2,082,816 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 2,170,368 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 2,153,984 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,291,712 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,283,520 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 2,052,096 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 2,301,952 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,093,056 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 2,075,648 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,299,392 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,094,592 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 2,316,800 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 2,305,536 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 2,277,888 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,060,288 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,315,776 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 2,324,992 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,098,176 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 3,072 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 21:55| 13,881,856 \nieui.dll| 11.0.9600.20038| 17-May-2021| 22:12| 476,160 \nieframe.ptxml| Not versioned| 17-May-2021| 19:58| 24,486 \nieinstal.exe| 11.0.9600.20038| 17-May-2021| 21:55| 475,648 \nInetRes.adml| Not versioned| 20-May-2021| 15:38| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:39| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:40| 526,294 \nInetRes.adml| Not versioned| 20-May-2021| 15:41| 499,654 \nInetRes.adml| Not versioned| 20-May-2021| 15:42| 552,337 \nInetRes.adml| Not versioned| 20-May-2021| 15:43| 944,559 \nInetRes.adml| Not versioned| 20-May-2021| 17:13| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:44| 543,946 \nInetRes.adml| Not versioned| 20-May-2021| 15:44| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:45| 526,557 \nInetRes.adml| Not versioned| 20-May-2021| 15:46| 575,838 \nInetRes.adml| Not versioned| 20-May-2021| 15:47| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:48| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:48| 570,737 \nInetRes.adml| Not versioned| 20-May-2021| 15:50| 548,119 \nInetRes.adml| Not versioned| 20-May-2021| 15:50| 639,271 \nInetRes.adml| Not versioned| 20-May-2021| 15:51| 525,504 \nInetRes.adml| Not versioned| 20-May-2021| 15:52| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:53| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:54| 488,488 \nInetRes.adml| Not versioned| 20-May-2021| 15:55| 548,494 \nInetRes.adml| Not versioned| 20-May-2021| 15:56| 559,343 \nInetRes.adml| Not versioned| 20-May-2021| 15:56| 535,067 \nInetRes.adml| Not versioned| 20-May-2021| 15:57| 541,455 \nInetRes.adml| Not versioned| 20-May-2021| 15:58| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 15:59| 804,470 \nInetRes.adml| Not versioned| 20-May-2021| 16:00| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:00| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:01| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:02| 503,909 \nInetRes.adml| Not versioned| 20-May-2021| 16:03| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:04| 521,583 \nInetRes.adml| Not versioned| 20-May-2021| 16:05| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:05| 420,082 \nInetRes.adml| Not versioned| 20-May-2021| 16:06| 436,651 \nInetRes.adml| Not versioned| 20-May-2021| 16:07| 436,651 \ninetres.admx| Not versioned| 8-Apr-2021| 17:59| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20038| 17-May-2021| 22:05| 668,672 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 29,184 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 35,328 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 37,888 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 27,648 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 33,792 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 23,040 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 22,016 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 31,232 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 35,840 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 34,816 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 32,256 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 30,720 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 16,384 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 16,896 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:08| 16,896 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:02| 4,112,896 \njscript9diag.dll| 11.0.9600.20038| 17-May-2021| 22:10| 620,032 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:11| 653,824 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:20| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:39| 1,563,136 \niexplore.exe| 11.0.9600.20038| 20-May-2021| 16:37| 810,376 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 31,744 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 39,424 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 32,768 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 37,376 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 38,400 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 30,720 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 25,600 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 24,576 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 20,992 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 21,504 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 21,504 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 46,592 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 56,320 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 57,856 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 49,664 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 47,616 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 49,152 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 55,296 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 45,056 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 39,424 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 35,840 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 53,760 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 30,720 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,132,992 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 10,752 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 307,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 293,888 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 290,304 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 299,008 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 303,104 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 282,112 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 283,648 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 291,840 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 299,520 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 275,968 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 293,376 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 258,048 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 256,512 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 288,256 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 285,184 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 297,472 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 288,768 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 286,208 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 281,600 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 286,720 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 292,352 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 242,176 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 243,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 243,200 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 73,728 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 74,240 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 78,848 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 74,752 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 62,464 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 75,264 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 61,440 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 72,192 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 73,216 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 41,472 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 37,888 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 67,584 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 74,240 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 70,656 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 71,168 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 71,680 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 71,168 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 69,632 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 68,608 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 68,096 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 59,904 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 65,536 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 69,120 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 29,696 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 30,720 \nF12Resources.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20038| 17-May-2021| 22:07| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20038| 17-May-2021| 22:09| 276,480 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 46,080 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 51,712 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 54,272 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 45,056 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 39,936 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 39,424 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 51,200 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 35,328 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 11,264 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 9,216 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 6,656 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:55| 4,858,880 \njsproxy.dll| 11.0.9600.20038| 17-May-2021| 22:24| 54,784 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:38| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:39| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:39| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:40| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:41| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:42| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:35| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:43| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:43| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:44| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:45| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:46| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:47| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:47| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:48| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:49| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:50| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:51| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:52| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:52| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:53| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:55| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:55| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:56| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:57| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:58| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:58| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:59| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:00| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:01| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:02| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:02| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:03| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:04| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:05| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:06| 73,728 \niedkcs32.dll| 18.0.9600.20038| 20-May-2021| 16:37| 390,536 \ninstall.ins| Not versioned| 17-May-2021| 20:02| 464 \nieapfltr.dat| 10.0.9301.0| 24-Mar-2021| 17:54| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:22| 800,768 \ntdc.ocx| 11.0.9600.20038| 17-May-2021| 22:07| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20038| 17-May-2021| 22:34| 666,624 \niedvtool.dll| 11.0.9600.20038| 18-May-2021| 0:16| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.20038| 17-May-2021| 22:35| 50,176 \ndxtmsft.dll| 11.0.9600.20038| 17-May-2021| 22:12| 491,008 \ndxtrans.dll| 11.0.9600.20038| 17-May-2021| 22:02| 316,416 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 17-May-2021| 20:01| 11,892 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 4,096 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 3,584 \nF12.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20038| 17-May-2021| 22:11| 245,248 \nF12Resources.dll| 11.0.9600.20038| 17-May-2021| 22:38| 10,949,120 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 2,048 \nF12Tools.dll| 11.0.9600.20038| 17-May-2021| 22:10| 372,224 \nF12.dll| 11.0.9600.20038| 17-May-2021| 21:58| 1,422,848 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:52| 809,472 \nmsfeeds.mof| Not versioned| 17-May-2021| 20:14| 1,518 \nmsfeedsbs.mof| Not versioned| 17-May-2021| 20:14| 1,574 \nmsfeedsbs.dll| 11.0.9600.20038| 17-May-2021| 22:03| 60,416 \nmsfeedssync.exe| 11.0.9600.20038| 17-May-2021| 22:32| 13,312 \nhtml.iec| 2019.0.0.20038| 17-May-2021| 22:30| 417,280 \nmshtmled.dll| 11.0.9600.20038| 17-May-2021| 22:03| 92,672 \nmshtmlmedia.dll| 11.0.9600.20038| 17-May-2021| 21:51| 1,359,872 \nmshtml.dll| 11.0.9600.20038| 18-May-2021| 0:16| 25,759,744 \nmshtml.tlb| 11.0.9600.20038| 17-May-2021| 22:43| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 17-May-2021| 20:01| 3,228 \nieetwcollector.exe| 11.0.9600.20038| 17-May-2021| 22:21| 116,224 \nieetwproxystub.dll| 11.0.9600.20038| 17-May-2021| 22:30| 48,640 \nieetwcollectorres.dll| 11.0.9600.20038| 17-May-2021| 22:42| 4,096 \nielowutil.exe| 11.0.9600.20038| 17-May-2021| 22:23| 222,720 \nieproxy.dll| 11.0.9600.20038| 17-May-2021| 21:21| 870,400 \nIEShims.dll| 11.0.9600.20038| 17-May-2021| 21:27| 387,072 \nWindows Pop-up Blocked.wav| Not versioned| 24-Mar-2021| 18:04| 85,548 \nWindows Information Bar.wav| Not versioned| 24-Mar-2021| 18:04| 23,308 \nWindows Feed Discovered.wav| Not versioned| 24-Mar-2021| 18:04| 19,884 \nWindows Navigation Start.wav| Not versioned| 24-Mar-2021| 18:04| 11,340 \nbing.ico| Not versioned| 24-Mar-2021| 17:59| 5,430 \nieUnatt.exe| 11.0.9600.20038| 17-May-2021| 22:21| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 20-May-2021| 17:34| 2,956 \njsprofilerui.dll| 11.0.9600.20038| 17-May-2021| 22:05| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.20038| 17-May-2021| 22:19| 1,862,656 \nMshtmlDac.dll| 11.0.9600.20038| 17-May-2021| 22:30| 88,064 \nnetworkinspection.dll| 11.0.9600.20038| 17-May-2021| 21:59| 1,217,024 \noccache.dll| 11.0.9600.20038| 17-May-2021| 22:00| 152,064 \ndesktop.ini| Not versioned| 24-Mar-2021| 17:56| 65 \nwebcheck.dll| 11.0.9600.20038| 17-May-2021| 21:53| 262,144 \ndesktop.ini| Not versioned| 24-Mar-2021| 17:56| 65 \nmsrating.dll| 11.0.9600.20038| 17-May-2021| 22:04| 199,680 \nicrav03.rat| Not versioned| 24-Mar-2021| 17:56| 8,798 \nticrf.rat| Not versioned| 24-Mar-2021| 17:56| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:38| 2,916,864 \nsqmapi.dll| 6.2.9200.16384| 20-May-2021| 16:37| 286,096 \nie4uinit.exe| 11.0.9600.20038| 17-May-2021| 21:51| 728,064 \niernonce.dll| 11.0.9600.20038| 17-May-2021| 22:24| 34,304 \niesetup.dll| 11.0.9600.20038| 17-May-2021| 22:31| 66,560 \nieuinit.inf| Not versioned| 17-May-2021| 21:02| 16,303 \ninseng.dll| 11.0.9600.20038| 17-May-2021| 22:06| 107,520 \nTimeline.dll| 11.0.9600.20038| 17-May-2021| 22:06| 219,648 \nTimeline_is.dll| 11.0.9600.20038| 17-May-2021| 22:24| 172,032 \nTimeline.cpu.xml| Not versioned| 24-Mar-2021| 17:55| 3,197 \nVGX.dll| 11.0.9600.20038| 17-May-2021| 22:03| 1,018,880 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 2,066,432 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 2,121,216 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 2,075,136 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 2,063,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 2,314,240 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 2,390,528 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 2,033,152 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 2,255,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 2,061,312 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 2,326,016 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 2,019,840 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 2,071,040 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 2,082,816 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 2,170,368 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 2,153,984 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 2,291,712 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 2,283,520 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 2,052,096 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 2,301,952 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 2,093,056 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 2,075,648 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 2,299,392 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 2,094,592 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 2,316,800 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 2,305,536 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 2,277,888 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 2,060,288 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 2,315,776 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 2,324,992 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 2,098,176 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 3,072 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 22:08| 15,506,432 \nieui.dll| 11.0.9600.20038| 17-May-2021| 22:22| 615,936 \nieframe.ptxml| Not versioned| 17-May-2021| 20:00| 24,486 \nieinstal.exe| 11.0.9600.20038| 17-May-2021| 22:01| 492,032 \nInetRes.adml| Not versioned| 20-May-2021| 16:38| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:39| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:39| 526,294 \nInetRes.adml| Not versioned| 20-May-2021| 16:40| 499,654 \nInetRes.adml| Not versioned| 20-May-2021| 16:41| 552,337 \nInetRes.adml| Not versioned| 20-May-2021| 16:42| 944,559 \nInetRes.adml| Not versioned| 20-May-2021| 17:35| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:43| 543,946 \nInetRes.adml| Not versioned| 20-May-2021| 16:43| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:44| 526,557 \nInetRes.adml| Not versioned| 20-May-2021| 16:45| 575,838 \nInetRes.adml| Not versioned| 20-May-2021| 16:46| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:47| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:48| 570,737 \nInetRes.adml| Not versioned| 20-May-2021| 16:48| 548,119 \nInetRes.adml| Not versioned| 20-May-2021| 16:49| 639,271 \nInetRes.adml| Not versioned| 20-May-2021| 16:50| 525,504 \nInetRes.adml| Not versioned| 20-May-2021| 16:51| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:52| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:52| 488,488 \nInetRes.adml| Not versioned| 20-May-2021| 16:53| 548,494 \nInetRes.adml| Not versioned| 20-May-2021| 16:54| 559,343 \nInetRes.adml| Not versioned| 20-May-2021| 16:55| 535,067 \nInetRes.adml| Not versioned| 20-May-2021| 16:56| 541,455 \nInetRes.adml| Not versioned| 20-May-2021| 16:57| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:58| 804,470 \nInetRes.adml| Not versioned| 20-May-2021| 16:58| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 16:59| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 17:00| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 17:01| 503,909 \nInetRes.adml| Not versioned| 20-May-2021| 17:02| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 17:02| 521,583 \nInetRes.adml| Not versioned| 20-May-2021| 17:03| 457,561 \nInetRes.adml| Not versioned| 20-May-2021| 17:04| 420,082 \nInetRes.adml| Not versioned| 20-May-2021| 17:05| 436,651 \nInetRes.adml| Not versioned| 20-May-2021| 17:06| 436,651 \ninetres.admx| Not versioned| 24-Mar-2021| 18:16| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20038| 17-May-2021| 22:15| 970,752 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:38| 29,184 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:39| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:40| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:41| 35,328 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:42| 37,888 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:35| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:43| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:44| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:45| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:46| 27,648 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:47| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:48| 33,792 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:49| 23,040 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:50| 22,016 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:51| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:52| 31,232 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:53| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:54| 35,840 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:55| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:56| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:57| 34,816 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:58| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:59| 32,256 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:00| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:01| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:02| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 30,720 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:03| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:04| 16,384 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:05| 16,896 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:06| 16,896 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:52| 5,500,928 \njscript9diag.dll| 11.0.9600.20038| 17-May-2021| 22:21| 814,592 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:21| 785,408 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:31| 581,120 \niexplore.exe| 11.0.9600.20038| 20-May-2021| 15:38| 810,376 \ntdc.ocx| 11.0.9600.20038| 17-May-2021| 21:59| 73,728 \ndxtmsft.dll| 11.0.9600.20038| 17-May-2021| 22:03| 415,744 \ndxtrans.dll| 11.0.9600.20038| 17-May-2021| 21:56| 280,064 \nmsfeeds.dll| 11.0.9600.20038| 17-May-2021| 21:50| 696,320 \nmsfeeds.mof| Not versioned| 17-May-2021| 20:12| 1,518 \nmshtmled.dll| 11.0.9600.20038| 17-May-2021| 21:56| 76,800 \nmshtmlmedia.dll| 11.0.9600.20038| 17-May-2021| 21:48| 1,155,584 \nmshtml.dll| 11.0.9600.20038| 17-May-2021| 22:47| 20,294,656 \nmshtml.tlb| 11.0.9600.20038| 17-May-2021| 22:29| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 17-May-2021| 20:03| 3,228 \nieetwproxystub.dll| 11.0.9600.20038| 17-May-2021| 22:18| 47,616 \nieUnatt.exe| 11.0.9600.20038| 17-May-2021| 22:10| 115,712 \noccache.dll| 11.0.9600.20038| 17-May-2021| 21:54| 130,048 \nwebcheck.dll| 11.0.9600.20038| 17-May-2021| 21:50| 230,400 \niernonce.dll| 11.0.9600.20038| 17-May-2021| 22:12| 30,720 \niesetup.dll| 11.0.9600.20038| 17-May-2021| 22:19| 62,464 \nieuinit.inf| Not versioned| 17-May-2021| 21:10| 16,303 \nieframe.dll| 11.0.9600.20038| 17-May-2021| 21:55| 13,881,856 \nieui.dll| 11.0.9600.20038| 17-May-2021| 22:12| 476,160 \nie9props.propdesc| Not versioned| 8-Apr-2021| 17:56| 2,843 \nwow64_ieframe.ptxml| Not versioned| 17-May-2021| 20:02| 24,486 \njscript9.dll| 11.0.9600.20038| 17-May-2021| 22:02| 4,112,896 \njscript9diag.dll| 11.0.9600.20038| 17-May-2021| 22:10| 620,032 \njscript.dll| 5.8.9600.20038| 17-May-2021| 22:11| 653,824 \nvbscript.dll| 5.8.9600.20038| 17-May-2021| 22:20| 498,176 \nurlmon.dll| 11.0.9600.20038| 17-May-2021| 21:35| 1,341,952 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 31,744 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 39,424 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 32,768 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 37,376 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 38,400 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 30,720 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 35,328 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 36,864 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 25,600 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 24,576 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 36,352 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 35,840 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 34,816 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 33,280 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 20,992 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 21,504 \nwebcheck.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 21,504 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 46,592 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 56,320 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 57,856 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 49,664 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 47,616 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 49,152 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 55,296 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 45,056 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 39,424 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 35,840 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 53,760 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 54,272 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 51,200 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 53,248 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 52,736 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 51,712 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 50,688 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 50,176 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 30,720 \nwininet.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 30,720 \ninetcpl.cpl| 11.0.9600.20038| 17-May-2021| 21:50| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 10,752 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 307,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 293,888 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 290,304 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 299,008 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 303,104 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 282,112 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 283,648 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 291,840 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 299,520 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 275,968 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 293,376 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 296,960 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 258,048 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 256,512 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 289,280 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 288,256 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 285,184 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 297,472 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 295,424 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 294,400 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 292,864 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 290,816 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 288,768 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 286,208 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 281,600 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 286,720 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 292,352 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 242,176 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 243,200 \nmshtml.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.20038| 17-May-2021| 21:59| 60,416 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 46,080 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 51,712 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 54,272 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 45,056 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 39,936 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 39,424 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 47,616 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 51,200 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 50,688 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 50,176 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 49,664 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 48,640 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 49,152 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 48,128 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 35,328 \nurlmon.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 35,328 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 11,264 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 9,216 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 7,680 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 10,752 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 9,728 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 10,240 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 6,656 \noccache.dll.mui| 11.0.9600.20038| 20-May-2021| 16:08| 6,656 \nwininet.dll| 11.0.9600.20038| 17-May-2021| 21:39| 4,387,840 \njsproxy.dll| 11.0.9600.20038| 17-May-2021| 22:13| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:38| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:39| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:40| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:41| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:42| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:43| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 17:13| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:44| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:44| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:46| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:46| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:47| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:48| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:48| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:49| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:50| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:51| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:52| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:53| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:54| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:55| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:56| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:56| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:57| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:58| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 15:59| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:00| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:00| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:01| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:03| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:05| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:06| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20038| 20-May-2021| 16:07| 73,728 \niedkcs32.dll| 18.0.9600.20038| 20-May-2021| 15:38| 341,896 \ninstall.ins| Not versioned| 17-May-2021| 20:00| 464 \nieapfltr.dat| 10.0.9301.0| 8-Apr-2021| 17:55| 616,104 \nieapfltr.dll| 11.0.9600.20038| 17-May-2021| 21:28| 710,656 \niedvtool.dll| 11.0.9600.20038| 17-May-2021| 22:47| 772,608 \nDiagnosticsTap.dll| 11.0.9600.20038| 17-May-2021| 22:02| 175,104 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 2,048 \nF12Tools.dll| 11.0.9600.20038| 17-May-2021| 22:02| 256,000 \nmsfeedsbs.mof| Not versioned| 17-May-2021| 20:12| 1,574 \nmsfeedsbs.dll| 11.0.9600.20038| 17-May-2021| 21:57| 52,736 \nmsfeedssync.exe| 11.0.9600.20038| 17-May-2021| 22:19| 11,776 \nhtml.iec| 2019.0.0.20038| 17-May-2021| 22:18| 341,504 \nielowutil.exe| 11.0.9600.20038| 17-May-2021| 22:12| 221,184 \nieproxy.dll| 11.0.9600.20038| 17-May-2021| 21:26| 310,784 \nIEShims.dll| 11.0.9600.20038| 17-May-2021| 21:32| 290,304 \njsprofilerui.dll| 11.0.9600.20038| 17-May-2021| 21:57| 579,584 \nMshtmlDac.dll| 11.0.9600.20038| 17-May-2021| 22:17| 64,000 \nnetworkinspection.dll| 11.0.9600.20038| 17-May-2021| 21:54| 1,075,200 \nmsrating.dll| 11.0.9600.20038| 17-May-2021| 21:57| 168,960 \nicrav03.rat| Not versioned| 8-Apr-2021| 17:55| 8,798 \nticrf.rat| Not versioned| 8-Apr-2021| 17:55| 1,988 \niertutil.dll| 11.0.9600.20038| 17-May-2021| 22:19| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 20-May-2021| 15:38| 228,232 \ninseng.dll| 11.0.9600.20038| 17-May-2021| 21:59| 91,136 \nVGX.dll| 11.0.9600.20038| 17-May-2021| 21:56| 818,176 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 2,066,432 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:38| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 2,121,216 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,075,136 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 2,063,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 2,314,240 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 2,390,528 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 2,033,152 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,255,872 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 2,061,312 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,326,016 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 2,019,840 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 2,071,040 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 2,082,816 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 2,307,584 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 2,170,368 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 2,153,984 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,291,712 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 2,283,520 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 2,052,096 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 2,301,952 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 2,093,056 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 2,075,648 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,299,392 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 2,094,592 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 2,316,800 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 2,305,536 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 2,277,888 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 3,584 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,060,288 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 2,315,776 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 2,278,912 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 2,324,992 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 2,098,176 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 3,072 \nieframe.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 1,890,304 \nieui.dll.mui| 11.0.9600.20038| 20-May-2021| 16:07| 3,072 \nieinstal.exe| 11.0.9600.20038| 17-May-2021| 21:55| 475,648 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 29,184 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:39| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:40| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:41| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:42| 35,328 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 37,888 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 17:13| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:43| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:44| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:45| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:46| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:47| 27,648 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:48| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:49| 33,792 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:50| 23,040 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:51| 22,016 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:52| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:53| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:54| 31,232 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:55| 34,304 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 35,840 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:56| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:57| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:58| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 15:59| 34,816 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 33,280 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:00| 32,256 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:01| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:02| 32,768 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:03| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:04| 30,720 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:05| 29,696 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 16,384 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:06| 16,896 \njscript9.dll.mui| 11.0.9600.20038| 20-May-2021| 16:08| 16,896 \n \n### Windows Server 2008\n\n### \n\n__\n\nInternet Explorer 9 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21561| 20-May-2021| 15:36| 1,141,760 \niexplore.exe| 9.0.8112.21561| 20-May-2021| 15:47| 751,528 \ninetcpl.cpl| 9.0.8112.21561| 20-May-2021| 15:35| 1,427,968 \nwininet.dll| 9.0.8112.21561| 20-May-2021| 15:36| 1,132,544 \njsproxy.dll| 9.0.8112.21561| 20-May-2021| 15:34| 75,776 \nWininetPlugin.dll| 1.0.0.1| 20-May-2021| 15:34| 66,048 \ntdc.ocx| 9.0.8112.21561| 20-May-2021| 15:34| 63,488 \niedvtool.dll| 9.0.8112.21561| 20-May-2021| 15:35| 678,912 \ndxtmsft.dll| 9.0.8112.21561| 20-May-2021| 15:34| 354,304 \ndxtrans.dll| 9.0.8112.21561| 20-May-2021| 15:34| 223,744 \nmsfeeds.dll| 9.0.8112.21561| 20-May-2021| 15:34| 607,744 \nmsfeeds.mof| Not versioned| 20-May-2021| 15:09| 1,518 \nmsfeedsbs.mof| Not versioned| 20-May-2021| 15:09| 1,574 \nmsfeedsbs.dll| 9.0.8112.21561| 20-May-2021| 15:34| 41,472 \nmsfeedssync.exe| 9.0.8112.21561| 20-May-2021| 15:34| 10,752 \nmshta.exe| 9.0.8112.21561| 20-May-2021| 15:34| 11,776 \nhtml.iec| 2019.0.0.21557| 20-May-2021| 15:38| 367,616 \nmshtmled.dll| 9.0.8112.21561| 20-May-2021| 15:34| 72,704 \nmshtml.dll| 9.0.8112.21561| 20-May-2021| 15:43| 12,844,544 \nmshtml.tlb| 9.0.8112.21561| 20-May-2021| 15:34| 2,382,848 \nielowutil.exe| 9.0.8112.21561| 20-May-2021| 15:34| 223,232 \nieproxy.dll| 9.0.8112.21561| 20-May-2021| 15:34| 195,072 \nIEShims.dll| 9.0.8112.21561| 20-May-2021| 15:34| 194,560 \nExtExport.exe| 9.0.8112.21561| 20-May-2021| 15:35| 22,528 \nWindows Pop-up Blocked.wav| Not versioned| 27-Apr-2018| 10:11| 85,548 \nWindows Information Bar.wav| Not versioned| 27-Apr-2018| 10:11| 23,308 \nWindows Feed Discovered.wav| Not versioned| 27-Apr-2018| 10:11| 19,884 \nWindows Navigation Start.wav| Not versioned| 27-Apr-2018| 10:11| 11,340 \nieUnatt.exe| 9.0.8112.21561| 20-May-2021| 15:34| 142,848 \njsdbgui.dll| 9.0.8112.21561| 20-May-2021| 15:35| 388,096 \niertutil.dll| 9.0.8112.21561| 20-May-2021| 15:35| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 20-May-2021| 15:47| 142,744 \nVGX.dll| 9.0.8112.21561| 20-May-2021| 15:35| 769,024 \nurl.dll| 9.0.8112.21561| 20-May-2021| 15:34| 231,936 \nieframe.dll| 9.0.8112.21561| 20-May-2021| 15:38| 9,757,696 \nieui.dll| 9.0.8112.21561| 20-May-2021| 15:32| 176,640 \nieinstal.exe| 9.0.8112.21561| 20-May-2021| 15:34| 474,624 \nInetRes.adml| Not versioned| 20-May-2021| 15:51| 393,813 \ninetres.admx| Not versioned| 27-Apr-2018| 10:14| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21561| 20-May-2021| 15:35| 104,448 \njscript.dll| 5.8.7601.21557| 20-May-2021| 15:34| 723,456 \njscript9.dll| 9.0.8112.21561| 20-May-2021| 15:42| 1,819,648 \nvbscript.dll| 5.8.7601.21557| 20-May-2021| 15:35| 434,176 \n \n### \n\n__\n\nInternet Explorer 9 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21561| 20-May-2021| 16:28| 1,390,592 \niexplore.exe| 9.0.8112.21561| 20-May-2021| 16:50| 757,672 \ninetcpl.cpl| 9.0.8112.21561| 20-May-2021| 16:26| 1,494,528 \nwininet.dll| 9.0.8112.21561| 20-May-2021| 16:28| 1,395,200 \njsproxy.dll| 9.0.8112.21561| 20-May-2021| 16:26| 97,280 \nWininetPlugin.dll| 1.0.0.1| 20-May-2021| 16:26| 86,528 \ntdc.ocx| 9.0.8112.21561| 20-May-2021| 16:25| 76,800 \niedvtool.dll| 9.0.8112.21561| 20-May-2021| 16:27| 887,808 \ndxtmsft.dll| 9.0.8112.21561| 20-May-2021| 16:26| 452,608 \ndxtrans.dll| 9.0.8112.21561| 20-May-2021| 16:26| 281,600 \nmsfeeds.dll| 9.0.8112.21561| 20-May-2021| 16:26| 729,088 \nmsfeeds.mof| Not versioned| 20-May-2021| 16:00| 1,518 \nmsfeedsbs.mof| Not versioned| 20-May-2021| 16:00| 1,574 \nmsfeedsbs.dll| 9.0.8112.21561| 20-May-2021| 16:26| 55,296 \nmsfeedssync.exe| 9.0.8112.21561| 20-May-2021| 16:26| 11,264 \nmshta.exe| 9.0.8112.21561| 20-May-2021| 16:25| 12,800 \nhtml.iec| 2019.0.0.21557| 20-May-2021| 16:35| 448,512 \nmshtmled.dll| 9.0.8112.21561| 20-May-2021| 16:26| 96,256 \nmshtml.dll| 9.0.8112.21561| 20-May-2021| 16:45| 18,811,392 \nmshtml.tlb| 9.0.8112.21561| 20-May-2021| 16:26| 2,382,848 \nielowutil.exe| 9.0.8112.21561| 20-May-2021| 16:26| 223,744 \nieproxy.dll| 9.0.8112.21561| 20-May-2021| 16:26| 550,912 \nIEShims.dll| 9.0.8112.21561| 20-May-2021| 16:26| 305,664 \nWindows Pop-up Blocked.wav| Not versioned| 27-Apr-2018| 10:11| 85,548 \nWindows Information Bar.wav| Not versioned| 27-Apr-2018| 10:11| 23,308 \nWindows Feed Discovered.wav| Not versioned| 27-Apr-2018| 10:11| 19,884 \nWindows Navigation Start.wav| Not versioned| 27-Apr-2018| 10:11| 11,340 \nieUnatt.exe| 9.0.8112.21561| 20-May-2021| 16:26| 173,568 \njsdbgui.dll| 9.0.8112.21561| 20-May-2021| 16:27| 499,712 \niertutil.dll| 9.0.8112.21561| 20-May-2021| 16:26| 2,163,200 \nsqmapi.dll| 6.0.6000.16386| 20-May-2021| 16:50| 176,040 \nVGX.dll| 9.0.8112.21561| 20-May-2021| 16:27| 997,376 \nurl.dll| 9.0.8112.21561| 20-May-2021| 16:26| 237,056 \nieframe.dll| 9.0.8112.21561| 20-May-2021| 16:31| 10,944,000 \nieui.dll| 9.0.8112.21561| 20-May-2021| 16:23| 248,320 \nieinstal.exe| 9.0.8112.21561| 20-May-2021| 16:26| 490,496 \nInetRes.adml| Not versioned| 20-May-2021| 16:54| 393,813 \ninetres.admx| Not versioned| 27-Apr-2018| 10:14| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21561| 20-May-2021| 16:27| 141,312 \njscript.dll| 5.8.7601.21557| 20-May-2021| 16:26| 818,176 \njscript9.dll| 9.0.8112.21561| 20-May-2021| 16:34| 2,358,784 \nvbscript.dll| 5.8.7601.21557| 20-May-2021| 16:26| 583,680 \niexplore.exe| 9.0.8112.21561| 20-May-2021| 15:47| 751,528 \nieUnatt.exe| 9.0.8112.21561| 20-May-2021| 15:34| 142,848 \nurlmon.dll| 9.0.8112.21561| 20-May-2021| 15:36| 1,141,760 \ninetcpl.cpl| 9.0.8112.21561| 20-May-2021| 15:35| 1,427,968 \nwininet.dll| 9.0.8112.21561| 20-May-2021| 15:36| 1,132,544 \njsproxy.dll| 9.0.8112.21561| 20-May-2021| 15:34| 75,776 \nWininetPlugin.dll| 1.0.0.1| 20-May-2021| 15:34| 66,048 \ntdc.ocx| 9.0.8112.21561| 20-May-2021| 15:34| 63,488 \niedvtool.dll| 9.0.8112.21561| 20-May-2021| 15:35| 678,912 \ndxtmsft.dll| 9.0.8112.21561| 20-May-2021| 15:34| 354,304 \ndxtrans.dll| 9.0.8112.21561| 20-May-2021| 15:34| 223,744 \nmsfeeds.dll| 9.0.8112.21561| 20-May-2021| 15:34| 607,744 \nmsfeeds.mof| Not versioned| 20-May-2021| 15:09| 1,518 \nmsfeedsbs.mof| Not versioned| 20-May-2021| 15:09| 1,574 \nmsfeedsbs.dll| 9.0.8112.21561| 20-May-2021| 15:34| 41,472 \nmsfeedssync.exe| 9.0.8112.21561| 20-May-2021| 15:34| 10,752 \nmshta.exe| 9.0.8112.21561| 20-May-2021| 15:34| 11,776 \nhtml.iec| 2019.0.0.21557| 20-May-2021| 15:38| 367,616 \nmshtmled.dll| 9.0.8112.21561| 20-May-2021| 15:34| 72,704 \nmshtml.dll| 9.0.8112.21561| 20-May-2021| 15:43| 12,844,544 \nmshtml.tlb| 9.0.8112.21561| 20-May-2021| 15:34| 2,382,848 \nielowutil.exe| 9.0.8112.21561| 20-May-2021| 15:34| 223,232 \nieproxy.dll| 9.0.8112.21561| 20-May-2021| 15:34| 195,072 \nIEShims.dll| 9.0.8112.21561| 20-May-2021| 15:34| 194,560 \nExtExport.exe| 9.0.8112.21561| 20-May-2021| 15:35| 22,528 \njsdbgui.dll| 9.0.8112.21561| 20-May-2021| 15:35| 388,096 \niertutil.dll| 9.0.8112.21561| 20-May-2021| 15:35| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 20-May-2021| 15:47| 142,744 \nVGX.dll| 9.0.8112.21561| 20-May-2021| 15:35| 769,024 \nurl.dll| 9.0.8112.21561| 20-May-2021| 15:34| 231,936 \nieframe.dll| 9.0.8112.21561| 20-May-2021| 15:38| 9,757,696 \nieui.dll| 9.0.8112.21561| 20-May-2021| 15:32| 176,640 \nieinstal.exe| 9.0.8112.21561| 20-May-2021| 15:34| 474,624 \njsdebuggeride.dll| 9.0.8112.21561| 20-May-2021| 15:35| 104,448 \njscript.dll| 5.8.7601.21557| 20-May-2021| 15:34| 723,456 \njscript9.dll| 9.0.8112.21561| 20-May-2021| 15:42| 1,819,648 \nvbscript.dll| 5.8.7601.21557| 20-May-2021| 15:35| 434,176 \n \n## **Information about protection and security**\n\n * Protect yourself online: [Windows Security support](<https://support.microsoft.com/hub/4099151/windows-security-help>)\n * Learn how we guard against cyber threats: [Microsoft Security](<https://www.microsoft.com/security>)\n\n## **References**\n\nLearn about the [terminology](<https://support.microsoft.com/help/824684>) that Microsoft uses to describe software updates.\n", "cvss3": {"exploitabilityScore": 1.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "LOCAL", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.8, "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-06-08T07:00:00", "type": "mskb", "title": "KB5003636: Cumulative security update for Internet Explorer: June 8, 2021", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31959"], "modified": "2021-06-08T07:00:00", "id": "KB5003636", "href": "https://support.microsoft.com/en-us/help/5003636", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:52:17", "description": "None\nThis article applies to the following:\n\n * Internet Explorer 11 on Windows Server 2012 R2\n * Internet Explorer 11 on Windows 8.1\n * Internet Explorer 11 on Windows Server 2012\n * Internet Explorer 11 on Windows Server 2008 R2 SP1\n * Internet Explorer 11 on Windows 7 SP1\n * Internet Explorer 9 on Windows Server 2008 SP2\n\n**Important: **\n\n * As of February 11, 2020, Internet Explorer 10 is no longer in support. To get Internet Explorer 11 for Windows Server 2012 or Windows 8 Embedded Standard, see [KB4492872](<https://support.microsoft.com/help/4492872>). Install one of the following applicable updates to stay updated with the latest security fixes:\n * Cumulative Update for Internet Explorer 11 for Windows Server 2012.\n * Cumulative Update for Internet Explorer 11 for Windows 8 Embedded Standard.\n * The August 2021 Monthly Rollup.\n * Some customers using Windows Server 2008 R2 SP1 who activated their ESU multiple activation key (MAK) add-on before installing the January 14, 2020 updates might need to re-activate their key. Re-activation on affected devices should only be required once. For information on activation, see this [blog](<https://aka.ms/Windows7ESU>) post.\n * WSUS scan cab files will continue to be available for Windows 7 SP1 and Windows Server 2008 R2 SP1. If you have a subset of devices running these operating systems without ESU, they might show as non-compliant in your patch management and compliance toolsets.\n\n## **Summary**\n\nThis security update resolves vulnerabilities in Internet Explorer. To learn more about these vulnerabilities, see [Microsoft Common Vulnerabilities and Exposures](<https://portal.msrc.microsoft.com/en-us/security-guidance>).Additionally, see the following articles for more information about cumulative updates:\n\n * [Windows Server 2008 SP2 update history](<https://support.microsoft.com/help/4343218>)\n * [Windows 7 SP1 and Windows Server 2008 R2 SP1 update history](<https://support.microsoft.com/help/4009469>)\n * [Windows Server 2012 update history](<https://support.microsoft.com/help/4009471>)\n * [Windows 8.1 and Windows Server 2012 R2 update history](<https://support.microsoft.com/help/4009470>)\n\n**Important: **\n\n * The fixes that are included in this update are also included in the August 2021 Security Monthly Quality Rollup. Installing either this update or the Security Monthly Quality Rollup installs the same fixes.\n * This update is not applicable for installation on a device on which the Security Monthly Quality Rollup from August 2021 or a later month is already installed. This is because that update contains all the same fixes that are included in this update.\n * If you use update management processes other than Windows Update and you automatically approve all security update classifications for deployment, this update, the August 2021 Security-only Quality Update, and the August 2021 Security Monthly Quality Rollup are deployed. We recommend that you review your update deployment rules to make sure that the desired updates are deployed.\n * If you install a language pack after you install this update, you must reinstall this update. Therefore, we recommend that you install any language packs that you need before you install this update. For more information, see [Add language packs to Windows](<https://technet.microsoft.com/library/hh825699>).\n\n## **Known issues in this security update**\n\nWe are currently not aware of any issues in this update.\n\n## **How to get and install this update**\n\n**Before installing this update**To install Windows 7 SP1, Windows Server 2008 R2 SP1, or Windows Server 2008 SP2 updates released on or after July 2019, you must have the following required updates installed. If you use Windows Update, these required updates will be offered automatically as needed.\n\n * Install the SHA-2 code signing support updates: \n \nFor Windows 7 SP1, Windows Server 2008 R2, and Windows Server 2008 SP2, you must have the SHA-2 update ([KB4474419](<https://support.microsoft.com/help/4474419>)) that is dated September 23, 2019 or a later SHA-2 update installed and then restart your device before you apply this update. For more information about SHA-2 updates, see [2019 SHA-2 Code Signing Support requirement for Windows and WSUS](<https://support.microsoft.com/help/4472027>). \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the servicing stack update (SSU) ([KB4490628](<https://support.microsoft.com/help/4490628>)) that is dated March 12, 2019. After update [KB4490628](<https://support.microsoft.com/help/4490628>) is installed, we recommend that you install the July 13, 2021 SSU ([KB5004378](<https://support.microsoft.com/help/5004378>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>). \n \nFor Windows Server 2008 SP2, you must have installed the servicing stack update (SSU) ([KB4493730](<https://support.microsoft.com/help/4493730>)) that is dated April 9, 2019. After update [KB4493730](<https://support.microsoft.com/help/4493730>) is installed, we recommend that you install the October 13, 2020 SSU ([KB4580971](<https://support.microsoft.com/help/4580971>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>).\n * Install the Extended Security Update (ESU): \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the \"Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4538483](<https://support.microsoft.com/en/help/4538483>)) or the \"Update for the Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4575903](<https://support.microsoft.com/help/4575903>)). The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). \n \nFor Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, you must have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems and follow the procedures in [KB4522133](<https://support.microsoft.com/help/4522133>) to continue receiving security updates after extended support ends. Extended support ends as follows:\n * For Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, extended support ends on January 14, 2020.\n * For Windows Embedded Standard 7, extended support ends on October 13, 2020.\nFor more information about ESU and which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>). \n \nFor Windows Embedded Standard 7, Windows Management Instrumentation (WMI) must be enabled to get updates from Windows Update or Windows Server Update Services. \n \nFor Windows Thin PC, you must have the August 11, 2020 SSU ([KB4570673](<https://support.microsoft.com/help/4570673>)) or a later SSU installed to make sure you continue to get the extended security updates starting with the October 13, 2020 updates.**Important **You must restart your device after you install these required updates.**Install this update**To install this update, use one of the following release channels.**Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| No| See the other following options. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5005036>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically synchronize with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2008 Service Pack 2, Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1, Windows Server 2012, Windows Embedded 8 Standard, Windows 8.1, Windows Server 2012 R2**Classification**: Security Updates \n \n## **File information**\n\nThe English (United States) version of this software update installs files that have the attributes that are listed in the following tables.**Note** The MANIFEST files (.manifest) and MUM files (.mum) that are installed are not listed.\n\n### Windows 8.1, Windows RT 8.1 and Windows Server 2012 R2\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20045| 4-Jun-2021| 21:32| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:21| 1,342,976 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:22| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \ninetcpl.cpl| 11.0.9600.20045| 4-Jun-2021| 21:30| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:25| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:23| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:26| 230,912 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 20:26| 4,387,840 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 12-Jul-2021| 23:25| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niedkcs32.dll| 18.0.9600.20045| 4-Jun-2021| 21:34| 333,312 \ninstall.ins| Not versioned| 12-Jul-2021| 19:02| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:18| 710,656 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 20:55| 489,472 \niedvtool.dll| 11.0.9600.20045| 4-Jun-2021| 22:45| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:52| 38,912 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:36| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:31| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 4,096 \nF12.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:23| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Resources.dll| 11.0.9600.18939| 10-Feb-2018| 9:17| 10,948,096 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nF12.dll| 11.0.9600.19963| 12-Feb-2021| 18:17| 1,207,808 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 20,293,632 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:40| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nieetwcollector.exe| 11.0.9600.18666| 16-Apr-2017| 0:47| 104,960 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 2:19| 4,096 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.20045| 4-Jun-2021| 21:12| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 19:58| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 19:58| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 19:58| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 19:58| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:36| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 12-Jul-2021| 22:32| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.20045| 4-Jun-2021| 21:48| 1,399,296 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:18| 65 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:19| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20064| 14-Jun-2021| 21:16| 2,308,608 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:11| 692,224 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:23| 154,112 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 124,928 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:11| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:26| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 13,882,368 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:40| 24,486 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:38| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:25| 1,678,023 \ninetcomm.dll| 6.3.9600.20091| 12-Jul-2021| 20:41| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 4,119,040 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:58| 653,824 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:07| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20045| 4-Jun-2021| 21:30| 2,882,048 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 21:22| 108,544 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 19:18| 65,024 \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:48| 1,562,624 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 23:30| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 21:51| 43,008 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:35| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:01| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:20| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:00| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:58| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:02| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:39| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nhtml.iec| 2019.0.0.20045| 4-Jun-2021| 22:23| 417,280 \ninetcpl.cpl| 11.0.9600.20045| 4-Jun-2021| 21:42| 2,132,992 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:33| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:43| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:06| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:40| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:47| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 276,480 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:08| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:41| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:14| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 21:04| 4,858,880 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 21:57| 54,784 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 2:49| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:36| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 12-Jul-2021| 23:40| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:14| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 75,776 \nieui.dll| 11.0.9600.20045| 4-Jun-2021| 22:15| 615,936 \niedkcs32.dll| 18.0.9600.20045| 4-Jun-2021| 21:45| 381,952 \ninstall.ins| Not versioned| 12-Jul-2021| 19:07| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:29| 800,768 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:41| 145,920 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 21:40| 33,280 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:47| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 21:32| 666,624 \niedvtool.dll| 11.0.9600.20045| 5-Jun-2021| 0:16| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:21| 50,176 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:53| 491,008 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 316,416 \nEscMigPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 124,416 \nescUnattend.exe| 11.0.9600.19326| 25-Mar-2019| 22:54| 87,040 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:42| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:51| 245,248 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 19:00| 10,949,120 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:50| 372,224 \nF12.dll| 11.0.9600.20045| 4-Jun-2021| 21:50| 1,422,848 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:58| 809,472 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:54| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 23:54| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 5:16| 60,416 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 22:08| 12,800 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 13,824 \nmshtmled.dll| 11.0.9600.20045| 4-Jun-2021| 21:55| 92,672 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 22:22| 25,757,696 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 3:30| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:41| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 21:54| 132,096 \nieetwcollector.exe| 11.0.9600.18895| 1-Jan-2018| 21:17| 116,224 \nieetwproxystub.dll| 11.0.9600.18895| 1-Jan-2018| 21:28| 48,640 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 3:30| 4,096 \nielowutil.exe| 11.0.9600.17416| 30-Oct-2014| 21:55| 222,720 \nieproxy.dll| 11.0.9600.20045| 4-Jun-2021| 21:13| 870,400 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:29| 387,072 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 22:10| 167,424 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 143,872 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 18:08| 51,712 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 21:51| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 12-Jul-2021| 22:53| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 591,872 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:44| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 1,862,656 \nMshtmlDac.dll| 11.0.9600.19846| 23-Sep-2020| 21:25| 88,064 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 18:38| 1,217,024 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 21:19| 152,064 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:43| 65 \nwebcheck.dll| 11.0.9600.20045| 4-Jun-2021| 21:44| 262,144 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:44| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 579,192 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 403,592 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 107,152 \nmsrating.dll| 11.0.9600.18895| 1-Jan-2018| 20:56| 199,680 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20064| 14-Jun-2021| 21:56| 2,916,864 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:28| 728,064 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 21:56| 34,304 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 66,560 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:58| 16,303 \ninseng.dll| 11.0.9600.19101| 18-Jul-2018| 21:03| 107,520 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 21:29| 111,616 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:45| 219,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:07| 172,032 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 11:58| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 1,018,880 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 237,568 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 23:22| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:15| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:16| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:12| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,278,912 \nieframe.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:49| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 21:26| 15,507,456 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:41| 24,486 \nieinstal.exe| 11.0.9600.18639| 25-Mar-2017| 10:20| 492,032 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:14| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:57| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:03| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \ninetres.admx| Not versioned| 8-Feb-2021| 20:02| 1,678,023 \ninetcomm.dll| 6.3.9600.20091| 12-Jul-2021| 21:06| 1,033,216 \nINETRES.dll| 6.3.9600.16384| 22-Aug-2013| 4:43| 84,480 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 22:01| 5,507,584 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 19:03| 814,592 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:29| 785,408 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:39| 580,608 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 20,293,632 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:43| 3,228 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 13,882,368 \nie9props.propdesc| Not versioned| 23-Sep-2013| 19:34| 2,843 \nwow64_ieframe.ptxml| Not versioned| 5-Feb-2014| 21:43| 24,486 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 4,119,040 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:58| 653,824 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:07| 498,176 \nactxprxy.dll| 6.3.9600.20045| 4-Jun-2021| 21:32| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:21| 1,342,976 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:22| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \ninetcpl.cpl| 11.0.9600.20045| 4-Jun-2021| 21:30| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:25| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 20:26| 4,387,840 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 12-Jul-2021| 23:25| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \niedkcs32.dll| 18.0.9600.20045| 4-Jun-2021| 21:34| 333,312 \ninstall.ins| Not versioned| 12-Jul-2021| 19:02| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:18| 710,656 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \niedvtool.dll| 11.0.9600.20045| 4-Jun-2021| 22:45| 772,608 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.20045| 4-Jun-2021| 21:12| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20064| 14-Jun-2021| 21:16| 2,308,608 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20091| 12-Jul-2021| 23:26| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \ninetcomm.dll| 6.3.9600.20091| 12-Jul-2021| 20:41| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \n \n### \n\n__\n\nInternet Explorer 11 on all supported Arm-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.20045| 4-Jun-2021| 20:58| 1,064,960 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:30| 68,608 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 47,616 \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:05| 1,035,264 \niexplore.exe| 11.0.9600.19867| 12-Oct-2020| 22:01| 807,816 \nWininetPlugin.dll| 6.3.9600.16384| 21-Aug-2013| 19:52| 33,792 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 10:19| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:10| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 12-Jul-2021| 21:58| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nhtml.iec| 2019.0.0.20045| 4-Jun-2021| 21:28| 320,000 \ninetcpl.cpl| 11.0.9600.20045| 4-Jun-2021| 21:05| 2,007,040 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 307,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,888 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,304 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,008 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 303,104 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:16| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 283,648 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 291,840 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,520 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,376 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 258,048 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 256,512 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 288,256 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 285,184 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 297,472 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 12-Jul-2021| 21:58| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 281,600 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 286,720 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 292,352 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 242,176 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 12-Jul-2021| 21:58| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:03| 63,488 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:04| 215,552 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 10:09| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:54| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 12-Jul-2021| 21:57| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:59| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 20:04| 4,147,712 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 19:43| 39,936 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18698| 14-May-2017| 12:41| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 12-Jul-2021| 21:57| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:22| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 75,776 \nieui.dll| 11.0.9600.19650| 11-Feb-2020| 4:46| 427,520 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 17:52| 292,864 \ninstall.ins| Not versioned| 12-Jul-2021| 19:01| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:07| 548,864 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 107,008 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 19:34| 23,552 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:02| 62,464 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.17416| 30-Oct-2014| 19:52| 495,616 \niedvtool.dll| 11.0.9600.20045| 4-Jun-2021| 21:19| 726,016 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 39,936 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:06| 364,032 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 17:58| 221,696 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:50| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:20| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:17| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.20091| 12-Jul-2021| 21:57| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20045| 4-Jun-2021| 21:17| 175,616 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 17:44| 10,948,608 \nF12Tools.dll| 11.0.9600.20045| 4-Jun-2021| 21:16| 263,680 \nF12.dll| 11.0.9600.20045| 4-Jun-2021| 21:08| 1,186,304 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:21| 587,776 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:51| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:43| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:34| 43,520 \nmsfeedssync.exe| 11.0.9600.16384| 21-Aug-2013| 20:05| 11,776 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 73,216 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 20:22| 16,228,864 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 1:36| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:39| 3,228 \nIEAdvpack.dll| 11.0.9600.16384| 21-Aug-2013| 19:54| 98,816 \nieetwcollector.exe| 11.0.9600.18658| 5-Apr-2017| 10:29| 98,816 \nieetwproxystub.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 43,008 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 1:36| 4,096 \nielowutil.exe| 11.0.9600.17031| 22-Feb-2014| 1:32| 222,208 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:33| 308,224 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:11| 268,800 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:43| 34,816 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.16518| 6-Feb-2014| 1:12| 112,128 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 12-Jul-2021| 21:21| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 457,216 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 574,976 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 18:12| 1,935,360 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:22| 60,928 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 17:57| 1,105,408 \noccache.dll| 11.0.9600.19867| 12-Oct-2020| 21:01| 121,856 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \nwebcheck.dll| 11.0.9600.19867| 12-Oct-2020| 20:57| 201,216 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \npdm.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 420,752 \nmsdbg2.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 295,320 \npdmproxy100.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 76,712 \nmsrating.dll| 11.0.9600.17905| 15-Jun-2015| 12:46| 157,184 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20064| 14-Jun-2021| 20:45| 2,186,240 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 17:52| 678,400 \niernonce.dll| 11.0.9600.16518| 6-Feb-2014| 1:15| 28,160 \niesetup.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 59,904 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:46| 16,303 \ninseng.dll| 11.0.9600.16384| 21-Aug-2013| 19:35| 77,312 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:28| 87,552 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:02| 155,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:14| 130,048 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:09| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 734,720 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 19:49| 236,032 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:03| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,278,912 \nieframe.dll.mui| 11.0.9600.20091| 12-Jul-2021| 22:01| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:48| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:50| 1,890,304 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 20:09| 12,314,624 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:38| 24,486 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 18:45| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:24| 1,678,023 \ninetcomm.dll| 6.3.9600.20091| 12-Jul-2021| 20:24| 675,328 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 20:15| 84,480 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 20:14| 3,571,712 \njscript9diag.dll| 11.0.9600.20045| 4-Jun-2021| 21:23| 557,568 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:39| 516,096 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:43| 403,968 \n \n### Windows Server 2012\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nFileinfo.xml| Not versioned| 17-Jul-21| 1:30| 589,338 \nIe11-windows6.2-kb5005036-x86-express.cab| Not versioned| 17-Jul-21| 0:12| 729,960 \nIe11-windows6.2-kb5005036-x86.msu| Not versioned| 16-Jul-21| 23:39| 27,620,947 \nIe11-windows6.2-kb5005036-x86.psf| Not versioned| 16-Jul-21| 23:56| 184,407,260 \nPackageinfo.xml| Not versioned| 17-Jul-21| 1:30| 1,133 \nPackagestructure.xml| Not versioned| 17-Jul-21| 1:30| 149,422 \nPrebvtpackageinfo.xml| Not versioned| 17-Jul-21| 1:30| 573 \nIe11-windows6.2-kb5005036-x86.cab| Not versioned| 16-Jul-21| 23:23| 27,491,828 \nIe11-windows6.2-kb5005036-x86.xml| Not versioned| 16-Jul-21| 23:31| 450 \nWsusscan.cab| Not versioned| 16-Jul-21| 23:33| 173,630 \nUrlmon.dll| 11.0.9600.20091| 13-Jul-21| 3:21| 1,342,976 \nIexplore.exe| 11.0.9600.20091| 16-Jul-21| 18:01| 810,384 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:01| 46,592 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 52,736 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 51,200 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 51,200 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 56,320 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 57,856 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 54,272 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 47,616 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 49,152 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 55,296 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 45,056 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 51,712 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 51,712 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 53,248 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 39,424 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 35,840 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 50,176 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 51,200 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 50,688 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 52,736 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 53,760 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 54,272 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 54,272 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 52,736 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 51,200 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 53,248 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 52,736 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 51,712 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 50,688 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 50,688 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 50,176 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 50,176 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 30,720 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 30,720 \nWininet.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 30,720 \nInetcpl.cpl| 11.0.9600.20091| 13-Jul-21| 3:37| 2,058,752 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:01| 307,200 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 293,888 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 290,304 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 289,280 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 299,008 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 303,104 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:38| 282,112 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 296,960 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 283,648 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 291,840 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 299,520 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 275,968 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 290,816 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 293,376 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 296,960 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 258,048 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 256,512 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 289,280 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 288,256 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 285,184 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 295,424 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 297,472 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 292,864 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 295,424 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 294,400 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 294,400 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 292,864 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 290,816 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 288,768 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 286,208 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 281,600 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 286,720 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 292,352 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 242,176 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 243,200 \nMshtml.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:23| 243,200 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:01| 46,080 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 50,176 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 48,640 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 49,664 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 51,712 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 54,272 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 50,176 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 47,616 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 49,152 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 50,688 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 45,056 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 49,152 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 49,152 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 49,664 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 39,936 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 39,424 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 47,616 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 47,616 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 48,640 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 51,200 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 50,688 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 49,664 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 50,176 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 49,152 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 48,640 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 50,176 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 48,640 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 49,664 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 48,640 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 48,128 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 49,152 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 48,128 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 35,328 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 35,328 \nUrlmon.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 35,328 \nJsproxy.dll| 11.0.9600.20091| 13-Jul-21| 4:01| 47,104 \nWininet.dll| 11.0.9600.20091| 13-Jul-21| 3:26| 4,387,840 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:01| 114,176 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 130,560 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 124,928 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 122,880 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 130,048 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 138,240 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:38| 114,688 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 131,584 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 117,760 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 122,368 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 134,144 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 107,008 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 123,392 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 127,488 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 128,512 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 88,576 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 82,944 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 125,440 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 123,392 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 120,320 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 130,560 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 129,024 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 125,952 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 129,024 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 128,000 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 123,904 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 129,024 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 123,904 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 124,416 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 121,856 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 115,712 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 123,904 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 125,440 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 72,704 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 73,728 \nInetcpl.cpl.mui| 11.0.9600.20091| 16-Jul-21| 18:23| 73,728 \nMsfeedsbs.dll| 11.0.9600.20091| 13-Jul-21| 3:45| 52,736 \nMsfeedsbs.mof| Not versioned| 13-Jul-21| 2:13| 1,574 \nMsfeedssync.exe| 11.0.9600.20091| 13-Jul-21| 4:07| 11,776 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not versioned| 13-Jul-21| 2:01| 3,228 \nMshtml.dll| 11.0.9600.20091| 13-Jul-21| 4:35| 20,293,632 \nMshtml.tlb| 11.0.9600.20091| 13-Jul-21| 4:16| 2,724,864 \nIeproxy.dll| 11.0.9600.20091| 13-Jul-21| 3:16| 310,784 \nIeshims.dll| 11.0.9600.20091| 13-Jul-21| 3:20| 290,304 \nIertutil.dll| 11.0.9600.20091| 13-Jul-21| 4:06| 2,308,608 \nSqmapi.dll| 6.2.9200.16384| 16-Jul-21| 18:01| 228,240 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 2,066,432 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 2,121,216 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 2,075,648 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 2,063,872 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 2,314,240 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 2,390,528 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:38| 2,033,152 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 2,307,584 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 2,255,872 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 2,061,312 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 2,326,016 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 2,019,840 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 2,071,040 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 2,082,816 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 2,307,584 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 2,170,368 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 2,153,984 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 2,291,712 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 2,283,520 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 2,052,096 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 2,301,952 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 2,093,056 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 2,075,648 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 2,299,392 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 2,094,592 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 2,316,800 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 2,305,536 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 2,278,912 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 2,285,568 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 2,060,288 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 2,315,776 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 2,279,424 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 2,324,992 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 2,098,176 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 1,890,304 \nIeframe.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:23| 1,890,304 \nIeframe.dll| 11.0.9600.20091| 13-Jul-21| 3:43| 13,882,368 \nIeframe.ptxml| Not versioned| 13-Jul-21| 2:01| 24,486 \nInetres.adml| Not versioned| 16-Jul-21| 18:01| 463,373 \nInetres.adml| Not versioned| 16-Jul-21| 18:02| 751,382 \nInetres.adml| Not versioned| 16-Jul-21| 18:03| 526,344 \nInetres.adml| Not versioned| 16-Jul-21| 18:03| 499,706 \nInetres.adml| Not versioned| 16-Jul-21| 18:04| 552,386 \nInetres.adml| Not versioned| 16-Jul-21| 18:05| 944,609 \nInetres.adml| Not versioned| 16-Jul-21| 18:38| 457,561 \nInetres.adml| Not versioned| 16-Jul-21| 18:05| 543,997 \nInetres.adml| Not versioned| 16-Jul-21| 18:06| 751,359 \nInetres.adml| Not versioned| 16-Jul-21| 18:06| 526,606 \nInetres.adml| Not versioned| 16-Jul-21| 18:07| 575,887 \nInetres.adml| Not versioned| 16-Jul-21| 18:08| 463,373 \nInetres.adml| Not versioned| 16-Jul-21| 18:08| 751,329 \nInetres.adml| Not versioned| 16-Jul-21| 18:09| 570,784 \nInetres.adml| Not versioned| 16-Jul-21| 18:09| 548,169 \nInetres.adml| Not versioned| 16-Jul-21| 18:10| 639,283 \nInetres.adml| Not versioned| 16-Jul-21| 18:11| 525,516 \nInetres.adml| Not versioned| 16-Jul-21| 18:11| 751,351 \nInetres.adml| Not versioned| 16-Jul-21| 18:12| 751,299 \nInetres.adml| Not versioned| 16-Jul-21| 18:13| 488,536 \nInetres.adml| Not versioned| 16-Jul-21| 18:13| 548,544 \nInetres.adml| Not versioned| 16-Jul-21| 18:14| 559,395 \nInetres.adml| Not versioned| 16-Jul-21| 18:15| 535,117 \nInetres.adml| Not versioned| 16-Jul-21| 18:15| 541,506 \nInetres.adml| Not versioned| 16-Jul-21| 18:16| 751,421 \nInetres.adml| Not versioned| 16-Jul-21| 18:16| 804,520 \nInetres.adml| Not versioned| 16-Jul-21| 18:17| 751,266 \nInetres.adml| Not versioned| 16-Jul-21| 18:18| 751,330 \nInetres.adml| Not versioned| 16-Jul-21| 18:18| 751,274 \nInetres.adml| Not versioned| 16-Jul-21| 18:19| 503,958 \nInetres.adml| Not versioned| 16-Jul-21| 18:19| 751,272 \nInetres.adml| Not versioned| 16-Jul-21| 18:20| 521,633 \nInetres.adml| Not versioned| 16-Jul-21| 18:21| 751,313 \nInetres.adml| Not versioned| 16-Jul-21| 18:21| 420,094 \nInetres.adml| Not versioned| 16-Jul-21| 18:22| 436,663 \nInetres.adml| Not versioned| 16-Jul-21| 18:23| 436,663 \nInetres.admx| Not versioned| 4-Mar-21| 22:09| 1,678,023 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:01| 29,184 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:02| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 32,768 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:03| 33,280 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:04| 35,328 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 37,888 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:38| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:05| 34,304 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:06| 33,280 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:07| 34,304 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 27,648 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:08| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:09| 34,304 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 33,792 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:10| 23,040 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 22,016 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:11| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:12| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 31,232 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:13| 34,304 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:14| 35,840 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 32,768 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:15| 33,280 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:16| 34,816 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:17| 33,280 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 32,256 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:18| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:19| 32,768 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:20| 30,720 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 29,696 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:21| 16,384 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:22| 16,896 \nJscript9.dll.mui| 11.0.9600.20091| 16-Jul-21| 18:23| 16,896 \nJscript9.dll| 11.0.9600.20091| 13-Jul-21| 3:46| 4,119,040 \nJscript9diag.dll| 11.0.9600.20091| 13-Jul-21| 3:58| 620,032 \nJscript.dll| 5.8.9600.20091| 13-Jul-21| 3:58| 653,824 \nVbscript.dll| 5.8.9600.20091| 13-Jul-21| 4:07| 498,176 \nPackage.cab| Not versioned| 16-Jul-21| 23:31| 300,465 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **File size**| **Date**| **Time** \n---|---|---|---|--- \nFileinfo.xml| Not versioned| 916,366| 17-Jul-21| 1:59 \nIe11-windows6.2-kb5005036-x64-express.cab| Not versioned| 1,226,553| 17-Jul-21| 0:15 \nIe11-windows6.2-kb5005036-x64.msu| Not versioned| 48,197,090| 16-Jul-21| 23:42 \nIe11-windows6.2-kb5005036-x64.psf| Not versioned| 282,907,689| 17-Jul-21| 0:02 \nPackageinfo.xml| Not versioned| 1,228| 17-Jul-21| 1:59 \nPackagestructure.xml| Not versioned| 239,770| 17-Jul-21| 1:59 \nPrebvtpackageinfo.xml| Not versioned| 652| 17-Jul-21| 1:59 \nIe11-windows6.2-kb5005036-x64.cab| Not versioned| 48,101,609| 16-Jul-21| 23:31 \nIe11-windows6.2-kb5005036-x64.xml| Not versioned| 452| 16-Jul-21| 23:31 \nWsusscan.cab| Not versioned| 172,370| 16-Jul-21| 23:36 \nUrlmon.dll| 11.0.9600.20091| 1,562,624| 13-Jul-21| 3:48 \nIexplore.exe| 11.0.9600.20091| 810,400| 16-Jul-21| 21:10 \nWininet.dll.mui| 11.0.9600.20091| 46,592| 16-Jul-21| 21:11 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 21:12 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 21:12 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 21:13 \nWininet.dll.mui| 11.0.9600.20091| 56,320| 16-Jul-21| 21:14 \nWininet.dll.mui| 11.0.9600.20091| 57,856| 16-Jul-21| 21:14 \nWininet.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 22:13 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 21:15 \nWininet.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 21:15 \nWininet.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:16 \nWininet.dll.mui| 11.0.9600.20091| 55,296| 16-Jul-21| 21:17 \nWininet.dll.mui| 11.0.9600.20091| 45,056| 16-Jul-21| 21:17 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 21:18 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 21:19 \nWininet.dll.mui| 11.0.9600.20091| 53,248| 16-Jul-21| 21:19 \nWininet.dll.mui| 11.0.9600.20091| 39,424| 16-Jul-21| 21:20 \nWininet.dll.mui| 11.0.9600.20091| 35,840| 16-Jul-21| 21:20 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:21 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 21:21 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 21:22 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 21:23 \nWininet.dll.mui| 11.0.9600.20091| 53,760| 16-Jul-21| 21:23 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 21:24 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 21:24 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 21:25 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 21:26 \nWininet.dll.mui| 11.0.9600.20091| 53,248| 16-Jul-21| 21:27 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 21:27 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 21:27 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 21:28 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 21:29 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:29 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:30 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 21:30 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 21:31 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 21:32 \nInetcpl.cpl| 11.0.9600.20091| 2,132,992| 13-Jul-21| 3:57 \nMshtml.dll.mui| 11.0.9600.20091| 307,200| 16-Jul-21| 21:11 \nMshtml.dll.mui| 11.0.9600.20091| 293,888| 16-Jul-21| 21:12 \nMshtml.dll.mui| 11.0.9600.20091| 290,304| 16-Jul-21| 21:12 \nMshtml.dll.mui| 11.0.9600.20091| 289,280| 16-Jul-21| 21:13 \nMshtml.dll.mui| 11.0.9600.20091| 299,008| 16-Jul-21| 21:14 \nMshtml.dll.mui| 11.0.9600.20091| 303,104| 16-Jul-21| 21:14 \nMshtml.dll.mui| 11.0.9600.20091| 282,112| 16-Jul-21| 22:13 \nMshtml.dll.mui| 11.0.9600.20091| 296,960| 16-Jul-21| 21:15 \nMshtml.dll.mui| 11.0.9600.20091| 283,648| 16-Jul-21| 21:16 \nMshtml.dll.mui| 11.0.9600.20091| 291,840| 16-Jul-21| 21:16 \nMshtml.dll.mui| 11.0.9600.20091| 299,520| 16-Jul-21| 21:17 \nMshtml.dll.mui| 11.0.9600.20091| 275,968| 16-Jul-21| 21:17 \nMshtml.dll.mui| 11.0.9600.20091| 290,816| 16-Jul-21| 21:18 \nMshtml.dll.mui| 11.0.9600.20091| 293,376| 16-Jul-21| 21:18 \nMshtml.dll.mui| 11.0.9600.20091| 296,960| 16-Jul-21| 21:19 \nMshtml.dll.mui| 11.0.9600.20091| 258,048| 16-Jul-21| 21:20 \nMshtml.dll.mui| 11.0.9600.20091| 256,512| 16-Jul-21| 21:20 \nMshtml.dll.mui| 11.0.9600.20091| 289,280| 16-Jul-21| 21:21 \nMshtml.dll.mui| 11.0.9600.20091| 288,256| 16-Jul-21| 21:21 \nMshtml.dll.mui| 11.0.9600.20091| 285,184| 16-Jul-21| 21:22 \nMshtml.dll.mui| 11.0.9600.20091| 295,424| 16-Jul-21| 21:23 \nMshtml.dll.mui| 11.0.9600.20091| 297,472| 16-Jul-21| 21:23 \nMshtml.dll.mui| 11.0.9600.20091| 292,864| 16-Jul-21| 21:24 \nMshtml.dll.mui| 11.0.9600.20091| 295,424| 16-Jul-21| 21:25 \nMshtml.dll.mui| 11.0.9600.20091| 294,400| 16-Jul-21| 21:25 \nMshtml.dll.mui| 11.0.9600.20091| 294,400| 16-Jul-21| 21:26 \nMshtml.dll.mui| 11.0.9600.20091| 292,864| 16-Jul-21| 21:26 \nMshtml.dll.mui| 11.0.9600.20091| 290,816| 16-Jul-21| 21:27 \nMshtml.dll.mui| 11.0.9600.20091| 288,768| 16-Jul-21| 21:27 \nMshtml.dll.mui| 11.0.9600.20091| 286,208| 16-Jul-21| 21:28 \nMshtml.dll.mui| 11.0.9600.20091| 281,600| 16-Jul-21| 21:29 \nMshtml.dll.mui| 11.0.9600.20091| 286,720| 16-Jul-21| 21:29 \nMshtml.dll.mui| 11.0.9600.20091| 292,352| 16-Jul-21| 21:30 \nMshtml.dll.mui| 11.0.9600.20091| 242,176| 16-Jul-21| 21:30 \nMshtml.dll.mui| 11.0.9600.20091| 243,200| 16-Jul-21| 21:31 \nMshtml.dll.mui| 11.0.9600.20091| 243,200| 16-Jul-21| 21:32 \nUrlmon.dll.mui| 11.0.9600.20091| 46,080| 16-Jul-21| 21:11 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:12 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 21:12 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 21:13 \nUrlmon.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 21:14 \nUrlmon.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 21:15 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 22:13 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:15 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 21:15 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:16 \nUrlmon.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 21:17 \nUrlmon.dll.mui| 11.0.9600.20091| 45,056| 16-Jul-21| 21:17 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:18 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:18 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 21:19 \nUrlmon.dll.mui| 11.0.9600.20091| 39,936| 16-Jul-21| 21:20 \nUrlmon.dll.mui| 11.0.9600.20091| 39,424| 16-Jul-21| 21:21 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 21:21 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 21:21 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 21:22 \nUrlmon.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 21:23 \nUrlmon.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 21:23 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 21:24 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:24 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:25 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 21:26 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 21:26 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 21:27 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 21:27 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 21:28 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 21:29 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 21:29 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 21:30 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 21:30 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 21:31 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 21:32 \nJsproxy.dll| 11.0.9600.20091| 54,784| 13-Jul-21| 4:32 \nWininet.dll| 11.0.9600.20091| 4,858,880| 13-Jul-21| 4:04 \nInetcpl.cpl.mui| 11.0.9600.20091| 114,176| 16-Jul-21| 21:11 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,560| 16-Jul-21| 21:12 \nInetcpl.cpl.mui| 11.0.9600.20091| 124,928| 16-Jul-21| 21:12 \nInetcpl.cpl.mui| 11.0.9600.20091| 122,880| 16-Jul-21| 21:13 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,048| 16-Jul-21| 21:14 \nInetcpl.cpl.mui| 11.0.9600.20091| 138,240| 16-Jul-21| 21:15 \nInetcpl.cpl.mui| 11.0.9600.20091| 114,688| 16-Jul-21| 22:13 \nInetcpl.cpl.mui| 11.0.9600.20091| 131,584| 16-Jul-21| 21:15 \nInetcpl.cpl.mui| 11.0.9600.20091| 117,760| 16-Jul-21| 21:15 \nInetcpl.cpl.mui| 11.0.9600.20091| 122,368| 16-Jul-21| 21:16 \nInetcpl.cpl.mui| 11.0.9600.20091| 134,144| 16-Jul-21| 21:17 \nInetcpl.cpl.mui| 11.0.9600.20091| 107,008| 16-Jul-21| 21:17 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,392| 16-Jul-21| 21:18 \nInetcpl.cpl.mui| 11.0.9600.20091| 127,488| 16-Jul-21| 21:19 \nInetcpl.cpl.mui| 11.0.9600.20091| 128,512| 16-Jul-21| 21:19 \nInetcpl.cpl.mui| 11.0.9600.20091| 88,576| 16-Jul-21| 21:20 \nInetcpl.cpl.mui| 11.0.9600.20091| 82,944| 16-Jul-21| 21:20 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,440| 16-Jul-21| 21:21 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,392| 16-Jul-21| 21:21 \nInetcpl.cpl.mui| 11.0.9600.20091| 120,320| 16-Jul-21| 21:22 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,560| 16-Jul-21| 21:23 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 21:23 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,952| 16-Jul-21| 21:24 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 21:24 \nInetcpl.cpl.mui| 11.0.9600.20091| 128,000| 16-Jul-21| 21:25 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 21:26 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 21:26 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 21:27 \nInetcpl.cpl.mui| 11.0.9600.20091| 124,416| 16-Jul-21| 21:27 \nInetcpl.cpl.mui| 11.0.9600.20091| 121,856| 16-Jul-21| 21:28 \nInetcpl.cpl.mui| 11.0.9600.20091| 115,712| 16-Jul-21| 21:29 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 21:29 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,440| 16-Jul-21| 21:30 \nInetcpl.cpl.mui| 11.0.9600.20091| 72,704| 16-Jul-21| 21:30 \nInetcpl.cpl.mui| 11.0.9600.20091| 73,728| 16-Jul-21| 21:31 \nInetcpl.cpl.mui| 11.0.9600.20091| 73,728| 16-Jul-21| 21:32 \nMsfeedsbs.dll| 11.0.9600.20091| 60,416| 13-Jul-21| 4:11 \nMsfeedsbs.mof| Not versioned| 1,574| 13-Jul-21| 2:21 \nMsfeedssync.exe| 11.0.9600.20091| 13,312| 13-Jul-21| 4:39 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not versioned| 3,228| 13-Jul-21| 2:13 \nMshtml.dll| 11.0.9600.20091| 25,757,696| 13-Jul-21| 5:22 \nMshtml.tlb| 11.0.9600.20091| 2,724,864| 13-Jul-21| 4:50 \nIeproxy.dll| 11.0.9600.20091| 870,400| 13-Jul-21| 3:29 \nIeshims.dll| 11.0.9600.20091| 387,072| 13-Jul-21| 3:34 \nIertutil.dll| 11.0.9600.20091| 2,916,864| 13-Jul-21| 4:48 \nSqmapi.dll| 6.2.9200.16384| 286,112| 16-Jul-21| 21:10 \nIeframe.dll.mui| 11.0.9600.20091| 2,066,432| 16-Jul-21| 21:11 \nIeframe.dll.mui| 11.0.9600.20091| 2,121,216| 16-Jul-21| 21:12 \nIeframe.dll.mui| 11.0.9600.20091| 2,075,648| 16-Jul-21| 21:13 \nIeframe.dll.mui| 11.0.9600.20091| 2,063,872| 16-Jul-21| 21:13 \nIeframe.dll.mui| 11.0.9600.20091| 2,314,240| 16-Jul-21| 21:14 \nIeframe.dll.mui| 11.0.9600.20091| 2,390,528| 16-Jul-21| 21:15 \nIeframe.dll.mui| 11.0.9600.20091| 2,033,152| 16-Jul-21| 22:13 \nIeframe.dll.mui| 11.0.9600.20091| 2,307,584| 16-Jul-21| 21:15 \nIeframe.dll.mui| 11.0.9600.20091| 2,255,872| 16-Jul-21| 21:16 \nIeframe.dll.mui| 11.0.9600.20091| 2,061,312| 16-Jul-21| 21:16 \nIeframe.dll.mui| 11.0.9600.20091| 2,326,016| 16-Jul-21| 21:17 \nIeframe.dll.mui| 11.0.9600.20091| 2,019,840| 16-Jul-21| 21:18 \nIeframe.dll.mui| 11.0.9600.20091| 2,071,040| 16-Jul-21| 21:18 \nIeframe.dll.mui| 11.0.9600.20091| 2,082,816| 16-Jul-21| 21:19 \nIeframe.dll.mui| 11.0.9600.20091| 2,307,584| 16-Jul-21| 21:19 \nIeframe.dll.mui| 11.0.9600.20091| 2,170,368| 16-Jul-21| 21:20 \nIeframe.dll.mui| 11.0.9600.20091| 2,153,984| 16-Jul-21| 21:21 \nIeframe.dll.mui| 11.0.9600.20091| 2,291,712| 16-Jul-21| 21:21 \nIeframe.dll.mui| 11.0.9600.20091| 2,283,520| 16-Jul-21| 21:22 \nIeframe.dll.mui| 11.0.9600.20091| 2,052,096| 16-Jul-21| 21:22 \nIeframe.dll.mui| 11.0.9600.20091| 2,301,952| 16-Jul-21| 21:23 \nIeframe.dll.mui| 11.0.9600.20091| 2,093,056| 16-Jul-21| 21:24 \nIeframe.dll.mui| 11.0.9600.20091| 2,075,648| 16-Jul-21| 21:24 \nIeframe.dll.mui| 11.0.9600.20091| 2,299,392| 16-Jul-21| 21:25 \nIeframe.dll.mui| 11.0.9600.20091| 2,094,592| 16-Jul-21| 21:25 \nIeframe.dll.mui| 11.0.9600.20091| 2,316,800| 16-Jul-21| 21:26 \nIeframe.dll.mui| 11.0.9600.20091| 2,305,536| 16-Jul-21| 21:27 \nIeframe.dll.mui| 11.0.9600.20091| 2,278,912| 16-Jul-21| 21:27 \nIeframe.dll.mui| 11.0.9600.20091| 2,285,568| 16-Jul-21| 21:28 \nIeframe.dll.mui| 11.0.9600.20091| 2,060,288| 16-Jul-21| 21:28 \nIeframe.dll.mui| 11.0.9600.20091| 2,315,776| 16-Jul-21| 21:29 \nIeframe.dll.mui| 11.0.9600.20091| 2,279,424| 16-Jul-21| 21:29 \nIeframe.dll.mui| 11.0.9600.20091| 2,324,992| 16-Jul-21| 21:30 \nIeframe.dll.mui| 11.0.9600.20091| 2,098,176| 16-Jul-21| 21:31 \nIeframe.dll.mui| 11.0.9600.20091| 1,890,304| 16-Jul-21| 21:31 \nIeframe.dll.mui| 11.0.9600.20091| 1,890,304| 16-Jul-21| 21:32 \nIeframe.dll| 11.0.9600.20091| 15,507,456| 13-Jul-21| 4:26 \nIeframe.ptxml| Not versioned| 24,486| 13-Jul-21| 2:13 \nInetres.adml| Not versioned| 463,373| 16-Jul-21| 21:11 \nInetres.adml| Not versioned| 751,257| 16-Jul-21| 21:12 \nInetres.adml| Not versioned| 526,342| 16-Jul-21| 21:12 \nInetres.adml| Not versioned| 499,704| 16-Jul-21| 21:13 \nInetres.adml| Not versioned| 552,388| 16-Jul-21| 21:14 \nInetres.adml| Not versioned| 944,608| 16-Jul-21| 21:14 \nInetres.adml| Not versioned| 457,561| 16-Jul-21| 22:13 \nInetres.adml| Not versioned| 543,997| 16-Jul-21| 21:15 \nInetres.adml| Not versioned| 751,275| 16-Jul-21| 21:15 \nInetres.adml| Not versioned| 526,606| 16-Jul-21| 21:16 \nInetres.adml| Not versioned| 575,891| 16-Jul-21| 21:17 \nInetres.adml| Not versioned| 463,373| 16-Jul-21| 21:17 \nInetres.adml| Not versioned| 751,582| 16-Jul-21| 21:18 \nInetres.adml| Not versioned| 570,785| 16-Jul-21| 21:19 \nInetres.adml| Not versioned| 548,170| 16-Jul-21| 21:19 \nInetres.adml| Not versioned| 639,283| 16-Jul-21| 21:20 \nInetres.adml| Not versioned| 525,516| 16-Jul-21| 21:20 \nInetres.adml| Not versioned| 751,408| 16-Jul-21| 21:21 \nInetres.adml| Not versioned| 751,457| 16-Jul-21| 21:21 \nInetres.adml| Not versioned| 488,537| 16-Jul-21| 21:22 \nInetres.adml| Not versioned| 548,544| 16-Jul-21| 21:23 \nInetres.adml| Not versioned| 559,394| 16-Jul-21| 21:23 \nInetres.adml| Not versioned| 535,117| 16-Jul-21| 21:24 \nInetres.adml| Not versioned| 541,505| 16-Jul-21| 21:24 \nInetres.adml| Not versioned| 751,347| 16-Jul-21| 21:25 \nInetres.adml| Not versioned| 804,520| 16-Jul-21| 21:26 \nInetres.adml| Not versioned| 751,166| 16-Jul-21| 21:26 \nInetres.adml| Not versioned| 751,517| 16-Jul-21| 21:27 \nInetres.adml| Not versioned| 751,324| 16-Jul-21| 21:27 \nInetres.adml| Not versioned| 503,958| 16-Jul-21| 21:28 \nInetres.adml| Not versioned| 751,319| 16-Jul-21| 21:29 \nInetres.adml| Not versioned| 521,634| 16-Jul-21| 21:29 \nInetres.adml| Not versioned| 751,381| 16-Jul-21| 21:30 \nInetres.adml| Not versioned| 420,094| 16-Jul-21| 21:30 \nInetres.adml| Not versioned| 436,663| 16-Jul-21| 21:31 \nInetres.adml| Not versioned| 436,663| 16-Jul-21| 21:32 \nInetres.admx| Not versioned| 1,678,023| 13-Apr-21| 5:59 \nJscript9.dll.mui| 11.0.9600.20091| 29,184| 16-Jul-21| 21:11 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:12 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 21:12 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 21:13 \nJscript9.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 21:14 \nJscript9.dll.mui| 11.0.9600.20091| 37,888| 16-Jul-21| 21:14 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 22:13 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 21:15 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:15 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 21:16 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 21:17 \nJscript9.dll.mui| 11.0.9600.20091| 27,648| 16-Jul-21| 21:17 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:18 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 21:18 \nJscript9.dll.mui| 11.0.9600.20091| 33,792| 16-Jul-21| 21:19 \nJscript9.dll.mui| 11.0.9600.20091| 23,040| 16-Jul-21| 21:20 \nJscript9.dll.mui| 11.0.9600.20091| 22,016| 16-Jul-21| 21:20 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:21 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:21 \nJscript9.dll.mui| 11.0.9600.20091| 31,232| 16-Jul-21| 21:22 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 21:23 \nJscript9.dll.mui| 11.0.9600.20091| 35,840| 16-Jul-21| 21:23 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 21:24 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 21:24 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:25 \nJscript9.dll.mui| 11.0.9600.20091| 34,816| 16-Jul-21| 21:26 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 21:26 \nJscript9.dll.mui| 11.0.9600.20091| 32,256| 16-Jul-21| 21:27 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:27 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 21:28 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:29 \nJscript9.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 21:29 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 21:30 \nJscript9.dll.mui| 11.0.9600.20091| 16,384| 16-Jul-21| 21:30 \nJscript9.dll.mui| 11.0.9600.20091| 16,896| 16-Jul-21| 21:31 \nJscript9.dll.mui| 11.0.9600.20091| 16,896| 16-Jul-21| 21:32 \nJscript9.dll| 11.0.9600.20091| 5,507,584| 13-Jul-21| 5:01 \nJscript9diag.dll| 11.0.9600.20091| 814,592| 13-Jul-21| 4:28 \nJscript.dll| 5.8.9600.20091| 785,408| 13-Jul-21| 4:29 \nVbscript.dll| 5.8.9600.20091| 580,608| 13-Jul-21| 4:39 \nIexplore.exe| 11.0.9600.20091| 810,384| 16-Jul-21| 18:01 \nMshtml.dll| 11.0.9600.20091| 20,293,632| 13-Jul-21| 4:35 \nMshtml.tlb| 11.0.9600.20091| 2,724,864| 13-Jul-21| 4:16 \nWow64_microsoft-windows-ie-htmlrendering.ptxml| Not versioned| 3,228| 13-Jul-21| 2:04 \nIe9props.propdesc| Not versioned| 2,843| 4-Mar-21| 21:47 \nIeframe.dll| 11.0.9600.20091| 13,882,368| 13-Jul-21| 3:43 \nWow64_ieframe.ptxml| Not versioned| 24,486| 13-Jul-21| 2:04 \nJscript9.dll| 11.0.9600.20091| 4,119,040| 13-Jul-21| 3:46 \nJscript9diag.dll| 11.0.9600.20091| 620,032| 13-Jul-21| 3:58 \nJscript.dll| 5.8.9600.20091| 653,824| 13-Jul-21| 3:58 \nVbscript.dll| 5.8.9600.20091| 498,176| 13-Jul-21| 4:07 \nUrlmon.dll| 11.0.9600.20091| 1,342,976| 13-Jul-21| 3:21 \nWininet.dll.mui| 11.0.9600.20091| 46,592| 16-Jul-21| 18:01 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 18:02 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 18:03 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 18:04 \nWininet.dll.mui| 11.0.9600.20091| 56,320| 16-Jul-21| 18:04 \nWininet.dll.mui| 11.0.9600.20091| 57,856| 16-Jul-21| 18:04 \nWininet.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 18:38 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 18:05 \nWininet.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 18:06 \nWininet.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:06 \nWininet.dll.mui| 11.0.9600.20091| 55,296| 16-Jul-21| 18:07 \nWininet.dll.mui| 11.0.9600.20091| 45,056| 16-Jul-21| 18:08 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 18:08 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 18:09 \nWininet.dll.mui| 11.0.9600.20091| 53,248| 16-Jul-21| 18:10 \nWininet.dll.mui| 11.0.9600.20091| 39,424| 16-Jul-21| 18:10 \nWininet.dll.mui| 11.0.9600.20091| 35,840| 16-Jul-21| 18:11 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:12 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 18:12 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 18:13 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 18:13 \nWininet.dll.mui| 11.0.9600.20091| 53,760| 16-Jul-21| 18:14 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 18:15 \nWininet.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 18:15 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 18:16 \nWininet.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 18:16 \nWininet.dll.mui| 11.0.9600.20091| 53,248| 16-Jul-21| 18:17 \nWininet.dll.mui| 11.0.9600.20091| 52,736| 16-Jul-21| 18:18 \nWininet.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 18:18 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 18:19 \nWininet.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 18:19 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:20 \nWininet.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:21 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 18:21 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 18:22 \nWininet.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 18:22 \nInetcpl.cpl| 11.0.9600.20091| 2,058,752| 13-Jul-21| 3:37 \nMshtml.dll.mui| 11.0.9600.20091| 307,200| 16-Jul-21| 18:01 \nMshtml.dll.mui| 11.0.9600.20091| 293,888| 16-Jul-21| 18:02 \nMshtml.dll.mui| 11.0.9600.20091| 290,304| 16-Jul-21| 18:03 \nMshtml.dll.mui| 11.0.9600.20091| 289,280| 16-Jul-21| 18:03 \nMshtml.dll.mui| 11.0.9600.20091| 299,008| 16-Jul-21| 18:04 \nMshtml.dll.mui| 11.0.9600.20091| 303,104| 16-Jul-21| 18:04 \nMshtml.dll.mui| 11.0.9600.20091| 282,112| 16-Jul-21| 18:38 \nMshtml.dll.mui| 11.0.9600.20091| 296,960| 16-Jul-21| 18:05 \nMshtml.dll.mui| 11.0.9600.20091| 283,648| 16-Jul-21| 18:06 \nMshtml.dll.mui| 11.0.9600.20091| 291,840| 16-Jul-21| 18:07 \nMshtml.dll.mui| 11.0.9600.20091| 299,520| 16-Jul-21| 18:07 \nMshtml.dll.mui| 11.0.9600.20091| 275,968| 16-Jul-21| 18:08 \nMshtml.dll.mui| 11.0.9600.20091| 290,816| 16-Jul-21| 18:08 \nMshtml.dll.mui| 11.0.9600.20091| 293,376| 16-Jul-21| 18:09 \nMshtml.dll.mui| 11.0.9600.20091| 296,960| 16-Jul-21| 18:10 \nMshtml.dll.mui| 11.0.9600.20091| 258,048| 16-Jul-21| 18:10 \nMshtml.dll.mui| 11.0.9600.20091| 256,512| 16-Jul-21| 18:11 \nMshtml.dll.mui| 11.0.9600.20091| 289,280| 16-Jul-21| 18:12 \nMshtml.dll.mui| 11.0.9600.20091| 288,256| 16-Jul-21| 18:12 \nMshtml.dll.mui| 11.0.9600.20091| 285,184| 16-Jul-21| 18:13 \nMshtml.dll.mui| 11.0.9600.20091| 295,424| 16-Jul-21| 18:13 \nMshtml.dll.mui| 11.0.9600.20091| 297,472| 16-Jul-21| 18:14 \nMshtml.dll.mui| 11.0.9600.20091| 292,864| 16-Jul-21| 18:15 \nMshtml.dll.mui| 11.0.9600.20091| 295,424| 16-Jul-21| 18:15 \nMshtml.dll.mui| 11.0.9600.20091| 294,400| 16-Jul-21| 18:16 \nMshtml.dll.mui| 11.0.9600.20091| 294,400| 16-Jul-21| 18:17 \nMshtml.dll.mui| 11.0.9600.20091| 292,864| 16-Jul-21| 18:17 \nMshtml.dll.mui| 11.0.9600.20091| 290,816| 16-Jul-21| 18:18 \nMshtml.dll.mui| 11.0.9600.20091| 288,768| 16-Jul-21| 18:18 \nMshtml.dll.mui| 11.0.9600.20091| 286,208| 16-Jul-21| 18:19 \nMshtml.dll.mui| 11.0.9600.20091| 281,600| 16-Jul-21| 18:20 \nMshtml.dll.mui| 11.0.9600.20091| 286,720| 16-Jul-21| 18:20 \nMshtml.dll.mui| 11.0.9600.20091| 292,352| 16-Jul-21| 18:21 \nMshtml.dll.mui| 11.0.9600.20091| 242,176| 16-Jul-21| 18:21 \nMshtml.dll.mui| 11.0.9600.20091| 243,200| 16-Jul-21| 18:22 \nMshtml.dll.mui| 11.0.9600.20091| 243,200| 16-Jul-21| 18:23 \nUrlmon.dll.mui| 11.0.9600.20091| 46,080| 16-Jul-21| 18:01 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:02 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 18:03 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 18:03 \nUrlmon.dll.mui| 11.0.9600.20091| 51,712| 16-Jul-21| 18:04 \nUrlmon.dll.mui| 11.0.9600.20091| 54,272| 16-Jul-21| 18:05 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 18:38 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:05 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 18:06 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:06 \nUrlmon.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 18:07 \nUrlmon.dll.mui| 11.0.9600.20091| 45,056| 16-Jul-21| 18:08 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:08 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:09 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 18:10 \nUrlmon.dll.mui| 11.0.9600.20091| 39,936| 16-Jul-21| 18:10 \nUrlmon.dll.mui| 11.0.9600.20091| 39,424| 16-Jul-21| 18:11 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 18:12 \nUrlmon.dll.mui| 11.0.9600.20091| 47,616| 16-Jul-21| 18:12 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 18:13 \nUrlmon.dll.mui| 11.0.9600.20091| 51,200| 16-Jul-21| 18:13 \nUrlmon.dll.mui| 11.0.9600.20091| 50,688| 16-Jul-21| 18:14 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 18:15 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:15 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:16 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 18:16 \nUrlmon.dll.mui| 11.0.9600.20091| 50,176| 16-Jul-21| 18:17 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 18:18 \nUrlmon.dll.mui| 11.0.9600.20091| 49,664| 16-Jul-21| 18:18 \nUrlmon.dll.mui| 11.0.9600.20091| 48,640| 16-Jul-21| 18:19 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 18:19 \nUrlmon.dll.mui| 11.0.9600.20091| 49,152| 16-Jul-21| 18:20 \nUrlmon.dll.mui| 11.0.9600.20091| 48,128| 16-Jul-21| 18:21 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 18:22 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 18:22 \nUrlmon.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 18:22 \nJsproxy.dll| 11.0.9600.20091| 47,104| 13-Jul-21| 4:01 \nWininet.dll| 11.0.9600.20091| 4,387,840| 13-Jul-21| 3:26 \nInetcpl.cpl.mui| 11.0.9600.20091| 114,176| 16-Jul-21| 18:01 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,560| 16-Jul-21| 18:02 \nInetcpl.cpl.mui| 11.0.9600.20091| 124,928| 16-Jul-21| 18:03 \nInetcpl.cpl.mui| 11.0.9600.20091| 122,880| 16-Jul-21| 18:04 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,048| 16-Jul-21| 18:04 \nInetcpl.cpl.mui| 11.0.9600.20091| 138,240| 16-Jul-21| 18:05 \nInetcpl.cpl.mui| 11.0.9600.20091| 114,688| 16-Jul-21| 18:38 \nInetcpl.cpl.mui| 11.0.9600.20091| 131,584| 16-Jul-21| 18:05 \nInetcpl.cpl.mui| 11.0.9600.20091| 117,760| 16-Jul-21| 18:06 \nInetcpl.cpl.mui| 11.0.9600.20091| 122,368| 16-Jul-21| 18:06 \nInetcpl.cpl.mui| 11.0.9600.20091| 134,144| 16-Jul-21| 18:07 \nInetcpl.cpl.mui| 11.0.9600.20091| 107,008| 16-Jul-21| 18:08 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,392| 16-Jul-21| 18:08 \nInetcpl.cpl.mui| 11.0.9600.20091| 127,488| 16-Jul-21| 18:09 \nInetcpl.cpl.mui| 11.0.9600.20091| 128,512| 16-Jul-21| 18:09 \nInetcpl.cpl.mui| 11.0.9600.20091| 88,576| 16-Jul-21| 18:10 \nInetcpl.cpl.mui| 11.0.9600.20091| 82,944| 16-Jul-21| 18:11 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,440| 16-Jul-21| 18:11 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,392| 16-Jul-21| 18:12 \nInetcpl.cpl.mui| 11.0.9600.20091| 120,320| 16-Jul-21| 18:13 \nInetcpl.cpl.mui| 11.0.9600.20091| 130,560| 16-Jul-21| 18:13 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 18:14 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,952| 16-Jul-21| 18:15 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 18:15 \nInetcpl.cpl.mui| 11.0.9600.20091| 128,000| 16-Jul-21| 18:16 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 18:16 \nInetcpl.cpl.mui| 11.0.9600.20091| 129,024| 16-Jul-21| 18:17 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20091| 124,416| 16-Jul-21| 18:18 \nInetcpl.cpl.mui| 11.0.9600.20091| 121,856| 16-Jul-21| 18:19 \nInetcpl.cpl.mui| 11.0.9600.20091| 115,712| 16-Jul-21| 18:19 \nInetcpl.cpl.mui| 11.0.9600.20091| 123,904| 16-Jul-21| 18:20 \nInetcpl.cpl.mui| 11.0.9600.20091| 125,440| 16-Jul-21| 18:21 \nInetcpl.cpl.mui| 11.0.9600.20091| 72,704| 16-Jul-21| 18:21 \nInetcpl.cpl.mui| 11.0.9600.20091| 73,728| 16-Jul-21| 18:22 \nInetcpl.cpl.mui| 11.0.9600.20091| 73,728| 16-Jul-21| 18:23 \nMsfeedsbs.dll| 11.0.9600.20091| 52,736| 13-Jul-21| 3:45 \nMsfeedsbs.mof| Not versioned| 1,574| 13-Jul-21| 2:13 \nMsfeedssync.exe| 11.0.9600.20091| 11,776| 13-Jul-21| 4:07 \nIeproxy.dll| 11.0.9600.20091| 310,784| 13-Jul-21| 3:16 \nIeshims.dll| 11.0.9600.20091| 290,304| 13-Jul-21| 3:20 \nIertutil.dll| 11.0.9600.20091| 2,308,608| 13-Jul-21| 4:06 \nSqmapi.dll| 6.2.9200.16384| 228,240| 16-Jul-21| 18:01 \nIeframe.dll.mui| 11.0.9600.20091| 2,066,432| 16-Jul-21| 18:02 \nIeframe.dll.mui| 11.0.9600.20091| 2,121,216| 16-Jul-21| 18:02 \nIeframe.dll.mui| 11.0.9600.20091| 2,075,648| 16-Jul-21| 18:03 \nIeframe.dll.mui| 11.0.9600.20091| 2,063,872| 16-Jul-21| 18:03 \nIeframe.dll.mui| 11.0.9600.20091| 2,314,240| 16-Jul-21| 18:04 \nIeframe.dll.mui| 11.0.9600.20091| 2,390,528| 16-Jul-21| 18:05 \nIeframe.dll.mui| 11.0.9600.20091| 2,033,152| 16-Jul-21| 18:38 \nIeframe.dll.mui| 11.0.9600.20091| 2,307,584| 16-Jul-21| 18:05 \nIeframe.dll.mui| 11.0.9600.20091| 2,255,872| 16-Jul-21| 18:06 \nIeframe.dll.mui| 11.0.9600.20091| 2,061,312| 16-Jul-21| 18:07 \nIeframe.dll.mui| 11.0.9600.20091| 2,326,016| 16-Jul-21| 18:07 \nIeframe.dll.mui| 11.0.9600.20091| 2,019,840| 16-Jul-21| 18:08 \nIeframe.dll.mui| 11.0.9600.20091| 2,071,040| 16-Jul-21| 18:09 \nIeframe.dll.mui| 11.0.9600.20091| 2,082,816| 16-Jul-21| 18:09 \nIeframe.dll.mui| 11.0.9600.20091| 2,307,584| 16-Jul-21| 18:10 \nIeframe.dll.mui| 11.0.9600.20091| 2,170,368| 16-Jul-21| 18:11 \nIeframe.dll.mui| 11.0.9600.20091| 2,153,984| 16-Jul-21| 18:11 \nIeframe.dll.mui| 11.0.9600.20091| 2,291,712| 16-Jul-21| 18:12 \nIeframe.dll.mui| 11.0.9600.20091| 2,283,520| 16-Jul-21| 18:12 \nIeframe.dll.mui| 11.0.9600.20091| 2,052,096| 16-Jul-21| 18:13 \nIeframe.dll.mui| 11.0.9600.20091| 2,301,952| 16-Jul-21| 18:14 \nIeframe.dll.mui| 11.0.9600.20091| 2,093,056| 16-Jul-21| 18:14 \nIeframe.dll.mui| 11.0.9600.20091| 2,075,648| 16-Jul-21| 18:15 \nIeframe.dll.mui| 11.0.9600.20091| 2,299,392| 16-Jul-21| 18:16 \nIeframe.dll.mui| 11.0.9600.20091| 2,094,592| 16-Jul-21| 18:16 \nIeframe.dll.mui| 11.0.9600.20091| 2,316,800| 16-Jul-21| 18:17 \nIeframe.dll.mui| 11.0.9600.20091| 2,305,536| 16-Jul-21| 18:17 \nIeframe.dll.mui| 11.0.9600.20091| 2,278,912| 16-Jul-21| 18:18 \nIeframe.dll.mui| 11.0.9600.20091| 2,285,568| 16-Jul-21| 18:19 \nIeframe.dll.mui| 11.0.9600.20091| 2,060,288| 16-Jul-21| 18:19 \nIeframe.dll.mui| 11.0.9600.20091| 2,315,776| 16-Jul-21| 18:20 \nIeframe.dll.mui| 11.0.9600.20091| 2,279,424| 16-Jul-21| 18:20 \nIeframe.dll.mui| 11.0.9600.20091| 2,324,992| 16-Jul-21| 18:21 \nIeframe.dll.mui| 11.0.9600.20091| 2,098,176| 16-Jul-21| 18:22 \nIeframe.dll.mui| 11.0.9600.20091| 1,890,304| 16-Jul-21| 18:22 \nIeframe.dll.mui| 11.0.9600.20091| 1,890,304| 16-Jul-21| 18:23 \nJscript9.dll.mui| 11.0.9600.20091| 29,184| 16-Jul-21| 18:01 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:02 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 18:03 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 18:03 \nJscript9.dll.mui| 11.0.9600.20091| 35,328| 16-Jul-21| 18:04 \nJscript9.dll.mui| 11.0.9600.20091| 37,888| 16-Jul-21| 18:05 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:38 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 18:05 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:06 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 18:06 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 18:07 \nJscript9.dll.mui| 11.0.9600.20091| 27,648| 16-Jul-21| 18:08 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:08 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 18:09 \nJscript9.dll.mui| 11.0.9600.20091| 33,792| 16-Jul-21| 18:10 \nJscript9.dll.mui| 11.0.9600.20091| 23,040| 16-Jul-21| 18:10 \nJscript9.dll.mui| 11.0.9600.20091| 22,016| 16-Jul-21| 18:11 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:11 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:12 \nJscript9.dll.mui| 11.0.9600.20091| 31,232| 16-Jul-21| 18:13 \nJscript9.dll.mui| 11.0.9600.20091| 34,304| 16-Jul-21| 18:13 \nJscript9.dll.mui| 11.0.9600.20091| 35,840| 16-Jul-21| 18:14 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 18:15 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 18:15 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:16 \nJscript9.dll.mui| 11.0.9600.20091| 34,816| 16-Jul-21| 18:16 \nJscript9.dll.mui| 11.0.9600.20091| 33,280| 16-Jul-21| 18:17 \nJscript9.dll.mui| 11.0.9600.20091| 32,256| 16-Jul-21| 18:18 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:18 \nJscript9.dll.mui| 11.0.9600.20091| 32,768| 16-Jul-21| 18:19 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:20 \nJscript9.dll.mui| 11.0.9600.20091| 30,720| 16-Jul-21| 18:20 \nJscript9.dll.mui| 11.0.9600.20091| 29,696| 16-Jul-21| 18:21 \nJscript9.dll.mui| 11.0.9600.20091| 16,384| 16-Jul-21| 18:21 \nJscript9.dll.mui| 11.0.9600.20091| 16,896| 16-Jul-21| 18:22 \nJscript9.dll.mui| 11.0.9600.20091| 16,896| 16-Jul-21| 18:23 \nPackage.cab| Not versioned| 302,207| 16-Jul-21| 23:31 \n \n### Windows 7 and Windows Server 2008 R2\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:21| 1,342,976 \niexplore.exe| 11.0.9600.20091| 13-Jul-2021| 12:28| 810,400 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 31,744 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 39,424 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 32,768 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 37,376 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 38,400 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 30,720 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 25,600 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 24,576 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 20,992 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 21,504 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 21,504 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 46,592 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 56,320 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 57,856 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 49,664 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 47,616 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 49,152 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 55,296 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 45,056 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 39,424 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 35,840 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 53,760 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \ninetcpl.cpl| 11.0.9600.20091| 12-Jul-2021| 20:37| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 10,752 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 307,200 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 293,888 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 290,304 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 299,008 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 303,104 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 282,112 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 283,648 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 291,840 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 299,520 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 275,968 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 293,376 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 258,048 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 256,512 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 288,256 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 285,184 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 297,472 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 288,768 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 286,208 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 281,600 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 286,720 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 292,352 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 242,176 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 243,200 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 243,200 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 73,728 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 74,240 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 78,848 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 61,440 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 74,752 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 62,464 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 75,264 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 72,192 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 73,216 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 41,472 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 37,888 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 74,240 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 70,656 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 71,168 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 71,680 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 71,168 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 69,632 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 59,904 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 69,120 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 29,696 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \nF12Resources.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20091| 12-Jul-2021| 20:47| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20091| 12-Jul-2021| 20:49| 230,912 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 46,080 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 51,712 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 54,272 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 45,056 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 39,936 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 39,424 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 51,200 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 35,328 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 11,264 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 9,216 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 7,680 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 7,680 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 6,656 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 6,656 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 6,656 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 20:26| 4,387,840 \njsproxy.dll| 11.0.9600.20091| 12-Jul-2021| 21:01| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 73,728 \niedkcs32.dll| 18.0.9600.20091| 13-Jul-2021| 12:28| 341,920 \ninstall.ins| Not versioned| 12-Jul-2021| 19:02| 464 \nieapfltr.dat| 10.0.9301.0| 4-Mar-2021| 13:41| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:18| 710,656 \ntdc.ocx| 11.0.9600.20091| 12-Jul-2021| 20:47| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20091| 12-Jul-2021| 21:09| 489,472 \niedvtool.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.20091| 12-Jul-2021| 21:10| 38,912 \ndxtmsft.dll| 11.0.9600.20091| 12-Jul-2021| 20:51| 415,744 \ndxtrans.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 12-Jul-2021| 19:01| 11,892 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 3,584 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 3,584 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 4,096 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 3,584 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,584 \nF12.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20091| 12-Jul-2021| 20:50| 175,104 \nF12Resources.dll| 11.0.9600.20091| 12-Jul-2021| 21:12| 10,948,096 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 2,048 \nF12Tools.dll| 11.0.9600.20091| 12-Jul-2021| 20:49| 256,000 \nF12.dll| 11.0.9600.20091| 12-Jul-2021| 20:41| 1,207,808 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 696,320 \nmsfeeds.mof| Not versioned| 12-Jul-2021| 19:13| 1,518 \nmsfeedsbs.mof| Not versioned| 12-Jul-2021| 19:13| 1,574 \nmsfeedsbs.dll| 11.0.9600.20091| 12-Jul-2021| 20:45| 52,736 \nmsfeedssync.exe| 11.0.9600.20091| 12-Jul-2021| 21:07| 11,776 \nhtml.iec| 2019.0.0.20091| 12-Jul-2021| 21:06| 341,504 \nmshtmled.dll| 11.0.9600.20091| 12-Jul-2021| 20:44| 76,800 \nmshtmlmedia.dll| 11.0.9600.20091| 12-Jul-2021| 20:36| 1,155,584 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 20,293,632 \nmshtml.tlb| 11.0.9600.20091| 12-Jul-2021| 21:16| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 12-Jul-2021| 19:01| 3,228 \nieetwcollector.exe| 11.0.9600.20091| 12-Jul-2021| 20:58| 104,960 \nieetwproxystub.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 47,616 \nieetwcollectorres.dll| 11.0.9600.20091| 12-Jul-2021| 21:16| 4,096 \nielowutil.exe| 11.0.9600.20091| 12-Jul-2021| 21:00| 221,184 \nieproxy.dll| 11.0.9600.20091| 12-Jul-2021| 20:16| 310,784 \nIEShims.dll| 11.0.9600.20091| 12-Jul-2021| 20:20| 290,304 \nWindows Pop-up Blocked.wav| Not versioned| 4-Mar-2021| 13:55| 85,548 \nWindows Information Bar.wav| Not versioned| 4-Mar-2021| 13:55| 23,308 \nWindows Feed Discovered.wav| Not versioned| 4-Mar-2021| 13:55| 19,884 \nWindows Navigation Start.wav| Not versioned| 4-Mar-2021| 13:55| 11,340 \nbing.ico| Not versioned| 4-Mar-2021| 13:48| 5,430 \nieUnatt.exe| 11.0.9600.20091| 12-Jul-2021| 20:58| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 14-Jul-2021| 11:52| 2,956 \njsprofilerui.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.20091| 12-Jul-2021| 20:56| 1,399,296 \nMshtmlDac.dll| 11.0.9600.20091| 12-Jul-2021| 21:05| 64,000 \nnetworkinspection.dll| 11.0.9600.20091| 12-Jul-2021| 20:42| 1,075,200 \noccache.dll| 11.0.9600.20091| 12-Jul-2021| 20:42| 130,048 \ndesktop.ini| Not versioned| 4-Mar-2021| 13:44| 65 \nwebcheck.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 230,400 \ndesktop.ini| Not versioned| 4-Mar-2021| 13:44| 65 \nmsrating.dll| 11.0.9600.20091| 12-Jul-2021| 20:45| 168,960 \nicrav03.rat| Not versioned| 4-Mar-2021| 13:44| 8,798 \nticrf.rat| Not versioned| 4-Mar-2021| 13:44| 1,988 \niertutil.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 13-Jul-2021| 12:28| 228,256 \nie4uinit.exe| 11.0.9600.20091| 12-Jul-2021| 20:36| 692,224 \niernonce.dll| 11.0.9600.20091| 12-Jul-2021| 21:00| 30,720 \niesetup.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 62,464 \nieuinit.inf| Not versioned| 12-Jul-2021| 20:01| 16,303 \ninseng.dll| 11.0.9600.20091| 12-Jul-2021| 20:47| 91,136 \nTimeline.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 154,112 \nTimeline_is.dll| 11.0.9600.20091| 12-Jul-2021| 21:00| 124,928 \nTimeline.cpu.xml| Not versioned| 4-Mar-2021| 13:43| 3,197 \nVGX.dll| 11.0.9600.20091| 12-Jul-2021| 20:44| 818,176 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,066,432 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,121,216 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,063,872 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,314,240 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,390,528 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 2,033,152 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 2,255,872 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,061,312 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,326,016 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,019,840 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,071,040 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,082,816 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,170,368 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,153,984 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,291,712 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,283,520 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,052,096 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,301,952 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,093,056 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,299,392 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,094,592 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,316,800 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,305,536 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,278,912 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,285,568 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 2,060,288 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,315,776 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,279,424 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,324,992 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,098,176 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,072 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 13,882,368 \nieui.dll| 11.0.9600.20091| 12-Jul-2021| 20:59| 476,160 \nieframe.ptxml| Not versioned| 12-Jul-2021| 19:01| 24,486 \nieinstal.exe| 11.0.9600.20091| 12-Jul-2021| 20:43| 475,648 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:29| 463,373 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:30| 751,414 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:31| 526,343 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:31| 499,703 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:32| 552,389 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:32| 944,609 \nInetRes.adml| Not versioned| 13-Jul-2021| 13:07| 457,561 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:33| 543,995 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:34| 751,408 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:34| 526,606 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:35| 575,889 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:36| 463,373 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:36| 751,197 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:37| 570,785 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:37| 548,169 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:38| 639,283 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:39| 525,516 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:39| 751,384 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:40| 751,453 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:41| 488,537 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:41| 548,546 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:42| 559,393 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:42| 535,116 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:43| 541,504 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:44| 751,242 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:44| 804,523 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:45| 751,465 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:45| 751,357 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:46| 751,445 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:46| 503,958 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:47| 751,357 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:48| 521,632 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:48| 751,465 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:49| 420,094 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:50| 436,663 \nInetRes.adml| Not versioned| 13-Jul-2021| 12:50| 436,663 \ninetres.admx| Not versioned| 4-Mar-2021| 14:09| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20091| 12-Jul-2021| 20:53| 668,672 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 29,184 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 35,328 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 37,888 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 27,648 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 33,792 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 23,040 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 22,016 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 31,232 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 35,840 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 34,816 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 32,256 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 30,720 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 16,384 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 16,896 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 16,896 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 4,119,040 \njscript9diag.dll| 11.0.9600.20091| 12-Jul-2021| 20:58| 620,032 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:58| 653,824 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:07| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:48| 1,562,624 \niexplore.exe| 11.0.9600.20091| 14-Jul-2021| 11:23| 810,376 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 31,744 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 39,424 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 32,768 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 37,376 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 38,400 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 30,720 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 25,600 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 24,576 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 20,992 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 21,504 \nwebcheck.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 21,504 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 46,592 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 56,320 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 57,856 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 49,664 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 47,616 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 49,152 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 55,296 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 45,056 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 39,424 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 35,840 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 53,760 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 30,720 \ninetcpl.cpl| 11.0.9600.20091| 12-Jul-2021| 20:57| 2,132,992 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 10,752 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 307,200 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 293,888 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 290,304 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 299,008 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 303,104 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 282,112 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 283,648 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 291,840 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 299,520 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 275,968 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 293,376 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 258,048 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 256,512 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 288,256 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 285,184 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 297,472 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 288,768 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 286,208 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 281,600 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 286,720 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 292,352 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 242,176 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 243,200 \nmshtml.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 243,200 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 73,728 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 74,240 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 78,848 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 61,440 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 74,752 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 62,464 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 75,264 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 72,192 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 73,216 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 41,472 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 37,888 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 67,584 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 74,240 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 70,656 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 71,168 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 71,680 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 71,168 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 69,632 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 68,608 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 68,096 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 59,904 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 65,536 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 69,120 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 29,696 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 30,720 \nF12Resources.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20091| 12-Jul-2021| 21:13| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20091| 12-Jul-2021| 21:14| 276,480 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 46,080 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 51,712 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 54,272 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 45,056 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 39,936 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 39,424 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 51,200 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 35,328 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 11,264 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 9,216 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 7,680 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 7,680 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 10,752 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 9,728 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 10,240 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 6,656 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 6,656 \noccache.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 6,656 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 21:04| 4,858,880 \njsproxy.dll| 11.0.9600.20091| 12-Jul-2021| 21:32| 54,784 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 73,728 \niedkcs32.dll| 18.0.9600.20091| 14-Jul-2021| 11:23| 390,528 \ninstall.ins| Not versioned| 12-Jul-2021| 19:07| 464 \nieapfltr.dat| 10.0.9301.0| 12-Apr-2021| 22:55| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:29| 800,768 \ntdc.ocx| 11.0.9600.20091| 12-Jul-2021| 21:13| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20091| 12-Jul-2021| 21:41| 666,624 \niedvtool.dll| 11.0.9600.20091| 12-Jul-2021| 22:22| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.20091| 12-Jul-2021| 21:43| 50,176 \ndxtmsft.dll| 11.0.9600.20091| 12-Jul-2021| 21:19| 491,008 \ndxtrans.dll| 11.0.9600.20091| 12-Jul-2021| 21:09| 316,416 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 12-Jul-2021| 19:13| 11,892 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 3,584 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 3,584 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 4,096 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 3,584 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 3,584 \nF12.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20091| 12-Jul-2021| 21:17| 245,248 \nF12Resources.dll| 11.0.9600.20091| 12-Jul-2021| 21:45| 10,949,120 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 2,048 \nF12Tools.dll| 11.0.9600.20091| 12-Jul-2021| 21:16| 372,224 \nF12.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 1,422,848 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:58| 809,472 \nmsfeeds.mof| Not versioned| 12-Jul-2021| 19:21| 1,518 \nmsfeedsbs.mof| Not versioned| 12-Jul-2021| 19:21| 1,574 \nmsfeedsbs.dll| 11.0.9600.20091| 12-Jul-2021| 21:11| 60,416 \nmsfeedssync.exe| 11.0.9600.20091| 12-Jul-2021| 21:39| 13,312 \nhtml.iec| 2019.0.0.20091| 12-Jul-2021| 21:38| 417,280 \nmshtmled.dll| 11.0.9600.20091| 12-Jul-2021| 21:10| 92,672 \nmshtmlmedia.dll| 11.0.9600.20091| 12-Jul-2021| 20:57| 1,359,872 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 22:22| 25,757,696 \nmshtml.tlb| 11.0.9600.20091| 12-Jul-2021| 21:50| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 12-Jul-2021| 19:13| 3,228 \nieetwcollector.exe| 11.0.9600.20091| 12-Jul-2021| 21:28| 116,224 \nieetwproxystub.dll| 11.0.9600.20091| 12-Jul-2021| 21:38| 48,640 \nieetwcollectorres.dll| 11.0.9600.20091| 12-Jul-2021| 21:50| 4,096 \nielowutil.exe| 11.0.9600.20091| 12-Jul-2021| 21:31| 222,720 \nieproxy.dll| 11.0.9600.20091| 12-Jul-2021| 20:29| 870,400 \nIEShims.dll| 11.0.9600.20091| 12-Jul-2021| 20:34| 387,072 \nWindows Pop-up Blocked.wav| Not versioned| 12-Apr-2021| 22:57| 85,548 \nWindows Information Bar.wav| Not versioned| 12-Apr-2021| 22:57| 23,308 \nWindows Feed Discovered.wav| Not versioned| 12-Apr-2021| 22:57| 19,884 \nWindows Navigation Start.wav| Not versioned| 12-Apr-2021| 22:57| 11,340 \nbing.ico| Not versioned| 12-Apr-2021| 22:56| 5,430 \nieUnatt.exe| 11.0.9600.20091| 12-Jul-2021| 21:28| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 14-Jul-2021| 12:32| 2,956 \njsprofilerui.dll| 11.0.9600.20091| 12-Jul-2021| 21:12| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.20091| 12-Jul-2021| 21:26| 1,862,656 \nMshtmlDac.dll| 11.0.9600.20091| 12-Jul-2021| 21:37| 88,064 \nnetworkinspection.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 1,217,024 \noccache.dll| 11.0.9600.20091| 12-Jul-2021| 21:07| 152,064 \ndesktop.ini| Not versioned| 12-Apr-2021| 22:55| 65 \nwebcheck.dll| 11.0.9600.20091| 12-Jul-2021| 20:59| 262,144 \ndesktop.ini| Not versioned| 12-Apr-2021| 22:55| 65 \nmsrating.dll| 11.0.9600.20091| 12-Jul-2021| 21:11| 199,680 \nicrav03.rat| Not versioned| 12-Apr-2021| 22:55| 8,798 \nticrf.rat| Not versioned| 12-Apr-2021| 22:55| 1,988 \niertutil.dll| 11.0.9600.20091| 12-Jul-2021| 21:48| 2,916,864 \nsqmapi.dll| 6.2.9200.16384| 14-Jul-2021| 11:23| 286,088 \nie4uinit.exe| 11.0.9600.20091| 12-Jul-2021| 20:58| 728,064 \niernonce.dll| 11.0.9600.20091| 12-Jul-2021| 21:31| 34,304 \niesetup.dll| 11.0.9600.20091| 12-Jul-2021| 21:38| 66,560 \nieuinit.inf| Not versioned| 12-Jul-2021| 20:09| 16,303 \ninseng.dll| 11.0.9600.20091| 12-Jul-2021| 21:13| 107,520 \nTimeline.dll| 11.0.9600.20091| 12-Jul-2021| 21:12| 219,648 \nTimeline_is.dll| 11.0.9600.20091| 12-Jul-2021| 21:31| 172,032 \nTimeline.cpu.xml| Not versioned| 12-Apr-2021| 22:55| 3,197 \nVGX.dll| 11.0.9600.20091| 12-Jul-2021| 21:10| 1,018,880 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 2,066,432 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 2,121,216 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 2,063,872 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 2,314,240 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 2,390,528 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 2,033,152 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 2,255,872 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 2,061,312 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 2,326,016 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 2,019,840 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 2,071,040 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 2,082,816 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 2,170,368 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 2,153,984 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 2,291,712 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 2,283,520 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 2,052,096 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 2,301,952 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 2,093,056 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 2,299,392 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 2,094,592 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 2,316,800 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 2,305,536 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 2,278,912 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 2,285,568 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 2,060,288 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 2,315,776 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 2,279,424 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 2,324,992 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 2,098,176 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 3,072 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 21:26| 15,507,456 \nieui.dll| 11.0.9600.20091| 12-Jul-2021| 21:30| 615,936 \nieframe.ptxml| Not versioned| 12-Jul-2021| 19:13| 24,486 \nieinstal.exe| 11.0.9600.20091| 12-Jul-2021| 21:08| 492,032 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:24| 463,373 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:25| 751,268 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:25| 526,344 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:26| 499,704 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:26| 552,384 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:27| 944,610 \nInetRes.adml| Not versioned| 14-Jul-2021| 12:32| 457,561 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:28| 543,995 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:28| 751,402 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:29| 526,608 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:30| 575,890 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:30| 463,373 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:31| 751,351 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:31| 570,787 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:32| 548,169 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:33| 639,283 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:33| 525,516 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:34| 751,362 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:34| 751,276 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:35| 488,538 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:36| 548,545 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:36| 559,392 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:37| 535,119 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:37| 541,503 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:38| 751,379 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:39| 804,522 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:39| 751,404 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:40| 751,525 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:41| 751,407 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:41| 503,960 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:42| 751,417 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:42| 521,632 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:43| 751,304 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:43| 420,094 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:44| 436,663 \nInetRes.adml| Not versioned| 14-Jul-2021| 11:45| 436,663 \ninetres.admx| Not versioned| 12-Apr-2021| 22:59| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20091| 12-Jul-2021| 21:22| 970,752 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:24| 29,184 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:25| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:26| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 35,328 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:27| 37,888 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 12:32| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:28| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:29| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:30| 27,648 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:31| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 33,792 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:32| 23,040 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:33| 22,016 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:34| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:35| 31,232 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:36| 35,840 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:37| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:38| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:39| 34,816 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:40| 32,256 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:41| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:42| 30,720 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:43| 16,384 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:44| 16,896 \njscript9.dll.mui| 11.0.9600.20091| 14-Jul-2021| 11:45| 16,896 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 22:01| 5,507,584 \njscript9diag.dll| 11.0.9600.20091| 12-Jul-2021| 21:28| 814,592 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:29| 785,408 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:39| 580,608 \niexplore.exe| 11.0.9600.20091| 13-Jul-2021| 12:28| 810,400 \ntdc.ocx| 11.0.9600.20091| 12-Jul-2021| 20:47| 73,728 \ndxtmsft.dll| 11.0.9600.20091| 12-Jul-2021| 20:51| 415,744 \ndxtrans.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 280,064 \nmsfeeds.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 696,320 \nmsfeeds.mof| Not versioned| 12-Jul-2021| 19:13| 1,518 \nmshtmled.dll| 11.0.9600.20091| 12-Jul-2021| 20:44| 76,800 \nmshtmlmedia.dll| 11.0.9600.20091| 12-Jul-2021| 20:36| 1,155,584 \nmshtml.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 20,293,632 \nmshtml.tlb| 11.0.9600.20091| 12-Jul-2021| 21:16| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 12-Jul-2021| 19:04| 3,228 \nieetwproxystub.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 47,616 \nieUnatt.exe| 11.0.9600.20091| 12-Jul-2021| 20:58| 115,712 \noccache.dll| 11.0.9600.20091| 12-Jul-2021| 20:42| 130,048 \nwebcheck.dll| 11.0.9600.20091| 12-Jul-2021| 20:37| 230,400 \niernonce.dll| 11.0.9600.20091| 12-Jul-2021| 21:00| 30,720 \niesetup.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 62,464 \nieuinit.inf| Not versioned| 12-Jul-2021| 20:01| 16,303 \nieframe.dll| 11.0.9600.20091| 12-Jul-2021| 20:43| 13,882,368 \nieui.dll| 11.0.9600.20091| 12-Jul-2021| 20:59| 476,160 \nie9props.propdesc| Not versioned| 4-Mar-2021| 13:47| 2,843 \nwow64_ieframe.ptxml| Not versioned| 12-Jul-2021| 19:04| 24,486 \njscript9.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 4,119,040 \njscript9diag.dll| 11.0.9600.20091| 12-Jul-2021| 20:58| 620,032 \njscript.dll| 5.8.9600.20091| 12-Jul-2021| 20:58| 653,824 \nvbscript.dll| 5.8.9600.20091| 12-Jul-2021| 21:07| 498,176 \nurlmon.dll| 11.0.9600.20091| 12-Jul-2021| 20:21| 1,342,976 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 31,744 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 39,424 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 32,768 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 37,376 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 38,400 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 30,720 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 35,328 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 36,864 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 25,600 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 24,576 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 36,352 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 35,840 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 34,816 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 33,280 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 34,304 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 20,992 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 21,504 \nwebcheck.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 21,504 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 46,592 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 56,320 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 57,856 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 49,664 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 47,616 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 49,152 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 55,296 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 45,056 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 39,424 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 35,840 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 53,760 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 54,272 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 51,200 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 53,248 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 52,736 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 51,712 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 50,688 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 50,176 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \nwininet.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 30,720 \ninetcpl.cpl| 11.0.9600.20091| 12-Jul-2021| 20:37| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 10,752 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 307,200 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 293,888 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 290,304 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 299,008 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 303,104 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 282,112 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 283,648 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 291,840 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 299,520 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 275,968 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 293,376 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 296,960 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 258,048 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 256,512 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 289,280 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 288,256 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 285,184 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 297,472 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 295,424 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 294,400 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 292,864 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 290,816 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 288,768 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 286,208 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 281,600 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 286,720 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 292,352 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 242,176 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 243,200 \nmshtml.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.20091| 12-Jul-2021| 20:47| 60,416 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 46,080 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 51,712 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 54,272 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 45,056 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 39,936 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 39,424 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 47,616 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 51,200 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 50,688 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 50,176 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 49,664 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 48,640 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 49,152 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 48,128 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 35,328 \nurlmon.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 35,328 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 11,264 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 9,216 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 7,680 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 7,680 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,752 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 9,728 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 10,240 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 6,656 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 6,656 \noccache.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 6,656 \nwininet.dll| 11.0.9600.20091| 12-Jul-2021| 20:26| 4,387,840 \njsproxy.dll| 11.0.9600.20091| 12-Jul-2021| 21:01| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 73,728 \niedkcs32.dll| 18.0.9600.20091| 13-Jul-2021| 12:28| 341,920 \ninstall.ins| Not versioned| 12-Jul-2021| 19:02| 464 \nieapfltr.dat| 10.0.9301.0| 4-Mar-2021| 13:41| 616,104 \nieapfltr.dll| 11.0.9600.20091| 12-Jul-2021| 20:18| 710,656 \niedvtool.dll| 11.0.9600.20091| 12-Jul-2021| 21:35| 772,608 \nDiagnosticsTap.dll| 11.0.9600.20091| 12-Jul-2021| 20:50| 175,104 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 2,048 \nF12Tools.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 2,048 \nF12Tools.dll| 11.0.9600.20091| 12-Jul-2021| 20:49| 256,000 \nmsfeedsbs.mof| Not versioned| 12-Jul-2021| 19:13| 1,574 \nmsfeedsbs.dll| 11.0.9600.20091| 12-Jul-2021| 20:45| 52,736 \nmsfeedssync.exe| 11.0.9600.20091| 12-Jul-2021| 21:07| 11,776 \nhtml.iec| 2019.0.0.20091| 12-Jul-2021| 21:06| 341,504 \nielowutil.exe| 11.0.9600.20091| 12-Jul-2021| 21:00| 221,184 \nieproxy.dll| 11.0.9600.20091| 12-Jul-2021| 20:16| 310,784 \nIEShims.dll| 11.0.9600.20091| 12-Jul-2021| 20:20| 290,304 \njsprofilerui.dll| 11.0.9600.20091| 12-Jul-2021| 20:46| 579,584 \nMshtmlDac.dll| 11.0.9600.20091| 12-Jul-2021| 21:05| 64,000 \nnetworkinspection.dll| 11.0.9600.20091| 12-Jul-2021| 20:42| 1,075,200 \nmsrating.dll| 11.0.9600.20091| 12-Jul-2021| 20:45| 168,960 \nicrav03.rat| Not versioned| 4-Mar-2021| 13:44| 8,798 \nticrf.rat| Not versioned| 4-Mar-2021| 13:44| 1,988 \niertutil.dll| 11.0.9600.20091| 12-Jul-2021| 21:06| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 13-Jul-2021| 12:28| 228,256 \ninseng.dll| 11.0.9600.20091| 12-Jul-2021| 20:47| 91,136 \nVGX.dll| 11.0.9600.20091| 12-Jul-2021| 20:44| 818,176 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,066,432 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 2,121,216 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 2,063,872 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 2,314,240 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,390,528 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:07| 2,033,152 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 2,255,872 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,061,312 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 2,326,016 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,019,840 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 2,071,040 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 2,082,816 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,307,584 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 2,170,368 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 2,153,984 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,291,712 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 2,283,520 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,052,096 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 2,301,952 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 2,093,056 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,075,648 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 2,299,392 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,094,592 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 2,316,800 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 2,305,536 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,278,912 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 2,285,568 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,584 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 2,060,288 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,315,776 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 2,279,424 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,324,992 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 2,098,176 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,072 \nieframe.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:51| 1,890,304 \nieui.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 3,072 \nieinstal.exe| 11.0.9600.20091| 12-Jul-2021| 20:43| 475,648 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:29| 29,184 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:30| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:31| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 35,328 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:32| 37,888 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 13:06| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:33| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:34| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:35| 27,648 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:36| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:37| 33,792 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:38| 23,040 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:39| 22,016 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:40| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:41| 31,232 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 34,304 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 35,840 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:42| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:43| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:44| 34,816 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 33,280 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:45| 32,256 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:46| 32,768 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:47| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 30,720 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:48| 29,696 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:49| 16,384 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 16,896 \njscript9.dll.mui| 11.0.9600.20091| 13-Jul-2021| 12:50| 16,896 \n \n### Windows Server 2008\n\n### \n\n__\n\nInternet Explorer 9 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 1,142,784 \niexplore.exe| 9.0.8112.21581| 13-Jul-2021| 13:39| 751,512 \ninetcpl.cpl| 9.0.8112.21581| 13-Jul-2021| 13:29| 1,427,968 \nwininet.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 1,132,544 \njsproxy.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 75,776 \nWininetPlugin.dll| 1.0.0.1| 13-Jul-2021| 13:29| 66,048 \ntdc.ocx| 9.0.8112.21581| 13-Jul-2021| 13:28| 63,488 \niedvtool.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 678,912 \ndxtmsft.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 354,304 \ndxtrans.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 223,744 \nmsfeeds.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 607,744 \nmsfeeds.mof| Not versioned| 13-Jul-2021| 13:09| 1,518 \nmsfeedsbs.mof| Not versioned| 13-Jul-2021| 13:09| 1,574 \nmsfeedsbs.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 41,472 \nmsfeedssync.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 10,752 \nmshta.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 11,776 \nhtml.iec| 2019.0.0.21576| 13-Jul-2021| 13:31| 367,616 \nmshtmled.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 72,704 \nmshtml.dll| 9.0.8112.21581| 13-Jul-2021| 13:34| 12,845,056 \nmshtml.tlb| 9.0.8112.21581| 13-Jul-2021| 13:28| 2,382,848 \nielowutil.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 223,232 \nieproxy.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 195,072 \nIEShims.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 194,560 \nExtExport.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 22,528 \nWindows Pop-up Blocked.wav| Not versioned| 11-Mar-2021| 0:00| 85,548 \nWindows Information Bar.wav| Not versioned| 11-Mar-2021| 0:00| 23,308 \nWindows Feed Discovered.wav| Not versioned| 11-Mar-2021| 0:00| 19,884 \nWindows Navigation Start.wav| Not versioned| 11-Mar-2021| 0:00| 11,340 \nieUnatt.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 142,848 \njsdbgui.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 387,584 \niertutil.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 13-Jul-2021| 13:40| 142,744 \nVGX.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 769,024 \nurl.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 231,936 \nieframe.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 9,757,696 \nieui.dll| 9.0.8112.21581| 13-Jul-2021| 13:27| 176,640 \nieinstal.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 474,624 \nInetRes.adml| Not versioned| 13-Jul-2021| 13:44| 393,813 \ninetres.admx| Not versioned| 11-Mar-2021| 0:10| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 104,448 \njscript.dll| 5.8.7601.21576| 13-Jul-2021| 13:29| 723,456 \njscript9.dll| 9.0.8112.21581| 13-Jul-2021| 13:35| 1,819,648 \nvbscript.dll| 5.8.7601.21576| 13-Jul-2021| 13:29| 434,176 \n \n### \n\n__\n\nInternet Explorer 9 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21581| 13-Jul-2021| 14:24| 1,391,616 \niexplore.exe| 9.0.8112.21581| 13-Jul-2021| 14:38| 757,656 \ninetcpl.cpl| 9.0.8112.21581| 13-Jul-2021| 14:23| 1,494,528 \nwininet.dll| 9.0.8112.21581| 13-Jul-2021| 14:24| 1,395,200 \njsproxy.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 97,280 \nWininetPlugin.dll| 1.0.0.1| 13-Jul-2021| 14:23| 86,528 \ntdc.ocx| 9.0.8112.21581| 13-Jul-2021| 14:22| 76,800 \niedvtool.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 887,808 \ndxtmsft.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 452,608 \ndxtrans.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 281,600 \nmsfeeds.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 729,088 \nmsfeeds.mof| Not versioned| 13-Jul-2021| 14:01| 1,518 \nmsfeedsbs.mof| Not versioned| 13-Jul-2021| 14:01| 1,574 \nmsfeedsbs.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 55,296 \nmsfeedssync.exe| 9.0.8112.21581| 13-Jul-2021| 14:22| 11,264 \nmshta.exe| 9.0.8112.21581| 13-Jul-2021| 14:22| 12,800 \nhtml.iec| 2019.0.0.21576| 13-Jul-2021| 14:26| 448,512 \nmshtmled.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 96,256 \nmshtml.dll| 9.0.8112.21581| 13-Jul-2021| 14:33| 18,812,416 \nmshtml.tlb| 9.0.8112.21581| 13-Jul-2021| 14:22| 2,382,848 \nielowutil.exe| 9.0.8112.21581| 13-Jul-2021| 14:23| 223,744 \nieproxy.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 550,912 \nIEShims.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 305,664 \nWindows Pop-up Blocked.wav| Not versioned| 11-Mar-2021| 0:00| 85,548 \nWindows Information Bar.wav| Not versioned| 11-Mar-2021| 0:00| 23,308 \nWindows Feed Discovered.wav| Not versioned| 11-Mar-2021| 0:00| 19,884 \nWindows Navigation Start.wav| Not versioned| 11-Mar-2021| 0:00| 11,340 \nieUnatt.exe| 9.0.8112.21581| 13-Jul-2021| 14:23| 173,056 \njsdbgui.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 499,200 \niertutil.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 2,163,200 \nsqmapi.dll| 6.0.6000.16386| 13-Jul-2021| 14:39| 176,024 \nVGX.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 997,376 \nurl.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 237,056 \nieframe.dll| 9.0.8112.21581| 13-Jul-2021| 14:25| 10,944,000 \nieui.dll| 9.0.8112.21581| 13-Jul-2021| 14:21| 248,320 \nieinstal.exe| 9.0.8112.21581| 13-Jul-2021| 14:23| 490,496 \nInetRes.adml| Not versioned| 13-Jul-2021| 14:43| 393,813 \ninetres.admx| Not versioned| 11-Mar-2021| 0:10| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21581| 13-Jul-2021| 14:23| 141,312 \njscript.dll| 5.8.7601.21576| 13-Jul-2021| 14:23| 818,176 \njscript9.dll| 9.0.8112.21581| 13-Jul-2021| 14:29| 2,358,784 \nvbscript.dll| 5.8.7601.21576| 13-Jul-2021| 14:23| 583,680 \niexplore.exe| 9.0.8112.21581| 13-Jul-2021| 13:39| 751,512 \nieUnatt.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 142,848 \nurlmon.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 1,142,784 \ninetcpl.cpl| 9.0.8112.21581| 13-Jul-2021| 13:29| 1,427,968 \nwininet.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 1,132,544 \njsproxy.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 75,776 \nWininetPlugin.dll| 1.0.0.1| 13-Jul-2021| 13:29| 66,048 \ntdc.ocx| 9.0.8112.21581| 13-Jul-2021| 13:28| 63,488 \niedvtool.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 678,912 \ndxtmsft.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 354,304 \ndxtrans.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 223,744 \nmsfeeds.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 607,744 \nmsfeeds.mof| Not versioned| 13-Jul-2021| 13:09| 1,518 \nmsfeedsbs.mof| Not versioned| 13-Jul-2021| 13:09| 1,574 \nmsfeedsbs.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 41,472 \nmsfeedssync.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 10,752 \nmshta.exe| 9.0.8112.21581| 13-Jul-2021| 13:28| 11,776 \nhtml.iec| 2019.0.0.21576| 13-Jul-2021| 13:31| 367,616 \nmshtmled.dll| 9.0.8112.21581| 13-Jul-2021| 13:28| 72,704 \nmshtml.dll| 9.0.8112.21581| 13-Jul-2021| 13:34| 12,845,056 \nmshtml.tlb| 9.0.8112.21581| 13-Jul-2021| 13:28| 2,382,848 \nielowutil.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 223,232 \nieproxy.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 195,072 \nIEShims.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 194,560 \nExtExport.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 22,528 \njsdbgui.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 387,584 \niertutil.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 13-Jul-2021| 13:40| 142,744 \nVGX.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 769,024 \nurl.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 231,936 \nieframe.dll| 9.0.8112.21581| 13-Jul-2021| 13:30| 9,757,696 \nieui.dll| 9.0.8112.21581| 13-Jul-2021| 13:27| 176,640 \nieinstal.exe| 9.0.8112.21581| 13-Jul-2021| 13:29| 474,624 \njsdebuggeride.dll| 9.0.8112.21581| 13-Jul-2021| 13:29| 104,448 \njscript.dll| 5.8.7601.21576| 13-Jul-2021| 13:29| 723,456 \njscript9.dll| 9.0.8112.21581| 13-Jul-2021| 13:35| 1,819,648 \nvbscript.dll| 5.8.7601.21576| 13-Jul-2021| 13:29| 434,176 \n \n## **Information about protection and security**\n\n * Protect yourself online: [Windows Security support](<https://support.microsoft.com/hub/4099151/windows-security-help>)\n * Learn how we guard against cyber threats: [Microsoft Security](<https://www.microsoft.com/security>)\n\n## **References**\n\nLearn about the [terminology](<https://support.microsoft.com/help/824684>) that Microsoft uses to describe software updates.\n", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 8.8, "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-08-10T07:00:00", "type": "mskb", "title": "KB5005036: Cumulative security update for Internet Explorer: August 10, 2021", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-34480"], "modified": "2021-08-10T07:00:00", "id": "KB5005036", "href": "https://support.microsoft.com/en-us/help/5005036", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:51:37", "description": "None\n**11/19/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1607 update history home page. \n\n## Highlights\n\n * Updates an issue in Task Scheduler that causes monthly tasks and tasks scheduled for 0 UTC to occur at the wrong time.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Addresses an issue with evaluating the compatibility status of the Windows ecosystem to help ensure application and device compatibility for all updates to Windows.\n * Provides a DWORD registry key to address a performance issue that might occur when you use the Background Intelligent Transfer service (BITS) to download many files. Set the DWORD registry key as \u201cHKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\BITS\\EnableLargeBuffer= 0x1\u201d. After you set the registry key, restart the machine, or restart BITS to enable the use of large buffer size and file size incrementing.\n * Addresses an issue in Task Scheduler that causes monthly tasks and tasks scheduled for 0 UTC to occur at the wrong time.\n * Security updates to Windows App Platform and Frameworks, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing updates released April 22, 2021 or later, an issue occurs that affects versions of Windows Server that are in use as a Key Management Services (KMS) host. Client devices running Windows 10 Enterprise LTSC 2019 and Windows 10 Enterprise LTSC 2016 might fail to activate. This issue only occurs when using a new Customer Support Volume License Key (CSVLK). **Note** This does not affect activation of any other version or edition of Windows. Client devices that are attempting to activate and are affected by this issue might receive the error, \"Error: 0xC004F074. The Software Licensing Service reported that the computer could not be activated. No Key Management Service (KMS) could be contacted. Please see the Application Event Log for additional information.\"Event Log entries related to activation are another way to tell that you might be affected by this issue. Open **Event Viewer **on the client device that failed activation and go to **Windows Logs **> **Application**. If you see only event ID 12288 without a corresponding event ID 12289, this means one of the following:\n\n * The KMS client could not reach the KMS host.\n * The KMS host did not respond.\n * The client did not receive the response.\nFor more information on these event IDs, see [Useful KMS client events - Event ID 12288 and Event ID 12289](<https://docs.microsoft.com/windows-server/get-started/activation-troubleshoot-kms-general#event-id-12288-and-event-id-12289>).| This issue is resolved in KB5010359. \n \n## How to get this update\n\n**Before installing this update**Microsoft strongly recommends you install the latest servicing stack update (SSU) for your operating system before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the latest SSU (KB5001402) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003197>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003197](<https://download.microsoft.com/download/5/3/1/531d002c-b82f-4351-bf53-cb00cba18051/5003197.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003197 (OS Build 14393.4402)\n", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003197", "href": "https://support.microsoft.com/en-us/help/5003197", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:24", "description": "None\n**4/13/21 \nREMINDER **Microsoft removed the Microsoft Edge Legacy desktop application that is out of support in March 2021. In this April 13, 2021 release, we installed the new Microsoft Edge. For more information, see [New Microsoft Edge to replace Microsoft Edge Legacy with April\u2019s Windows 10 Update Tuesday release](<https://aka.ms/EdgeLegacyEOS>).\n\n**11/17/20**For information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 2004 update history [home page](<https://support.microsoft.com/en-us/help/4555932>).**Note **Follow [@WindowsUpdate](<https://twitter.com/windowsupdate>) to find out when new content is published to the release information dashboard.\n\n## Highlights\n\n * Updates to improve security when Windows performs basic operations.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\n**Note **To view the list of addressed issues, click or tap the OS name to expand the collapsible section.\n\n### \n\n__\n\nWindows 10 servicing stack update - 19041.985, 19042.985, and 19043.985 \n\n * This update makes quality improvements to the servicing stack, which is the component that installs Windows updates. Servicing stack updates (SSU) ensure that you have a robust and reliable servicing stack so that your devices can receive and install Microsoft updates.\n\n### \n\n__\n\nWindows 10, version 21H1\n\nThis security update includes quality improvements. Key changes include:\n\n * This build includes all the improvements from Windows 10, version 2004.\n * No additional issues were documented for this release.\n\n### \n\n__\n\nWindows 10, version 20H2\n\nThis security update includes quality improvements. Key changes include:\n\n * This build includes all the improvements from Windows 10, version 2004.\n * No additional issues were documented for this release.\n\n### \n\n__\n\nWindows 10, version 2004\n\n**Note: **This release also contains updates for Microsoft HoloLens (OS Build 19041.1146) released May 11, 2021. Microsoft will release an update directly to the Windows Update Client to improve Windows Update reliability on Microsoft HoloLens that have not updated to this most recent OS Build.\n\nThis security update includes quality improvements. Key changes include:\n\n * Security updates to Windows App Platform and Frameworks, the Windows Kernel, Windows Media, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n### \n\n__\n\nClick or tap to view the known issues\n\n**Symptom**| **Workaround** \n---|--- \nWhen using the Microsoft Japanese Input Method Editor (IME) to enter Kanji characters in an app that automatically allows the input of Furigana characters, you might not get the correct Furigana characters. You might need to enter the Furigana characters manually.**Note **The affected apps are using the **ImmGetCompositionString()** function.| This issue is resolved in KB5005101. \nDevices with Windows installations created from custom offline media or custom ISO image might have [Microsoft Edge Legacy](<https://support.microsoft.com/en-us/microsoft-edge/what-is-microsoft-edge-legacy-3e779e55-4c55-08e6-ecc8-2333768c0fb0>) removed by this update, but not automatically replaced by the new Microsoft Edge. This issue is only encountered when custom offline media or ISO images are created by slipstreaming this update into the image without having first installed the standalone servicing stack update (SSU) released March 29, 2021 or later.**Note **Devices that connect directly to Windows Update to receive updates are not affected. This includes devices using Windows Update for Business. Any device connecting to Windows Update should always receive the latest versions of the SSU and latest cumulative update (LCU) without any extra steps.| To avoid this issue, be sure to first slipstream the SSU released March 29, 2021 or later into the custom offline media or ISO image before slipstreaming the LCU. To do this with the combined SSU and LCU packages now used for Windows 10, version 20H2 and Windows 10, version 2004, you will need to extract the SSU from the combined package. Use the following steps to extract the SSU:\n\n 1. Extract the cab from the msu via this command line (using the package for KB5000842 as an example): **expand Windows10.0-KB5000842-x64.msu /f:Windows10.0-KB5000842-x64.cab <destination path>**\n 2. Extract the SSU from the previously extracted cab via this command line: **expand Windows10.0-KB5000842-x64.cab /f:* <destination path>**\n 3. You will then have the SSU cab, in this example named **SSU-19041.903-x64.cab**. Slipstream this file into your offline image first, then the LCU.\nIf you have already encountered this issue by installing the OS using affected custom media, you can mitigate it by directly installing the [new Microsoft Edge](<https://www.microsoft.com/edge>). If you need to broadly deploy the new Microsoft Edge for business, see [Download and deploy Microsoft Edge for business](<https://www.microsoft.com/edge/business/download>). \nA small subset of users have reported lower than expected performance in games after installing this update. Most users affected by this issue are running games full screen or borderless windowed modes and using two or more monitors.| This issue is resolved in KB5003690. \nAfter installing this update, 5.1 Dolby Digital audio may play containing a high-pitched noise or squeak in certain apps when using certain audio devices and Windows settings.**Note **This issue does not occur when stereo is used.| This issue is resolved in KB5003690. \nAfter installing this update or later, the news and interests button in the Windows taskbar might have blurry text on certain display configurations.| This issue is resolved in KB5003690. \n \n## How to get this update\n\n**Before installing this update**Prerequisite:Microsoft now combines the latest servicing stack update (SSU) for your operating system with the latest cumulative update (LCU). If you encounter the error, 0x800f0823 \u2013 CBS_E_NEW_SERVICING_STACK_REQUIRED, close the error message and install the last standalone SSU (KB4598481) **before** installing this LCU. You will not need to install this SSU (KB4598481) again for future updates. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003173>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10, version 1903 and later**Classification**: Security Updates \n \n**If you want to remove the LCU**To remove the LCU after installing the combined SSU and LCU package, use the [DISM/Remove-Package](<https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/dism-operating-system-package-servicing-command-line-options>) command line option with the LCU package name as the argument. You can find the package name by using this command: **DISM /online /get-packages**.Running [Windows Update Standalone Installer](<https://support.microsoft.com/en-us/topic/description-of-the-windows-update-standalone-installer-in-windows-799ba3df-ec7e-b05e-ee13-1cdae8f23b19>) (**wusa.exe**) with the **/uninstall **switch on the combined package will not work because the combined package contains the SSU. You cannot remove the SSU from the system after installation.\n\n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003173](<https://download.microsoft.com/download/a/f/1/af14f4f4-efcd-4cb6-b287-936ba954b36f/5003173.csv>). For a list of the files that are provided in the servicing stack update, download the [file information for the SSU - version 19041.985, 19042.985, and 19043.985](<https://download.microsoft.com/download/3/8/a/38a32241-0b74-4d9c-b4ea-292b4b4adb82/SSU_version_19041.985.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003173 (OS Builds 19041.985, 19042.985, and 19043.985)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003173", "href": "https://support.microsoft.com/en-us/help/5003173", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:38", "description": "None\n**Important: **Windows 8.1 and Windows Server 2012 R2 have reached the end of mainstream support and are now in extended support. Starting in July 2020, there will no longer be optional, non-security releases (known as \"C\" releases) for this operating system. Operating systems in extended support have only cumulative monthly security updates (known as the \"B\" or Update Tuesday release). \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows 8.1 and Windows Server 2012 R2 update history [home page](<https://support.microsoft.com/help/4009470>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5001382](<https://support.microsoft.com/help/5001382>) (released April 13, 2021) and addresses the following issues: \n\n * Security updates to Windows App Platform and Frameworks, Windows Silicon Platform, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom**| **Workaround** \n---|--- \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following:\n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update**We strongly recommend that you install the latest servicing stack update (SSU) for your operating system before you install the latest Rollup. SSUs improve the reliability of the update process to mitigate potential issues while installing the Rollup and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).If you use Windows Update, the latest SSU ([KB5001403](<https://support.microsoft.com/help/5001403>)) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003209>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 8.1, Windows Server 2012 R2, Windows Embedded 8.1 Industry Enterprise, Windows Embedded 8.1 Industry Pro**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003209](<https://download.microsoft.com/download/c/7/e/c7ecbafd-f877-473c-a9e0-1b578f12182a/5003209.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003209 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003209", "href": "https://support.microsoft.com/en-us/help/5003209", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:15", "description": "None\nThis article applies to the following: \n\n * Internet Explorer 11 on Windows Server 2012 R2\n * Internet Explorer 11 on Windows 8.1\n * Internet Explorer 11 on Windows Server 2012\n * Internet Explorer 11 on Windows Server 2008 R2 SP1\n * Internet Explorer 11 on Windows 7 SP1\n * Internet Explorer 9 on Windows Server 2008 SP2\n\n**Important: **\n\n * As of February 11, 2020, Internet Explorer 10 is no longer in support. To get Internet Explorer 11 for Windows Server 2012 or Windows 8 Embedded Standard, see [KB4492872](<https://support.microsoft.com/help/4492872>). Install one of the following applicable updates to stay updated with the latest security fixes:\n * Cumulative Update for Internet Explorer 11 for Windows Server 2012.\n * Cumulative Update for Internet Explorer 11 for Windows 8 Embedded Standard.\n * The May 11, 2021 Monthly Rollup.\n * Some customers using Windows Server 2008 R2 SP1 who activated their ESU multiple activation key (MAK) add-on before installing the January 14, 2020 updates might need to re-activate their key. Re-activation on affected devices should only be required once. For information on activation, see this [blog](<https://aka.ms/Windows7ESU>) post.\n * WSUS scan cab files will continue to be available for Windows 7 SP1 and Windows Server 2008 R2 SP1. If you have a subset of devices running these operating systems without ESU, they might show as non-compliant in your patch management and compliance toolsets.\n\n## **Summary**\n\nThis security update resolves vulnerabilities in Internet Explorer. To learn more about these vulnerabilities, see [Microsoft Common Vulnerabilities and Exposures](<https://portal.msrc.microsoft.com/en-us/security-guidance>).Additionally, see the following articles for more information about cumulative updates:\n\n * [Windows Server 2008 SP2 update history](<https://support.microsoft.com/help/4343218>)\n * [Windows 7 SP1 and Windows Server 2008 R2 SP1 update history](<https://support.microsoft.com/help/4009469>)\n * [Windows Server 2012 update history](<https://support.microsoft.com/help/4009471>)\n * [Windows 8.1 and Windows Server 2012 R2 update history](<https://support.microsoft.com/help/4009470>)\n\n**Important: **\n\n * The fixes that are included in this update are also included in the May 11, 2021 Security Monthly Quality Rollup. Installing either this update or the Security Monthly Quality Rollup installs the same fixes.\n * This update is not applicable for installation on a device on which the Security Monthly Quality Rollup from May 11, 2021 (or a later month) is already installed. This is because that update contains all the same fixes that are included in this update.\n * If you use update management processes other than Windows Update and you automatically approve all security update classifications for deployment, this update, the May 11, 2021 Security Only Quality Update, and the May 11, 2021 Security Monthly Quality Rollup are deployed. We recommend that you review your update deployment rules to make sure that the desired updates are deployed.\n * If you install a language pack after you install this update, you must reinstall this update. Therefore, we recommend that you install any language packs that you need before you install this update. For more information, see [Add language packs to Windows](<https://technet.microsoft.com/library/hh825699>).\n\n## **Known issues in this security update**\n\nWe are currently not aware of any issues in this update. \n\n## **How to get and install this update**\n\n**Before installing this update**To install Windows 7 SP1, Windows Server 2008 R2 SP1, or Windows Server 2008 SP2 updates released on or after July 2019, you must have the following required updates installed. If you use Windows Update, these required updates will be offered automatically as needed.\n\n * Install the SHA-2 code signing support updates: \n \nFor Windows 7 SP1, Windows Server 2008 R2, and Windows Server 2008 SP2, you must have the SHA-2 update ([KB4474419](<https://support.microsoft.com/help/4474419>)) that is dated September 23, 2019 or a later SHA-2 update installed and then restart your device before you apply this update. For more information about SHA-2 updates, see [2019 SHA-2 Code Signing Support requirement for Windows and WSUS](<https://support.microsoft.com/help/4472027>). \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the servicing stack update (SSU) ([KB4490628](<https://support.microsoft.com/help/4490628>)) that is dated March 12, 2019. After update [KB4490628](<https://support.microsoft.com/help/4490628>) is installed, we recommend that you install the December 8, 2021 SSU ([KB4592510](<https://support.microsoft.com/help/4592510>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>). \n \nFor Windows Server 2008 SP2, you must have installed the servicing stack update (SSU) ([KB4493730](<https://support.microsoft.com/help/4493730>)) that is dated April 9, 2019. After update [KB4493730](<https://support.microsoft.com/help/4493730>) is installed, we recommend that you install the October 13, 2021 SSU ([KB4580971](<https://support.microsoft.com/help/4580971>)) or a later SSU update. For more information about the latest SSU updates, see [ADV990001 | Latest Servicing Stack Updates](<https://portal.msrc.microsoft.com/en-us/security-guidance/advisory/ADV990001>).\n * Install the Extended Security Update (ESU): \n \nFor Windows 7 SP1 and Windows Server 2008 R2 SP1, you must have installed the \"Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4538483](<https://support.microsoft.com/en/help/4538483>)) or the \"Update for the Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4575903](<https://support.microsoft.com/help/4575903>)). The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). \n \nFor Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, you must have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems and follow the procedures in [KB4522133](<https://support.microsoft.com/help/4522133>) to continue receiving security updates after extended support ends. Extended support ends as follows:\n * For Windows 7 SP1, Windows Server 2008 R2 SP1, and Windows Server 2008 SP2, extended support ends on January 14, 2020.\n * For Windows Embedded Standard 7, extended support ends on October 13, 2020.\nFor more information about ESU and which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>). \n \nFor Windows Embedded Standard 7, Windows Management Instrumentation (WMI) must be enabled to get updates from Windows Update or Windows Server Update Services. \n \nFor Windows Thin PC, you must have the August 11, 2020 SSU ([KB4570673](<https://support.microsoft.com/help/4570673>)) or a later SSU installed to make sure you continue to get the extended security updates starting with the October 13, 2020 updates.**Important **You must restart your device after you install these required updates.**Install this update**To install this update, use one of the following release channels.**Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| No| See the other following options. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003165>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically synchronize with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2008 Service Pack 2, Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1, Windows Server 2012, Windows Embedded 8 Standard, Windows 8.1, Windows Server 2012 R2**Classification**: Security Updates \n \n## **File information**\n\nThe English (United States) version of this software update installs files that have the attributes that are listed in the following tables.**Note** The MANIFEST files (.manifest) and MUM files (.mum) that are installed are not listed.\n\n### **Windows 8.1, Windows RT 8.1 and Windows Server 2012 R2**\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.19301| 25-Feb-2019| 22:20| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:13| 1,343,488 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \ninetcpl.cpl| 11.0.9600.19963| 12-Feb-2021| 18:12| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:21| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:26| 230,912 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:15| 4,388,352 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 18:11| 333,312 \ninstall.ins| Not versioned| 14-Apr-2021| 18:43| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:06| 710,656 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 20:55| 489,472 \niedvtool.dll| 11.0.9600.19963| 12-Feb-2021| 18:59| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:52| 38,912 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:35| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:36| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:33| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 19:47| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:29| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:31| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:30| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 4,096 \nF12.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:37| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:38| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:32| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 1:34| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Resources.dll| 11.0.9600.18939| 10-Feb-2018| 9:17| 10,948,096 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nF12.dll| 11.0.9600.19963| 12-Feb-2021| 18:17| 1,207,808 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 20,295,680 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:40| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nieetwcollector.exe| 11.0.9600.18666| 16-Apr-2017| 0:47| 104,960 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 2:19| 4,096 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.19846| 23-Sep-2020| 20:01| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 19:58| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 19:58| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 19:58| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 19:58| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:36| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 14-Apr-2021| 22:59| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 18:35| 1,399,296 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:18| 65 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \ndesktop.ini| Not versioned| 18-Jun-2013| 5:19| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 2,308,608 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:11| 692,224 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:23| 154,112 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 124,928 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:11| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:21| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 13,881,856 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:40| 24,486 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:38| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:30| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:31| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:29| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 20:28| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:25| 1,678,023 \ninetcomm.dll| 6.3.9600.20016| 14-Apr-2021| 20:31| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 4,112,384 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:49| 653,824 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:58| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.19301| 25-Feb-2019| 22:25| 2,882,048 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 21:22| 108,544 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 19:18| 65,024 \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:35| 1,569,280 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 23:30| 817,296 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 21:51| 43,008 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:35| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:01| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:20| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:00| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:59| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:58| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 16:02| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 15:57| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:39| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:38| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:28| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:37| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:27| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:34| 31,232 \nhtml.iec| 2019.0.0.19301| 25-Feb-2019| 23:31| 417,280 \ninetcpl.cpl| 11.0.9600.19963| 12-Feb-2021| 18:26| 2,132,992 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:33| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:18| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:15| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:26| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 10-Jul-2019| 0:25| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:12| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:25| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:13| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:06| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:04| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:16| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 22:17| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:28| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:47| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 276,480 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:08| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:19| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:28| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:12| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:14| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:15| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:20| 35,328 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:55| 4,859,904 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 21:57| 54,784 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 2:49| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:38| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:39| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:40| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:36| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 2:53| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:21| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:18| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:19| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:17| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:16| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 15-Apr-2021| 0:24| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:18| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:14| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 16:13| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:16| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 17:17| 75,776 \nieui.dll| 11.0.9600.19650| 11-Feb-2020| 5:38| 615,936 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 18:28| 381,952 \ninstall.ins| Not versioned| 14-Apr-2021| 18:47| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:19| 800,768 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:41| 145,920 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 21:40| 33,280 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:47| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.18895| 1-Jan-2018| 21:32| 666,624 \niedvtool.dll| 11.0.9600.19963| 12-Feb-2021| 21:02| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:21| 50,176 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:53| 491,008 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:40| 316,416 \nEscMigPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 124,416 \nescUnattend.exe| 11.0.9600.19326| 25-Mar-2019| 22:54| 87,040 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:51| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:00| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 20:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:59| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:02| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:01| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:04| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:24| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 5:03| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:58| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:51| 245,248 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 19:00| 10,949,120 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:50| 372,224 \nF12.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 1,422,848 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:48| 809,472 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:54| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 23:54| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 5:16| 60,416 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 22:08| 12,800 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 13,824 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:42| 92,672 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 23:21| 25,760,768 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 3:30| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:41| 3,228 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 21:54| 132,096 \nieetwcollector.exe| 11.0.9600.18895| 1-Jan-2018| 21:17| 116,224 \nieetwproxystub.dll| 11.0.9600.18895| 1-Jan-2018| 21:28| 48,640 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 3:30| 4,096 \nielowutil.exe| 11.0.9600.17416| 30-Oct-2014| 21:55| 222,720 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:48| 870,400 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:29| 387,072 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 22:10| 167,424 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 22:12| 143,872 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 18:08| 51,712 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 21:51| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 14-Apr-2021| 23:42| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 591,872 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:44| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 19:01| 1,862,656 \nMshtmlDac.dll| 11.0.9600.19846| 23-Sep-2020| 21:25| 88,064 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 18:38| 1,217,024 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 21:19| 152,064 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:43| 65 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:30| 262,144 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:44| 65 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 579,192 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 403,592 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:01| 107,152 \nmsrating.dll| 11.0.9600.18895| 1-Jan-2018| 20:56| 199,680 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:35| 2,916,352 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 18:28| 728,064 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 21:56| 34,304 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 66,560 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:58| 16,303 \ninseng.dll| 11.0.9600.19101| 18-Jul-2018| 21:03| 107,520 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 21:29| 111,616 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:45| 219,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 19:07| 172,032 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 11:58| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:43| 1,018,880 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 22:06| 237,568 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 23:22| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:15| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:16| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:17| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:18| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:12| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:10| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,278,912 \nieframe.dll.mui| 11.0.9600.20016| 15-Apr-2021| 0:28| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:11| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:13| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 24-Sep-2020| 0:14| 1,890,304 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 21:06| 15,506,944 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:41| 24,486 \nieinstal.exe| 11.0.9600.18639| 25-Mar-2017| 10:20| 492,032 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:14| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:01| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:57| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:56| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:03| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:00| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 22:02| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 21:59| 436,651 \ninetres.admx| Not versioned| 8-Feb-2021| 20:02| 1,678,023 \ninetcomm.dll| 6.3.9600.20016| 14-Apr-2021| 20:55| 1,033,216 \nINETRES.dll| 6.3.9600.16384| 22-Aug-2013| 4:43| 84,480 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 21:40| 5,499,904 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 19:03| 814,592 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 21:19| 785,408 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 21:29| 581,120 \niexplore.exe| 11.0.9600.19036| 24-May-2018| 22:24| 817,296 \nhtml.iec| 2019.0.0.18895| 1-Jan-2018| 20:51| 341,504 \nieui.dll| 11.0.9600.18895| 1-Jan-2018| 20:44| 476,160 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 128,512 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:24| 73,728 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:29| 415,744 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 18:20| 280,064 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 696,320 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:53| 1,518 \nmshta.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 12,800 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 76,800 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 20,295,680 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 2:20| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:43| 3,228 \nieetwproxystub.dll| 11.0.9600.17416| 30-Oct-2014| 20:23| 47,616 \nieUnatt.exe| 11.0.9600.17416| 30-Oct-2014| 20:12| 115,712 \noccache.dll| 11.0.9600.17416| 30-Oct-2014| 19:48| 130,048 \nwebcheck.dll| 11.0.9600.19963| 12-Feb-2021| 18:13| 230,400 \niernonce.dll| 11.0.9600.17416| 30-Oct-2014| 20:15| 30,720 \niesetup.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 62,464 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:55| 16,303 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 90,624 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 13,881,856 \nie9props.propdesc| Not versioned| 23-Sep-2013| 19:34| 2,843 \nwow64_ieframe.ptxml| Not versioned| 5-Feb-2014| 21:43| 24,486 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 4,112,384 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:37| 620,032 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:49| 653,824 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:58| 498,176 \nactxprxy.dll| 6.3.9600.19301| 25-Feb-2019| 22:20| 1,049,600 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:55| 99,328 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:49| 58,368 \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:13| 1,343,488 \nWininetPlugin.dll| 6.3.9600.17416| 30-Oct-2014| 20:12| 35,328 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 11:17| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:32| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:31| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:29| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:30| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:27| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 12:28| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:30| 31,232 \ninetcpl.cpl| 11.0.9600.19963| 12-Feb-2021| 18:12| 2,058,752 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 307,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 293,888 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 290,304 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,008 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 303,104 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 20:58| 282,112 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 283,648 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 291,840 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 299,520 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:49| 293,376 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 296,960 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 258,048 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 256,512 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 288,256 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 285,184 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:52| 297,472 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:21| 290,816 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 281,600 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 286,720 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:42| 292,352 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:43| 242,176 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:53| 243,200 \nmshtml.dll.mui| 11.0.9600.19404| 9-Jul-2019| 21:50| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:25| 60,416 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:26| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 11:10| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:24| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:12| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:13| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:07| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:03| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:05| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:04| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:23| 35,328 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:15| 4,388,352 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 20:16| 47,104 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18666| 16-Apr-2017| 1:51| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:12| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:13| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:46| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:11| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 1:47| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:26| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:25| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 15-Apr-2021| 2:20| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 13:56| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:03| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:04| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:09| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 14:10| 75,776 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 18:11| 333,312 \ninstall.ins| Not versioned| 14-Apr-2021| 18:43| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:20| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:06| 710,656 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 20:03| 27,136 \niedvtool.dll| 11.0.9600.19963| 12-Feb-2021| 18:59| 772,608 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:28| 175,104 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:27| 256,000 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:49| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:57| 52,736 \nmsfeedssync.exe| 11.0.9600.17416| 30-Oct-2014| 20:25| 11,264 \nIEAdvpack.dll| 11.0.9600.17416| 30-Oct-2014| 20:14| 112,128 \nielowutil.exe| 11.0.9600.19404| 9-Jul-2019| 20:06| 221,184 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:45| 310,784 \nIEShims.dll| 11.0.9600.19846| 23-Sep-2020| 20:01| 290,304 \niexpress.exe| 11.0.9600.17416| 30-Oct-2014| 20:27| 152,064 \nwextract.exe| 11.0.9600.17416| 30-Oct-2014| 20:28| 137,728 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 40,448 \nExtExport.exe| 11.0.9600.17416| 30-Oct-2014| 20:20| 25,600 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 459,776 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 579,584 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:43| 64,000 \nnetworkinspection.dll| 11.0.9600.19846| 23-Sep-2020| 20:28| 1,075,200 \npdm.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 442,992 \nmsdbg2.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 315,008 \npdmproxy100.dll| 12.0.41202.0| 30-Sep-2014| 16:00| 99,984 \nmsrating.dll| 11.0.9600.19507| 5-Oct-2019| 19:57| 168,960 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:25| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:26| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 2,308,608 \ninseng.dll| 11.0.9600.17416| 30-Oct-2014| 19:56| 91,136 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 818,176 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 20:24| 235,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:39| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:27| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.20016| 15-Apr-2021| 2:21| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:29| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:30| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 22:26| 1,890,304 \nieinstal.exe| 11.0.9600.18921| 9-Feb-2018| 21:35| 475,648 \ninetcomm.dll| 6.3.9600.20016| 14-Apr-2021| 20:31| 880,640 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 21:14| 84,480 \n \n### \n\n__\n\nInternet Explorer 11 on all supported ARM-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nactxprxy.dll| 6.3.9600.19301| 25-Feb-2019| 21:59| 1,064,960 \nhlink.dll| 6.3.9600.19101| 18-Jul-2018| 20:30| 68,608 \npngfilt.dll| 11.0.9600.19963| 12-Feb-2021| 18:21| 47,616 \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 19:54| 1,039,360 \niexplore.exe| 11.0.9600.19867| 12-Oct-2020| 22:01| 807,816 \nWininetPlugin.dll| 6.3.9600.16384| 21-Aug-2013| 19:52| 33,792 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 46,592 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 56,320 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 57,856 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 10:19| 49,664 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 47,616 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 49,152 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 55,296 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 45,056 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 39,424 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 35,840 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:10| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:09| 53,760 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 54,272 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 51,200 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 53,248 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 51,712 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:07| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,688 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 50,176 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:06| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nwininet.dll.mui| 11.0.9600.18538| 12-Nov-2016| 13:08| 31,232 \nhtml.iec| 2019.0.0.19301| 25-Feb-2019| 22:35| 320,000 \ninetcpl.cpl| 11.0.9600.19963| 12-Feb-2021| 17:51| 2,007,040 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 307,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,888 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,304 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,008 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 303,104 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:16| 282,112 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 283,648 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 291,840 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 299,520 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 275,968 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:52| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 293,376 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 296,960 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 258,048 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 256,512 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 289,280 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 288,256 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 285,184 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 297,472 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 295,424 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 294,400 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 292,864 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 290,816 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:50| 286,208 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 281,600 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 286,720 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 292,352 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:48| 242,176 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nmshtml.dll.mui| 11.0.9600.19507| 5-Oct-2019| 20:51| 243,200 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 73,728 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 78,848 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 61,440 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 74,752 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 62,464 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 75,264 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 73,216 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 41,472 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 37,888 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 68,608 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 67,584 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 74,240 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 70,656 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,680 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 71,168 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 69,632 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 68,096 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 59,904 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 65,536 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 69,120 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 29,696 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 30,720 \nF12Resources.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.19963| 12-Feb-2021| 18:03| 63,488 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.19963| 12-Feb-2021| 18:04| 215,552 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 46,080 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 51,712 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 54,272 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 10:09| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:04| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 45,056 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:54| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,936 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 39,424 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 47,616 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 51,200 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:53| 50,688 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:03| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 50,176 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 49,664 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 48,640 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:59| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 49,152 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 48,128 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 12:58| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nurlmon.dll.mui| 11.0.9600.18378| 11-Jun-2016| 13:02| 35,328 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 19:54| 4,147,712 \njsproxy.dll| 11.0.9600.17416| 30-Oct-2014| 19:43| 39,936 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 114,176 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 124,928 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 122,880 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,048 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 138,240 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18698| 14-May-2017| 12:41| 114,688 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 131,584 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 117,760 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 122,368 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 134,144 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 107,008 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 127,488 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 128,512 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 88,064 \ninetcpl.cpl.mui| 11.0.9600.18838| 14-Oct-2017| 0:14| 82,944 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 123,392 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 120,320 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 130,560 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 125,952 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 128,000 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 129,024 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 124,416 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 121,856 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 115,712 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 123,904 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:22| 125,440 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:21| 74,752 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:23| 75,776 \ninetcpl.cpl.mui| 11.0.9600.18817| 7-Sep-2017| 15:24| 75,776 \nieui.dll| 11.0.9600.19650| 11-Feb-2020| 4:46| 427,520 \niedkcs32.dll| 18.0.9600.19963| 12-Feb-2021| 17:52| 292,864 \ninstall.ins| Not versioned| 14-Apr-2021| 18:47| 464 \nieapfltr.dat| 10.0.9301.0| 23-Sep-2013| 19:22| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 19:56| 548,864 \niepeers.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 107,008 \nlicmgr10.dll| 11.0.9600.17416| 30-Oct-2014| 19:34| 23,552 \ntdc.ocx| 11.0.9600.19963| 12-Feb-2021| 18:02| 62,464 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.17416| 30-Oct-2014| 19:52| 495,616 \niedvtool.dll| 11.0.9600.19963| 12-Feb-2021| 17:59| 726,016 \nDiagnosticsHub_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:22| 39,936 \ndxtmsft.dll| 11.0.9600.19963| 12-Feb-2021| 18:06| 364,032 \ndxtrans.dll| 11.0.9600.19963| 12-Feb-2021| 17:58| 221,696 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 15-Aug-2014| 15:50| 11,892 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:20| 4,096 \nF12.dll.mui| 11.0.9600.17278| 15-Aug-2014| 18:39| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:28| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:17| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:45| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:26| 4,096 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:27| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:19| 3,584 \nF12.dll.mui| 11.0.9600.17278| 16-Aug-2014| 4:18| 3,584 \nDiagnosticsTap.dll| 11.0.9600.19963| 12-Feb-2021| 18:06| 175,616 \nF12Resources.dll| 11.0.9600.17496| 21-Nov-2014| 17:44| 10,948,608 \nF12Tools.dll| 11.0.9600.19963| 12-Feb-2021| 18:05| 263,680 \nF12.dll| 11.0.9600.19963| 12-Feb-2021| 17:57| 1,186,304 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:09| 587,264 \nmsfeeds.mof| Not versioned| 5-Feb-2014| 21:51| 1,518 \nmsfeedsbs.mof| Not versioned| 21-Aug-2013| 16:43| 1,574 \nmsfeedsbs.dll| 11.0.9600.19650| 11-Feb-2020| 4:34| 43,520 \nmsfeedssync.exe| 11.0.9600.16384| 21-Aug-2013| 20:05| 11,776 \nmshtmled.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 73,216 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 20:14| 16,229,376 \nmshtml.tlb| 11.0.9600.16518| 6-Feb-2014| 1:36| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 5-Feb-2014| 21:39| 3,228 \nIEAdvpack.dll| 11.0.9600.16384| 21-Aug-2013| 19:54| 98,816 \nieetwcollector.exe| 11.0.9600.18658| 5-Apr-2017| 10:29| 98,816 \nieetwproxystub.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 43,008 \nieetwcollectorres.dll| 11.0.9600.16518| 6-Feb-2014| 1:36| 4,096 \nielowutil.exe| 11.0.9600.17031| 22-Feb-2014| 1:32| 222,208 \nieproxy.dll| 11.0.9600.19963| 12-Feb-2021| 17:33| 308,224 \nIEShims.dll| 11.0.9600.19650| 11-Feb-2020| 4:11| 268,800 \nimgutil.dll| 11.0.9600.19963| 12-Feb-2021| 17:43| 34,816 \nWindows Pop-up Blocked.wav| Not versioned| 23-Sep-2013| 20:25| 85,548 \nWindows Information Bar.wav| Not versioned| 23-Sep-2013| 20:25| 23,308 \nWindows Feed Discovered.wav| Not versioned| 23-Sep-2013| 20:25| 19,884 \nWindows Navigation Start.wav| Not versioned| 23-Sep-2013| 20:25| 11,340 \nbing.ico| Not versioned| 23-Sep-2013| 19:51| 5,430 \nieUnatt.exe| 11.0.9600.16518| 6-Feb-2014| 1:12| 112,128 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 14-Apr-2021| 21:11| 2,956 \njsdbgui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 457,216 \njsprofilerui.dll| 11.0.9600.19963| 12-Feb-2021| 18:01| 574,976 \nMemoryAnalyzer.dll| 11.0.9600.19963| 12-Feb-2021| 18:12| 1,935,360 \nMshtmlDac.dll| 11.0.9600.19867| 12-Oct-2020| 21:22| 60,928 \nnetworkinspection.dll| 11.0.9600.19963| 12-Feb-2021| 17:57| 1,105,408 \noccache.dll| 11.0.9600.19867| 12-Oct-2020| 21:01| 121,856 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \nwebcheck.dll| 11.0.9600.19867| 12-Oct-2020| 20:57| 201,216 \ndesktop.ini| Not versioned| 18-Jun-2013| 7:46| 65 \npdm.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 420,752 \nmsdbg2.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 295,320 \npdmproxy100.dll| 12.0.20712.1| 26-Jul-2013| 10:03| 76,712 \nmsrating.dll| 11.0.9600.17905| 15-Jun-2015| 12:46| 157,184 \nicrav03.rat| Not versioned| 23-Sep-2013| 19:32| 8,798 \nticrf.rat| Not versioned| 23-Sep-2013| 19:32| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 20:28| 2,186,752 \nie4uinit.exe| 11.0.9600.19963| 12-Feb-2021| 17:52| 678,400 \niernonce.dll| 11.0.9600.16518| 6-Feb-2014| 1:15| 28,160 \niesetup.dll| 11.0.9600.16518| 6-Feb-2014| 1:23| 59,904 \nieuinit.inf| Not versioned| 12-Mar-2015| 18:46| 16,303 \ninseng.dll| 11.0.9600.16384| 21-Aug-2013| 19:35| 77,312 \niesysprep.dll| 11.0.9600.17416| 30-Oct-2014| 19:28| 87,552 \nTimeline.dll| 11.0.9600.19963| 12-Feb-2021| 18:02| 155,648 \nTimeline_is.dll| 11.0.9600.19963| 12-Feb-2021| 18:14| 130,048 \nTimeline.cpu.xml| Not versioned| 24-Jul-2014| 12:09| 3,197 \nVGX.dll| 11.0.9600.19963| 12-Feb-2021| 18:00| 734,720 \nurl.dll| 11.0.9600.17416| 30-Oct-2014| 19:49| 236,032 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,066,432 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,121,216 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,075,136 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,063,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,314,240 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,390,528 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,034,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:03| 2,033,152 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,255,872 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,061,312 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 2,326,016 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:54| 2,019,840 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,071,040 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,082,816 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,307,584 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,170,368 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,153,984 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,291,712 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,283,520 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,052,096 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,301,952 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,093,056 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:53| 2,075,648 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,299,392 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,094,592 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,316,800 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,305,536 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,278,912 \nieframe.dll.mui| 11.0.9600.20016| 14-Apr-2021| 21:46| 2,286,080 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:52| 2,060,288 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,315,776 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,278,912 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:48| 2,324,992 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:49| 2,098,176 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:51| 1,890,304 \nieframe.dll.mui| 11.0.9600.19846| 23-Sep-2020| 21:50| 1,890,304 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 20:01| 12,315,648 \nieframe.ptxml| Not versioned| 5-Feb-2014| 21:38| 24,486 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 526,294 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 499,654 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:34| 552,337 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 944,559 \nInetRes.adml| Not versioned| 12-Feb-2021| 18:45| 457,561 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 543,946 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 526,557 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 575,838 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:32| 570,737 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,119 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 639,271 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 525,504 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 488,488 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:31| 548,494 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 559,343 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 535,067 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 541,455 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 804,470 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 503,909 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 521,583 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:30| 420,082 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \nInetRes.adml| Not versioned| 12-Feb-2021| 19:33| 436,651 \ninetres.admx| Not versioned| 11-Jan-2021| 19:24| 1,678,023 \ninetcomm.dll| 6.3.9600.20016| 14-Apr-2021| 20:11| 675,328 \nINETRES.dll| 6.3.9600.16384| 21-Aug-2013| 20:15| 84,480 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 20:04| 3,573,248 \njscript9diag.dll| 11.0.9600.19963| 12-Feb-2021| 18:12| 557,568 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:26| 516,608 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:31| 403,968 \n \n### **Windows Server 2012**\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **File size**| **Date**| **Time** \n---|---|---|---|--- \nUrlmon.dll| 11.0.9600.20016| 1,343,488| 15-Apr-21| 3:13 \nIexplore.exe| 11.0.9600.20016| 810,392| 21-Apr-21| 1:52 \nWininet.dll.mui| 11.0.9600.20016| 46,592| 21-Apr-21| 1:54 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 1:54 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 1:55 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 1:56 \nWininet.dll.mui| 11.0.9600.20016| 56,320| 21-Apr-21| 1:56 \nWininet.dll.mui| 11.0.9600.20016| 57,856| 21-Apr-21| 1:57 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 1:57 \nWininet.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 1:58 \nWininet.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 1:59 \nWininet.dll.mui| 11.0.9600.20016| 55,296| 21-Apr-21| 1:59 \nWininet.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 2:00 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 2:01 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 2:02 \nWininet.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 2:02 \nWininet.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 2:03 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:03 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:04 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:05 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:05 \nWininet.dll.mui| 11.0.9600.20016| 53,760| 21-Apr-21| 2:06 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 2:06 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 2:07 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:08 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:08 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 2:09 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:10 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 2:10 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:11 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:12 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:12 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:13 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:13 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:14 \nInetcpl.cpl| 11.0.9600.20016| 2,058,752| 15-Apr-21| 3:26 \nMshtml.dll.mui| 11.0.9600.20016| 307,200| 21-Apr-21| 1:54 \nMshtml.dll.mui| 11.0.9600.20016| 293,888| 21-Apr-21| 1:55 \nMshtml.dll.mui| 11.0.9600.20016| 290,304| 21-Apr-21| 1:55 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 1:56 \nMshtml.dll.mui| 11.0.9600.20016| 299,008| 21-Apr-21| 1:56 \nMshtml.dll.mui| 11.0.9600.20016| 303,104| 21-Apr-21| 1:57 \nMshtml.dll.mui| 11.0.9600.20016| 282,112| 21-Apr-21| 2:37 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 1:57 \nMshtml.dll.mui| 11.0.9600.20016| 283,648| 21-Apr-21| 1:58 \nMshtml.dll.mui| 11.0.9600.20016| 291,840| 21-Apr-21| 1:59 \nMshtml.dll.mui| 11.0.9600.20016| 299,520| 21-Apr-21| 1:59 \nMshtml.dll.mui| 11.0.9600.20016| 275,968| 21-Apr-21| 2:00 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 2:00 \nMshtml.dll.mui| 11.0.9600.20016| 293,376| 21-Apr-21| 2:01 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 2:02 \nMshtml.dll.mui| 11.0.9600.20016| 258,048| 21-Apr-21| 2:02 \nMshtml.dll.mui| 11.0.9600.20016| 256,512| 21-Apr-21| 2:03 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 2:04 \nMshtml.dll.mui| 11.0.9600.20016| 288,256| 21-Apr-21| 2:04 \nMshtml.dll.mui| 11.0.9600.20016| 285,184| 21-Apr-21| 2:05 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 2:05 \nMshtml.dll.mui| 11.0.9600.20016| 297,472| 21-Apr-21| 2:06 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 2:06 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 2:07 \nMshtml.dll.mui| 11.0.9600.20016| 294,400| 21-Apr-21| 2:08 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 2:09 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 2:09 \nMshtml.dll.mui| 11.0.9600.20016| 288,768| 21-Apr-21| 2:10 \nMshtml.dll.mui| 11.0.9600.20016| 286,208| 21-Apr-21| 2:11 \nMshtml.dll.mui| 11.0.9600.20016| 281,600| 21-Apr-21| 2:11 \nMshtml.dll.mui| 11.0.9600.20016| 286,720| 21-Apr-21| 2:12 \nMshtml.dll.mui| 11.0.9600.20016| 292,352| 21-Apr-21| 2:12 \nMshtml.dll.mui| 11.0.9600.20016| 242,176| 21-Apr-21| 2:13 \nMshtml.dll.mui| 11.0.9600.20016| 243,200| 21-Apr-21| 2:14 \nUrlmon.dll.mui| 11.0.9600.20016| 46,080| 21-Apr-21| 1:54 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 1:54 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 1:55 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 1:56 \nUrlmon.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 1:56 \nUrlmon.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 1:57 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 1:57 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 1:58 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 1:59 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 1:59 \nUrlmon.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 2:00 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:00 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:01 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:02 \nUrlmon.dll.mui| 11.0.9600.20016| 39,936| 21-Apr-21| 2:02 \nUrlmon.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 2:03 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 2:04 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:05 \nUrlmon.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:05 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:06 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:06 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:07 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:08 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:08 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:09 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:10 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:10 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:11 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 2:11 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:12 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 2:13 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 2:13 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 2:14 \nJsproxy.dll| 11.0.9600.20016| 47,104| 15-Apr-21| 3:50 \nWininet.dll| 11.0.9600.20016| 4,388,352| 15-Apr-21| 3:15 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,176| 21-Apr-21| 1:54 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 1:54 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,928| 21-Apr-21| 1:55 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,880| 21-Apr-21| 1:56 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,048| 21-Apr-21| 1:56 \nInetcpl.cpl.mui| 11.0.9600.20016| 138,240| 21-Apr-21| 1:57 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,688| 21-Apr-21| 2:37 \nInetcpl.cpl.mui| 11.0.9600.20016| 131,584| 21-Apr-21| 1:57 \nInetcpl.cpl.mui| 11.0.9600.20016| 117,760| 21-Apr-21| 1:58 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,368| 21-Apr-21| 1:59 \nInetcpl.cpl.mui| 11.0.9600.20016| 134,144| 21-Apr-21| 1:59 \nInetcpl.cpl.mui| 11.0.9600.20016| 107,008| 21-Apr-21| 2:00 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 2:01 \nInetcpl.cpl.mui| 11.0.9600.20016| 127,488| 21-Apr-21| 2:01 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,512| 21-Apr-21| 2:02 \nInetcpl.cpl.mui| 11.0.9600.20016| 88,576| 21-Apr-21| 2:02 \nInetcpl.cpl.mui| 11.0.9600.20016| 82,944| 21-Apr-21| 2:03 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 2:03 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 2:04 \nInetcpl.cpl.mui| 11.0.9600.20016| 120,320| 21-Apr-21| 2:05 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 2:05 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:06 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,952| 21-Apr-21| 2:06 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:07 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,000| 21-Apr-21| 2:08 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:08 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:09 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:09 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,416| 21-Apr-21| 2:10 \nInetcpl.cpl.mui| 11.0.9600.20016| 121,856| 21-Apr-21| 2:11 \nInetcpl.cpl.mui| 11.0.9600.20016| 115,712| 21-Apr-21| 2:11 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:12 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 2:13 \nInetcpl.cpl.mui| 11.0.9600.20016| 72,704| 21-Apr-21| 2:13 \nInetcpl.cpl.mui| 11.0.9600.20016| 73,728| 21-Apr-21| 2:14 \nMsfeedsbs.dll| 11.0.9600.20016| 52,736| 15-Apr-21| 3:34 \nMsfeedsbs.mof| Not Applicable| 1,574| 15-Apr-21| 2:02 \nMsfeedssync.exe| 11.0.9600.20016| 11,776| 15-Apr-21| 3:56 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not Applicable| 3,228| 15-Apr-21| 1:54 \nMshtml.dll| 11.0.9600.20016| #########| 15-Apr-21| 4:33 \nMshtml.tlb| 11.0.9600.20016| 2,724,864| 15-Apr-21| 4:05 \nIeproxy.dll| 11.0.9600.20016| 310,784| 15-Apr-21| 3:05 \nIeshims.dll| 11.0.9600.20016| 290,304| 15-Apr-21| 3:09 \nIertutil.dll| 11.0.9600.20016| 2,308,608| 15-Apr-21| 4:00 \nSqmapi.dll| 6.2.9200.16384| 228,248| 21-Apr-21| 1:52 \nIeframe.dll.mui| 11.0.9600.20016| 2,066,432| 21-Apr-21| 1:54 \nIeframe.dll.mui| 11.0.9600.20016| 2,121,216| 21-Apr-21| 1:55 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 1:55 \nIeframe.dll.mui| 11.0.9600.20016| 2,063,872| 21-Apr-21| 1:56 \nIeframe.dll.mui| 11.0.9600.20016| 2,314,240| 21-Apr-21| 1:57 \nIeframe.dll.mui| 11.0.9600.20016| 2,390,528| 21-Apr-21| 1:57 \nIeframe.dll.mui| 11.0.9600.20016| 2,033,152| 21-Apr-21| 2:37 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 1:58 \nIeframe.dll.mui| 11.0.9600.20016| 2,255,872| 21-Apr-21| 1:58 \nIeframe.dll.mui| 11.0.9600.20016| 2,061,312| 21-Apr-21| 1:59 \nIeframe.dll.mui| 11.0.9600.20016| 2,326,016| 21-Apr-21| 2:00 \nIeframe.dll.mui| 11.0.9600.20016| 2,019,840| 21-Apr-21| 2:00 \nIeframe.dll.mui| 11.0.9600.20016| 2,071,040| 21-Apr-21| 2:01 \nIeframe.dll.mui| 11.0.9600.20016| 2,082,816| 21-Apr-21| 2:01 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 2:02 \nIeframe.dll.mui| 11.0.9600.20016| 2,170,368| 21-Apr-21| 2:03 \nIeframe.dll.mui| 11.0.9600.20016| 2,153,984| 21-Apr-21| 2:03 \nIeframe.dll.mui| 11.0.9600.20016| 2,291,712| 21-Apr-21| 2:04 \nIeframe.dll.mui| 11.0.9600.20016| 2,283,520| 21-Apr-21| 2:04 \nIeframe.dll.mui| 11.0.9600.20016| 2,052,096| 21-Apr-21| 2:05 \nIeframe.dll.mui| 11.0.9600.20016| 2,301,952| 21-Apr-21| 2:06 \nIeframe.dll.mui| 11.0.9600.20016| 2,093,056| 21-Apr-21| 2:06 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 2:07 \nIeframe.dll.mui| 11.0.9600.20016| 2,299,392| 21-Apr-21| 2:07 \nIeframe.dll.mui| 11.0.9600.20016| 2,094,592| 21-Apr-21| 2:08 \nIeframe.dll.mui| 11.0.9600.20016| 2,316,800| 21-Apr-21| 2:09 \nIeframe.dll.mui| 11.0.9600.20016| 2,305,536| 21-Apr-21| 2:09 \nIeframe.dll.mui| 11.0.9600.20016| 2,278,912| 21-Apr-21| 2:10 \nIeframe.dll.mui| 11.0.9600.20016| 2,285,568| 21-Apr-21| 2:10 \nIeframe.dll.mui| 11.0.9600.20016| 2,060,288| 21-Apr-21| 2:11 \nIeframe.dll.mui| 11.0.9600.20016| 2,315,776| 21-Apr-21| 2:12 \nIeframe.dll.mui| 11.0.9600.20016| 2,279,424| 21-Apr-21| 2:12 \nIeframe.dll.mui| 11.0.9600.20016| 2,324,992| 21-Apr-21| 2:13 \nIeframe.dll.mui| 11.0.9600.20016| 2,098,176| 21-Apr-21| 2:13 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 2:14 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 2:15 \nIeframe.dll| 11.0.9600.20016| #########| 15-Apr-21| 3:36 \nIeframe.ptxml| Not Applicable| 24,486| 15-Apr-21| 1:53 \nInetres.adml| Not Applicable| 463,373| 21-Apr-21| 1:54 \nInetres.adml| Not Applicable| 751,366| 21-Apr-21| 1:54 \nInetres.adml| Not Applicable| 526,344| 21-Apr-21| 1:55 \nInetres.adml| Not Applicable| 499,705| 21-Apr-21| 1:56 \nInetres.adml| Not Applicable| 552,386| 21-Apr-21| 1:56 \nInetres.adml| Not Applicable| 944,609| 21-Apr-21| 1:57 \nInetres.adml| Not Applicable| 457,561| 21-Apr-21| 2:37 \nInetres.adml| Not Applicable| 543,996| 21-Apr-21| 1:57 \nInetres.adml| Not Applicable| 751,446| 21-Apr-21| 1:58 \nInetres.adml| Not Applicable| 526,606| 21-Apr-21| 1:59 \nInetres.adml| Not Applicable| 575,885| 21-Apr-21| 1:59 \nInetres.adml| Not Applicable| 463,373| 21-Apr-21| 2:00 \nInetres.adml| Not Applicable| 751,445| 21-Apr-21| 2:00 \nInetres.adml| Not Applicable| 570,787| 21-Apr-21| 2:01 \nInetres.adml| Not Applicable| 548,168| 21-Apr-21| 2:02 \nInetres.adml| Not Applicable| 639,283| 21-Apr-21| 2:02 \nInetres.adml| Not Applicable| 525,516| 21-Apr-21| 2:03 \nInetres.adml| Not Applicable| 751,281| 21-Apr-21| 2:03 \nInetres.adml| Not Applicable| 751,440| 21-Apr-21| 2:04 \nInetres.adml| Not Applicable| 488,540| 21-Apr-21| 2:05 \nInetres.adml| Not Applicable| 548,544| 21-Apr-21| 2:05 \nInetres.adml| Not Applicable| 559,392| 21-Apr-21| 2:06 \nInetres.adml| Not Applicable| 535,117| 21-Apr-21| 2:06 \nInetres.adml| Not Applicable| 541,508| 21-Apr-21| 2:07 \nInetres.adml| Not Applicable| 751,296| 21-Apr-21| 2:08 \nInetres.adml| Not Applicable| 804,518| 21-Apr-21| 2:08 \nInetres.adml| Not Applicable| 751,356| 21-Apr-21| 2:09 \nInetres.adml| Not Applicable| 751,360| 21-Apr-21| 2:09 \nInetres.adml| Not Applicable| 751,261| 21-Apr-21| 2:10 \nInetres.adml| Not Applicable| 503,957| 21-Apr-21| 2:11 \nInetres.adml| Not Applicable| 751,326| 21-Apr-21| 2:11 \nInetres.adml| Not Applicable| 521,632| 21-Apr-21| 2:12 \nInetres.adml| Not Applicable| 751,400| 21-Apr-21| 2:13 \nInetres.adml| Not Applicable| 420,094| 21-Apr-21| 2:13 \nInetres.adml| Not Applicable| 436,663| 21-Apr-21| 2:14 \nInetres.admx| Not Applicable| 1,678,023| 1-Apr-21| 2:16 \nJscript9.dll.mui| 11.0.9600.20016| 29,184| 21-Apr-21| 1:54 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 1:54 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 1:55 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 1:56 \nJscript9.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 1:56 \nJscript9.dll.mui| 11.0.9600.20016| 37,888| 21-Apr-21| 1:57 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:37 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 1:57 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 1:58 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 1:59 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 1:59 \nJscript9.dll.mui| 11.0.9600.20016| 27,648| 21-Apr-21| 2:00 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:00 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 2:01 \nJscript9.dll.mui| 11.0.9600.20016| 33,792| 21-Apr-21| 2:02 \nJscript9.dll.mui| 11.0.9600.20016| 23,040| 21-Apr-21| 2:02 \nJscript9.dll.mui| 11.0.9600.20016| 22,016| 21-Apr-21| 2:03 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:03 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:04 \nJscript9.dll.mui| 11.0.9600.20016| 31,232| 21-Apr-21| 2:05 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 2:05 \nJscript9.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 2:06 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 2:06 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 2:07 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:08 \nJscript9.dll.mui| 11.0.9600.20016| 34,816| 21-Apr-21| 2:08 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 2:09 \nJscript9.dll.mui| 11.0.9600.20016| 32,256| 21-Apr-21| 2:09 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:10 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 2:11 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:11 \nJscript9.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:12 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:12 \nJscript9.dll.mui| 11.0.9600.20016| 16,384| 21-Apr-21| 2:13 \nJscript9.dll.mui| 11.0.9600.20016| 16,896| 21-Apr-21| 2:14 \nJscript9.dll| 11.0.9600.20016| 4,112,384| 15-Apr-21| 3:38 \nJscript9diag.dll| 11.0.9600.20016| 620,032| 15-Apr-21| 3:46 \nJscript.dll| 5.8.9600.20016| 653,824| 15-Apr-21| 3:49 \nVbscript.dll| 5.8.9600.20016| 498,176| 15-Apr-21| 3:58 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **File size**| **Date**| **Time** \n---|---|---|---|--- \nUrlmon.dll| 11.0.9600.20016| 1,569,280| 15-Apr-21| 3:35 \nIexplore.exe| 11.0.9600.20016| 810,376| 21-Apr-21| 17:28 \nWininet.dll.mui| 11.0.9600.20016| 46,592| 21-Apr-21| 17:30 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 17:31 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 17:31 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 17:32 \nWininet.dll.mui| 11.0.9600.20016| 56,320| 21-Apr-21| 17:33 \nWininet.dll.mui| 11.0.9600.20016| 57,856| 21-Apr-21| 17:33 \nWininet.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 18:44 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 17:34 \nWininet.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 17:34 \nWininet.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 17:35 \nWininet.dll.mui| 11.0.9600.20016| 55,296| 21-Apr-21| 17:35 \nWininet.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 17:36 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 17:37 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 17:38 \nWininet.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 17:39 \nWininet.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 17:39 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:40 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 17:41 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 17:41 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 17:42 \nWininet.dll.mui| 11.0.9600.20016| 53,760| 21-Apr-21| 17:42 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 17:43 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 17:44 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 17:44 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 17:45 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 17:45 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 17:46 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 17:46 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 17:47 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:48 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:49 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 17:49 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 17:50 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 17:51 \nInetcpl.cpl| 11.0.9600.20016| 2,132,992| 15-Apr-21| 3:47 \nMshtml.dll.mui| 11.0.9600.20016| 307,200| 21-Apr-21| 17:30 \nMshtml.dll.mui| 11.0.9600.20016| 293,888| 21-Apr-21| 17:31 \nMshtml.dll.mui| 11.0.9600.20016| 290,304| 21-Apr-21| 17:31 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 17:32 \nMshtml.dll.mui| 11.0.9600.20016| 299,008| 21-Apr-21| 17:33 \nMshtml.dll.mui| 11.0.9600.20016| 303,104| 21-Apr-21| 17:33 \nMshtml.dll.mui| 11.0.9600.20016| 282,112| 21-Apr-21| 18:44 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 17:34 \nMshtml.dll.mui| 11.0.9600.20016| 283,648| 21-Apr-21| 17:35 \nMshtml.dll.mui| 11.0.9600.20016| 291,840| 21-Apr-21| 17:35 \nMshtml.dll.mui| 11.0.9600.20016| 299,520| 21-Apr-21| 17:36 \nMshtml.dll.mui| 11.0.9600.20016| 275,968| 21-Apr-21| 17:36 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 17:37 \nMshtml.dll.mui| 11.0.9600.20016| 293,376| 21-Apr-21| 17:37 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 17:38 \nMshtml.dll.mui| 11.0.9600.20016| 258,048| 21-Apr-21| 17:39 \nMshtml.dll.mui| 11.0.9600.20016| 256,512| 21-Apr-21| 17:39 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 17:40 \nMshtml.dll.mui| 11.0.9600.20016| 288,256| 21-Apr-21| 17:41 \nMshtml.dll.mui| 11.0.9600.20016| 285,184| 21-Apr-21| 17:41 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 17:42 \nMshtml.dll.mui| 11.0.9600.20016| 297,472| 21-Apr-21| 17:42 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 17:43 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 17:44 \nMshtml.dll.mui| 11.0.9600.20016| 294,400| 21-Apr-21| 17:44 \nMshtml.dll.mui| 11.0.9600.20016| 294,400| 21-Apr-21| 17:45 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 17:45 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 17:46 \nMshtml.dll.mui| 11.0.9600.20016| 288,768| 21-Apr-21| 17:46 \nMshtml.dll.mui| 11.0.9600.20016| 286,208| 21-Apr-21| 17:47 \nMshtml.dll.mui| 11.0.9600.20016| 281,600| 21-Apr-21| 17:47 \nMshtml.dll.mui| 11.0.9600.20016| 286,720| 21-Apr-21| 17:48 \nMshtml.dll.mui| 11.0.9600.20016| 292,352| 21-Apr-21| 17:49 \nMshtml.dll.mui| 11.0.9600.20016| 242,176| 21-Apr-21| 17:50 \nMshtml.dll.mui| 11.0.9600.20016| 243,200| 21-Apr-21| 17:50 \nMshtml.dll.mui| 11.0.9600.20016| 243,200| 21-Apr-21| 17:51 \nUrlmon.dll.mui| 11.0.9600.20016| 46,080| 21-Apr-21| 17:30 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:31 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 17:32 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 17:32 \nUrlmon.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 17:33 \nUrlmon.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 17:33 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 18:44 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:34 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 17:34 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 17:35 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 17:36 \nUrlmon.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 17:36 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 17:37 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 17:38 \nUrlmon.dll.mui| 11.0.9600.20016| 39,936| 21-Apr-21| 17:39 \nUrlmon.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 17:39 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 17:40 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 17:41 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 17:41 \nUrlmon.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 17:42 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 17:43 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 17:43 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:44 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 17:44 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 17:45 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 17:45 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 17:46 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 17:46 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 17:47 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 17:48 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 17:48 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 17:49 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 17:49 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 17:50 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 17:51 \nJsproxy.dll| 11.0.9600.20016| 54,784| 15-Apr-21| 4:23 \nWininet.dll| 11.0.9600.20016| 4,859,904| 15-Apr-21| 3:55 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,176| 21-Apr-21| 17:30 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 17:31 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,928| 21-Apr-21| 17:31 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,880| 21-Apr-21| 17:32 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,048| 21-Apr-21| 17:33 \nInetcpl.cpl.mui| 11.0.9600.20016| 138,240| 21-Apr-21| 17:33 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,688| 21-Apr-21| 18:44 \nInetcpl.cpl.mui| 11.0.9600.20016| 131,584| 21-Apr-21| 17:34 \nInetcpl.cpl.mui| 11.0.9600.20016| 117,760| 21-Apr-21| 17:34 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,368| 21-Apr-21| 17:35 \nInetcpl.cpl.mui| 11.0.9600.20016| 134,144| 21-Apr-21| 17:36 \nInetcpl.cpl.mui| 11.0.9600.20016| 107,008| 21-Apr-21| 17:36 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 17:37 \nInetcpl.cpl.mui| 11.0.9600.20016| 127,488| 21-Apr-21| 17:37 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,512| 21-Apr-21| 17:38 \nInetcpl.cpl.mui| 11.0.9600.20016| 88,576| 21-Apr-21| 17:39 \nInetcpl.cpl.mui| 11.0.9600.20016| 82,944| 21-Apr-21| 17:39 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 17:40 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 17:41 \nInetcpl.cpl.mui| 11.0.9600.20016| 120,320| 21-Apr-21| 17:41 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 17:42 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 17:42 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,952| 21-Apr-21| 17:43 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 17:44 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,000| 21-Apr-21| 17:44 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 17:45 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 17:45 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 17:46 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,416| 21-Apr-21| 17:46 \nInetcpl.cpl.mui| 11.0.9600.20016| 121,856| 21-Apr-21| 17:47 \nInetcpl.cpl.mui| 11.0.9600.20016| 115,712| 21-Apr-21| 17:48 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 17:48 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 17:49 \nInetcpl.cpl.mui| 11.0.9600.20016| 72,704| 21-Apr-21| 17:50 \nInetcpl.cpl.mui| 11.0.9600.20016| 73,728| 21-Apr-21| 17:50 \nInetcpl.cpl.mui| 11.0.9600.20016| 73,728| 21-Apr-21| 17:51 \nMsfeedsbs.dll| 11.0.9600.20016| 60,416| 15-Apr-21| 4:00 \nMsfeedsbs.mof| Not Applicable| 1,574| 15-Apr-21| 1:59 \nMsfeedssync.exe| 11.0.9600.20016| 13,312| 15-Apr-21| 4:30 \nMicrosoft-windows-ie-htmlrendering.ptxml| Not Applicable| 3,228| 15-Apr-21| 1:46 \nMshtml.dll| 11.0.9600.20016| #########| 15-Apr-21| 6:21 \nMshtml.tlb| 11.0.9600.20016| 2,724,864| 15-Apr-21| 4:42 \nIeproxy.dll| 11.0.9600.20016| 870,400| 15-Apr-21| 3:17 \nIeshims.dll| 11.0.9600.20016| 387,072| 15-Apr-21| 3:23 \nIertutil.dll| 11.0.9600.20016| 2,916,352| 15-Apr-21| 4:35 \nSqmapi.dll| 6.2.9200.16384| 286,088| 21-Apr-21| 17:28 \nIeframe.dll.mui| 11.0.9600.20016| 2,066,432| 21-Apr-21| 17:31 \nIeframe.dll.mui| 11.0.9600.20016| 2,121,216| 21-Apr-21| 17:31 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 17:32 \nIeframe.dll.mui| 11.0.9600.20016| 2,063,872| 21-Apr-21| 17:32 \nIeframe.dll.mui| 11.0.9600.20016| 2,314,240| 21-Apr-21| 17:33 \nIeframe.dll.mui| 11.0.9600.20016| 2,390,528| 21-Apr-21| 17:34 \nIeframe.dll.mui| 11.0.9600.20016| 2,033,152| 21-Apr-21| 18:45 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 17:34 \nIeframe.dll.mui| 11.0.9600.20016| 2,255,872| 21-Apr-21| 17:35 \nIeframe.dll.mui| 11.0.9600.20016| 2,061,312| 21-Apr-21| 17:35 \nIeframe.dll.mui| 11.0.9600.20016| 2,326,016| 21-Apr-21| 17:36 \nIeframe.dll.mui| 11.0.9600.20016| 2,019,840| 21-Apr-21| 17:36 \nIeframe.dll.mui| 11.0.9600.20016| 2,071,040| 21-Apr-21| 17:37 \nIeframe.dll.mui| 11.0.9600.20016| 2,082,816| 21-Apr-21| 17:38 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 17:38 \nIeframe.dll.mui| 11.0.9600.20016| 2,170,368| 21-Apr-21| 17:39 \nIeframe.dll.mui| 11.0.9600.20016| 2,153,984| 21-Apr-21| 17:40 \nIeframe.dll.mui| 11.0.9600.20016| 2,291,712| 21-Apr-21| 17:40 \nIeframe.dll.mui| 11.0.9600.20016| 2,283,520| 21-Apr-21| 17:41 \nIeframe.dll.mui| 11.0.9600.20016| 2,052,096| 21-Apr-21| 17:41 \nIeframe.dll.mui| 11.0.9600.20016| 2,301,952| 21-Apr-21| 17:42 \nIeframe.dll.mui| 11.0.9600.20016| 2,093,056| 21-Apr-21| 17:43 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 17:43 \nIeframe.dll.mui| 11.0.9600.20016| 2,299,392| 21-Apr-21| 17:44 \nIeframe.dll.mui| 11.0.9600.20016| 2,094,592| 21-Apr-21| 17:44 \nIeframe.dll.mui| 11.0.9600.20016| 2,316,800| 21-Apr-21| 17:45 \nIeframe.dll.mui| 11.0.9600.20016| 2,305,536| 21-Apr-21| 17:46 \nIeframe.dll.mui| 11.0.9600.20016| 2,278,912| 21-Apr-21| 17:46 \nIeframe.dll.mui| 11.0.9600.20016| 2,285,568| 21-Apr-21| 17:47 \nIeframe.dll.mui| 11.0.9600.20016| 2,060,288| 21-Apr-21| 17:47 \nIeframe.dll.mui| 11.0.9600.20016| 2,315,776| 21-Apr-21| 17:48 \nIeframe.dll.mui| 11.0.9600.20016| 2,279,424| 21-Apr-21| 17:48 \nIeframe.dll.mui| 11.0.9600.20016| 2,324,992| 21-Apr-21| 17:49 \nIeframe.dll.mui| 11.0.9600.20016| 2,098,176| 21-Apr-21| 17:50 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 17:50 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 17:51 \nIeframe.dll| 11.0.9600.20016| #########| 15-Apr-21| 4:06 \nIeframe.ptxml| Not Applicable| 24,486| 15-Apr-21| 1:45 \nInetres.adml| Not Applicable| 463,373| 21-Apr-21| 17:30 \nInetres.adml| Not Applicable| 751,291| 21-Apr-21| 17:31 \nInetres.adml| Not Applicable| 526,345| 21-Apr-21| 17:31 \nInetres.adml| Not Applicable| 499,705| 21-Apr-21| 17:32 \nInetres.adml| Not Applicable| 552,386| 21-Apr-21| 17:33 \nInetres.adml| Not Applicable| 944,608| 21-Apr-21| 17:33 \nInetres.adml| Not Applicable| 457,561| 21-Apr-21| 18:44 \nInetres.adml| Not Applicable| 543,998| 21-Apr-21| 17:34 \nInetres.adml| Not Applicable| 751,345| 21-Apr-21| 17:34 \nInetres.adml| Not Applicable| 526,607| 21-Apr-21| 17:35 \nInetres.adml| Not Applicable| 575,889| 21-Apr-21| 17:36 \nInetres.adml| Not Applicable| 463,373| 21-Apr-21| 17:36 \nInetres.adml| Not Applicable| 751,315| 21-Apr-21| 17:37 \nInetres.adml| Not Applicable| 570,788| 21-Apr-21| 17:37 \nInetres.adml| Not Applicable| 548,169| 21-Apr-21| 17:38 \nInetres.adml| Not Applicable| 639,283| 21-Apr-21| 17:39 \nInetres.adml| Not Applicable| 525,516| 21-Apr-21| 17:39 \nInetres.adml| Not Applicable| 751,229| 21-Apr-21| 17:40 \nInetres.adml| Not Applicable| 751,249| 21-Apr-21| 17:41 \nInetres.adml| Not Applicable| 488,541| 21-Apr-21| 17:41 \nInetres.adml| Not Applicable| 548,544| 21-Apr-21| 17:42 \nInetres.adml| Not Applicable| 559,395| 21-Apr-21| 17:42 \nInetres.adml| Not Applicable| 535,116| 21-Apr-21| 17:43 \nInetres.adml| Not Applicable| 541,504| 21-Apr-21| 17:44 \nInetres.adml| Not Applicable| 751,314| 21-Apr-21| 17:44 \nInetres.adml| Not Applicable| 804,518| 21-Apr-21| 17:45 \nInetres.adml| Not Applicable| 751,326| 21-Apr-21| 17:45 \nInetres.adml| Not Applicable| 751,464| 21-Apr-21| 17:46 \nInetres.adml| Not Applicable| 751,369| 21-Apr-21| 17:46 \nInetres.adml| Not Applicable| 503,959| 21-Apr-21| 17:47 \nInetres.adml| Not Applicable| 751,168| 21-Apr-21| 17:48 \nInetres.adml| Not Applicable| 521,633| 21-Apr-21| 17:48 \nInetres.adml| Not Applicable| 751,416| 21-Apr-21| 17:49 \nInetres.adml| Not Applicable| 420,094| 21-Apr-21| 17:50 \nInetres.adml| Not Applicable| 436,663| 21-Apr-21| 17:50 \nInetres.adml| Not Applicable| 436,663| 21-Apr-21| 17:51 \nInetres.admx| Not Applicable| 1,678,023| 23-Mar-21| 1:12 \nJscript9.dll.mui| 11.0.9600.20016| 29,184| 21-Apr-21| 17:30 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:31 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 17:31 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 17:32 \nJscript9.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 17:32 \nJscript9.dll.mui| 11.0.9600.20016| 37,888| 21-Apr-21| 17:33 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 18:45 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 17:34 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:34 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 17:35 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 17:36 \nJscript9.dll.mui| 11.0.9600.20016| 27,648| 21-Apr-21| 17:36 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:37 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 17:37 \nJscript9.dll.mui| 11.0.9600.20016| 33,792| 21-Apr-21| 17:38 \nJscript9.dll.mui| 11.0.9600.20016| 23,040| 21-Apr-21| 17:39 \nJscript9.dll.mui| 11.0.9600.20016| 22,016| 21-Apr-21| 17:39 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:40 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:41 \nJscript9.dll.mui| 11.0.9600.20016| 31,232| 21-Apr-21| 17:41 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 17:42 \nJscript9.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 17:42 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 17:43 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 17:44 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:44 \nJscript9.dll.mui| 11.0.9600.20016| 34,816| 21-Apr-21| 17:45 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 17:45 \nJscript9.dll.mui| 11.0.9600.20016| 32,256| 21-Apr-21| 17:46 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:46 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 17:47 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:47 \nJscript9.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 17:48 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 17:49 \nJscript9.dll.mui| 11.0.9600.20016| 16,384| 21-Apr-21| 17:49 \nJscript9.dll.mui| 11.0.9600.20016| 16,896| 21-Apr-21| 17:50 \nJscript9.dll.mui| 11.0.9600.20016| 16,896| 21-Apr-21| 17:51 \nJscript9.dll| 11.0.9600.20016| 5,499,904| 15-Apr-21| 4:40 \nJscript9diag.dll| 11.0.9600.20016| 814,592| 15-Apr-21| 4:19 \nJscript.dll| 5.8.9600.20016| 785,408| 15-Apr-21| 4:19 \nVbscript.dll| 5.8.9600.20016| 581,120| 15-Apr-21| 4:29 \nIexplore.exe| 11.0.9600.20016| 810,392| 21-Apr-21| 1:52 \nMshtml.dll| 11.0.9600.20016| #########| 15-Apr-21| 4:33 \nMshtml.tlb| 11.0.9600.20016| 2,724,864| 15-Apr-21| 4:05 \nWow64_microsoft-windows-ie-htmlrendering.ptxml| Not Applicable| 3,228| 15-Apr-21| 1:56 \nIe9props.propdesc| Not Applicable| 2,843| 1-Apr-21| 2:04 \nIeframe.dll| 11.0.9600.20016| #########| 15-Apr-21| 3:36 \nWow64_ieframe.ptxml| Not Applicable| 24,486| 15-Apr-21| 1:56 \nJscript9.dll| 11.0.9600.20016| 4,112,384| 15-Apr-21| 3:38 \nJscript9diag.dll| 11.0.9600.20016| 620,032| 15-Apr-21| 3:46 \nJscript.dll| 5.8.9600.20016| 653,824| 15-Apr-21| 3:49 \nVbscript.dll| 5.8.9600.20016| 498,176| 15-Apr-21| 3:58 \nUrlmon.dll| 11.0.9600.20016| 1,343,488| 15-Apr-21| 3:13 \nWininet.dll.mui| 11.0.9600.20016| 46,592| 21-Apr-21| 1:54 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 1:54 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 1:55 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 1:56 \nWininet.dll.mui| 11.0.9600.20016| 56,320| 21-Apr-21| 1:56 \nWininet.dll.mui| 11.0.9600.20016| 57,856| 21-Apr-21| 1:57 \nWininet.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:37 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 1:57 \nWininet.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 1:58 \nWininet.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 1:59 \nWininet.dll.mui| 11.0.9600.20016| 55,296| 21-Apr-21| 1:59 \nWininet.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 2:00 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 2:01 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 2:02 \nWininet.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 2:02 \nWininet.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 2:03 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:03 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:04 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:05 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:05 \nWininet.dll.mui| 11.0.9600.20016| 53,760| 21-Apr-21| 2:06 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 2:06 \nWininet.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 2:07 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:08 \nWininet.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:08 \nWininet.dll.mui| 11.0.9600.20016| 53,248| 21-Apr-21| 2:09 \nWininet.dll.mui| 11.0.9600.20016| 52,736| 21-Apr-21| 2:10 \nWininet.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 2:10 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:11 \nWininet.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:12 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:12 \nWininet.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:13 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:13 \nWininet.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:14 \nInetcpl.cpl| 11.0.9600.20016| 2,058,752| 15-Apr-21| 3:26 \nMshtml.dll.mui| 11.0.9600.20016| 307,200| 21-Apr-21| 1:54 \nMshtml.dll.mui| 11.0.9600.20016| 293,888| 21-Apr-21| 1:55 \nMshtml.dll.mui| 11.0.9600.20016| 290,304| 21-Apr-21| 1:55 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 1:56 \nMshtml.dll.mui| 11.0.9600.20016| 299,008| 21-Apr-21| 1:56 \nMshtml.dll.mui| 11.0.9600.20016| 303,104| 21-Apr-21| 1:57 \nMshtml.dll.mui| 11.0.9600.20016| 282,112| 21-Apr-21| 2:37 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 1:57 \nMshtml.dll.mui| 11.0.9600.20016| 283,648| 21-Apr-21| 1:58 \nMshtml.dll.mui| 11.0.9600.20016| 291,840| 21-Apr-21| 1:59 \nMshtml.dll.mui| 11.0.9600.20016| 299,520| 21-Apr-21| 1:59 \nMshtml.dll.mui| 11.0.9600.20016| 275,968| 21-Apr-21| 2:00 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 2:00 \nMshtml.dll.mui| 11.0.9600.20016| 293,376| 21-Apr-21| 2:01 \nMshtml.dll.mui| 11.0.9600.20016| 296,960| 21-Apr-21| 2:02 \nMshtml.dll.mui| 11.0.9600.20016| 258,048| 21-Apr-21| 2:02 \nMshtml.dll.mui| 11.0.9600.20016| 256,512| 21-Apr-21| 2:03 \nMshtml.dll.mui| 11.0.9600.20016| 289,280| 21-Apr-21| 2:04 \nMshtml.dll.mui| 11.0.9600.20016| 288,256| 21-Apr-21| 2:04 \nMshtml.dll.mui| 11.0.9600.20016| 285,184| 21-Apr-21| 2:05 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 2:05 \nMshtml.dll.mui| 11.0.9600.20016| 297,472| 21-Apr-21| 2:06 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 2:06 \nMshtml.dll.mui| 11.0.9600.20016| 295,424| 21-Apr-21| 2:07 \nMshtml.dll.mui| 11.0.9600.20016| 294,400| 21-Apr-21| 2:08 \nMshtml.dll.mui| 11.0.9600.20016| 292,864| 21-Apr-21| 2:09 \nMshtml.dll.mui| 11.0.9600.20016| 290,816| 21-Apr-21| 2:09 \nMshtml.dll.mui| 11.0.9600.20016| 288,768| 21-Apr-21| 2:10 \nMshtml.dll.mui| 11.0.9600.20016| 286,208| 21-Apr-21| 2:11 \nMshtml.dll.mui| 11.0.9600.20016| 281,600| 21-Apr-21| 2:11 \nMshtml.dll.mui| 11.0.9600.20016| 286,720| 21-Apr-21| 2:12 \nMshtml.dll.mui| 11.0.9600.20016| 292,352| 21-Apr-21| 2:12 \nMshtml.dll.mui| 11.0.9600.20016| 242,176| 21-Apr-21| 2:13 \nMshtml.dll.mui| 11.0.9600.20016| 243,200| 21-Apr-21| 2:14 \nUrlmon.dll.mui| 11.0.9600.20016| 46,080| 21-Apr-21| 1:54 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 1:54 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 1:55 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 1:56 \nUrlmon.dll.mui| 11.0.9600.20016| 51,712| 21-Apr-21| 1:56 \nUrlmon.dll.mui| 11.0.9600.20016| 54,272| 21-Apr-21| 1:57 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 2:37 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 1:57 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 1:58 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 1:59 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 1:59 \nUrlmon.dll.mui| 11.0.9600.20016| 45,056| 21-Apr-21| 2:00 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:00 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:01 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:02 \nUrlmon.dll.mui| 11.0.9600.20016| 39,936| 21-Apr-21| 2:02 \nUrlmon.dll.mui| 11.0.9600.20016| 39,424| 21-Apr-21| 2:03 \nUrlmon.dll.mui| 11.0.9600.20016| 47,616| 21-Apr-21| 2:04 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:05 \nUrlmon.dll.mui| 11.0.9600.20016| 51,200| 21-Apr-21| 2:05 \nUrlmon.dll.mui| 11.0.9600.20016| 50,688| 21-Apr-21| 2:06 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:06 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:07 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:08 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:08 \nUrlmon.dll.mui| 11.0.9600.20016| 50,176| 21-Apr-21| 2:09 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:10 \nUrlmon.dll.mui| 11.0.9600.20016| 49,664| 21-Apr-21| 2:10 \nUrlmon.dll.mui| 11.0.9600.20016| 48,640| 21-Apr-21| 2:11 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 2:11 \nUrlmon.dll.mui| 11.0.9600.20016| 49,152| 21-Apr-21| 2:12 \nUrlmon.dll.mui| 11.0.9600.20016| 48,128| 21-Apr-21| 2:13 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 2:13 \nUrlmon.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 2:14 \nJsproxy.dll| 11.0.9600.20016| 47,104| 15-Apr-21| 3:50 \nWininet.dll| 11.0.9600.20016| 4,388,352| 15-Apr-21| 3:15 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,176| 21-Apr-21| 1:54 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 1:54 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,928| 21-Apr-21| 1:55 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,880| 21-Apr-21| 1:56 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,048| 21-Apr-21| 1:56 \nInetcpl.cpl.mui| 11.0.9600.20016| 138,240| 21-Apr-21| 1:57 \nInetcpl.cpl.mui| 11.0.9600.20016| 114,688| 21-Apr-21| 2:37 \nInetcpl.cpl.mui| 11.0.9600.20016| 131,584| 21-Apr-21| 1:57 \nInetcpl.cpl.mui| 11.0.9600.20016| 117,760| 21-Apr-21| 1:58 \nInetcpl.cpl.mui| 11.0.9600.20016| 122,368| 21-Apr-21| 1:59 \nInetcpl.cpl.mui| 11.0.9600.20016| 134,144| 21-Apr-21| 1:59 \nInetcpl.cpl.mui| 11.0.9600.20016| 107,008| 21-Apr-21| 2:00 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 2:01 \nInetcpl.cpl.mui| 11.0.9600.20016| 127,488| 21-Apr-21| 2:01 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,512| 21-Apr-21| 2:02 \nInetcpl.cpl.mui| 11.0.9600.20016| 88,576| 21-Apr-21| 2:02 \nInetcpl.cpl.mui| 11.0.9600.20016| 82,944| 21-Apr-21| 2:03 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 2:03 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,392| 21-Apr-21| 2:04 \nInetcpl.cpl.mui| 11.0.9600.20016| 120,320| 21-Apr-21| 2:05 \nInetcpl.cpl.mui| 11.0.9600.20016| 130,560| 21-Apr-21| 2:05 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:06 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,952| 21-Apr-21| 2:06 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:07 \nInetcpl.cpl.mui| 11.0.9600.20016| 128,000| 21-Apr-21| 2:08 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:08 \nInetcpl.cpl.mui| 11.0.9600.20016| 129,024| 21-Apr-21| 2:09 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:09 \nInetcpl.cpl.mui| 11.0.9600.20016| 124,416| 21-Apr-21| 2:10 \nInetcpl.cpl.mui| 11.0.9600.20016| 121,856| 21-Apr-21| 2:11 \nInetcpl.cpl.mui| 11.0.9600.20016| 115,712| 21-Apr-21| 2:11 \nInetcpl.cpl.mui| 11.0.9600.20016| 123,904| 21-Apr-21| 2:12 \nInetcpl.cpl.mui| 11.0.9600.20016| 125,440| 21-Apr-21| 2:13 \nInetcpl.cpl.mui| 11.0.9600.20016| 72,704| 21-Apr-21| 2:13 \nInetcpl.cpl.mui| 11.0.9600.20016| 73,728| 21-Apr-21| 2:14 \nMsfeedsbs.dll| 11.0.9600.20016| 52,736| 15-Apr-21| 3:34 \nMsfeedsbs.mof| Not Applicable| 1,574| 15-Apr-21| 2:02 \nMsfeedssync.exe| 11.0.9600.20016| 11,776| 15-Apr-21| 3:56 \nIeproxy.dll| 11.0.9600.20016| 310,784| 15-Apr-21| 3:05 \nIeshims.dll| 11.0.9600.20016| 290,304| 15-Apr-21| 3:09 \nIertutil.dll| 11.0.9600.20016| 2,308,608| 15-Apr-21| 4:00 \nSqmapi.dll| 6.2.9200.16384| 228,248| 21-Apr-21| 1:52 \nIeframe.dll.mui| 11.0.9600.20016| 2,066,432| 21-Apr-21| 1:54 \nIeframe.dll.mui| 11.0.9600.20016| 2,121,216| 21-Apr-21| 1:55 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 1:55 \nIeframe.dll.mui| 11.0.9600.20016| 2,063,872| 21-Apr-21| 1:56 \nIeframe.dll.mui| 11.0.9600.20016| 2,314,240| 21-Apr-21| 1:57 \nIeframe.dll.mui| 11.0.9600.20016| 2,390,528| 21-Apr-21| 1:57 \nIeframe.dll.mui| 11.0.9600.20016| 2,033,152| 21-Apr-21| 2:37 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 1:58 \nIeframe.dll.mui| 11.0.9600.20016| 2,255,872| 21-Apr-21| 1:58 \nIeframe.dll.mui| 11.0.9600.20016| 2,061,312| 21-Apr-21| 1:59 \nIeframe.dll.mui| 11.0.9600.20016| 2,326,016| 21-Apr-21| 2:00 \nIeframe.dll.mui| 11.0.9600.20016| 2,019,840| 21-Apr-21| 2:00 \nIeframe.dll.mui| 11.0.9600.20016| 2,071,040| 21-Apr-21| 2:01 \nIeframe.dll.mui| 11.0.9600.20016| 2,082,816| 21-Apr-21| 2:01 \nIeframe.dll.mui| 11.0.9600.20016| 2,307,584| 21-Apr-21| 2:02 \nIeframe.dll.mui| 11.0.9600.20016| 2,170,368| 21-Apr-21| 2:03 \nIeframe.dll.mui| 11.0.9600.20016| 2,153,984| 21-Apr-21| 2:03 \nIeframe.dll.mui| 11.0.9600.20016| 2,291,712| 21-Apr-21| 2:04 \nIeframe.dll.mui| 11.0.9600.20016| 2,283,520| 21-Apr-21| 2:04 \nIeframe.dll.mui| 11.0.9600.20016| 2,052,096| 21-Apr-21| 2:05 \nIeframe.dll.mui| 11.0.9600.20016| 2,301,952| 21-Apr-21| 2:06 \nIeframe.dll.mui| 11.0.9600.20016| 2,093,056| 21-Apr-21| 2:06 \nIeframe.dll.mui| 11.0.9600.20016| 2,075,648| 21-Apr-21| 2:07 \nIeframe.dll.mui| 11.0.9600.20016| 2,299,392| 21-Apr-21| 2:07 \nIeframe.dll.mui| 11.0.9600.20016| 2,094,592| 21-Apr-21| 2:08 \nIeframe.dll.mui| 11.0.9600.20016| 2,316,800| 21-Apr-21| 2:09 \nIeframe.dll.mui| 11.0.9600.20016| 2,305,536| 21-Apr-21| 2:09 \nIeframe.dll.mui| 11.0.9600.20016| 2,278,912| 21-Apr-21| 2:10 \nIeframe.dll.mui| 11.0.9600.20016| 2,285,568| 21-Apr-21| 2:10 \nIeframe.dll.mui| 11.0.9600.20016| 2,060,288| 21-Apr-21| 2:11 \nIeframe.dll.mui| 11.0.9600.20016| 2,315,776| 21-Apr-21| 2:12 \nIeframe.dll.mui| 11.0.9600.20016| 2,279,424| 21-Apr-21| 2:12 \nIeframe.dll.mui| 11.0.9600.20016| 2,324,992| 21-Apr-21| 2:13 \nIeframe.dll.mui| 11.0.9600.20016| 2,098,176| 21-Apr-21| 2:13 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 2:14 \nIeframe.dll.mui| 11.0.9600.20016| 1,890,304| 21-Apr-21| 2:15 \nJscript9.dll.mui| 11.0.9600.20016| 29,184| 21-Apr-21| 1:54 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 1:54 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 1:55 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 1:56 \nJscript9.dll.mui| 11.0.9600.20016| 35,328| 21-Apr-21| 1:56 \nJscript9.dll.mui| 11.0.9600.20016| 37,888| 21-Apr-21| 1:57 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:37 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 1:57 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 1:58 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 1:59 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 1:59 \nJscript9.dll.mui| 11.0.9600.20016| 27,648| 21-Apr-21| 2:00 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:00 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 2:01 \nJscript9.dll.mui| 11.0.9600.20016| 33,792| 21-Apr-21| 2:02 \nJscript9.dll.mui| 11.0.9600.20016| 23,040| 21-Apr-21| 2:02 \nJscript9.dll.mui| 11.0.9600.20016| 22,016| 21-Apr-21| 2:03 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:03 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:04 \nJscript9.dll.mui| 11.0.9600.20016| 31,232| 21-Apr-21| 2:05 \nJscript9.dll.mui| 11.0.9600.20016| 34,304| 21-Apr-21| 2:05 \nJscript9.dll.mui| 11.0.9600.20016| 35,840| 21-Apr-21| 2:06 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 2:06 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 2:07 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:08 \nJscript9.dll.mui| 11.0.9600.20016| 34,816| 21-Apr-21| 2:08 \nJscript9.dll.mui| 11.0.9600.20016| 33,280| 21-Apr-21| 2:09 \nJscript9.dll.mui| 11.0.9600.20016| 32,256| 21-Apr-21| 2:09 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:10 \nJscript9.dll.mui| 11.0.9600.20016| 32,768| 21-Apr-21| 2:11 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:11 \nJscript9.dll.mui| 11.0.9600.20016| 30,720| 21-Apr-21| 2:12 \nJscript9.dll.mui| 11.0.9600.20016| 29,696| 21-Apr-21| 2:12 \nJscript9.dll.mui| 11.0.9600.20016| 16,384| 21-Apr-21| 2:13 \nJscript9.dll.mui| 11.0.9600.20016| 16,896| 21-Apr-21| 2:14 \n \n### **Windows 7 and Windows Server 2008 R2**\n\n### \n\n__\n\nInternet Explorer 11 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:13| 1,343,488 \niexplore.exe| 11.0.9600.20016| 19-Apr-2021| 18:49| 810,400 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 31,744 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 39,424 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 32,768 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 37,376 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 38,400 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 30,720 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 25,600 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 24,576 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 20,992 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 21,504 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 21,504 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 46,592 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 56,320 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 57,856 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:54| 49,664 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 47,616 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 49,152 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 55,296 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 45,056 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,424 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 35,840 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 53,760 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 30,720 \ninetcpl.cpl| 11.0.9600.20016| 14-Apr-2021| 20:26| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 10,752 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 307,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 293,888 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 290,304 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 299,008 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 303,104 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 282,112 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 283,648 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 291,840 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 299,520 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 275,968 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 293,376 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 258,048 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 256,512 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 288,256 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 285,184 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 297,472 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 288,768 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 286,208 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 281,600 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 286,720 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 292,352 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 242,176 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 243,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 243,200 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 73,728 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 74,240 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 78,848 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 61,440 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 74,752 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 62,464 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 75,264 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 72,192 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 73,216 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 41,472 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 37,888 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 74,240 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 70,656 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 71,168 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 71,680 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 71,168 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 69,632 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 59,904 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 69,120 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 29,696 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 30,720 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 60,416 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20016| 14-Apr-2021| 20:37| 230,912 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 46,080 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 51,712 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 54,272 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 45,056 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,936 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,424 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 51,200 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 35,328 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 11,264 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 9,216 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 6,656 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:15| 4,388,352 \njsproxy.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 73,728 \niedkcs32.dll| 18.0.9600.20016| 19-Apr-2021| 18:50| 341,928 \ninstall.ins| Not versioned| 14-Apr-2021| 18:43| 464 \nieapfltr.dat| 10.0.9301.0| 31-Mar-2021| 18:59| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:06| 710,656 \ntdc.ocx| 11.0.9600.20016| 14-Apr-2021| 20:36| 73,728 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20016| 14-Apr-2021| 20:57| 489,472 \niedvtool.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 772,608 \nDiagnosticsHub_is.dll| 11.0.9600.20016| 14-Apr-2021| 20:59| 38,912 \ndxtmsft.dll| 11.0.9600.20016| 14-Apr-2021| 20:40| 415,744 \ndxtrans.dll| 11.0.9600.20016| 14-Apr-2021| 20:32| 280,064 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 14-Apr-2021| 18:53| 11,892 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20016| 14-Apr-2021| 20:39| 175,104 \nF12Resources.dll| 11.0.9600.20016| 14-Apr-2021| 21:01| 10,948,096 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 2,048 \nF12Tools.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 256,000 \nF12.dll| 11.0.9600.20016| 14-Apr-2021| 20:30| 1,207,808 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 696,320 \nmsfeeds.mof| Not versioned| 14-Apr-2021| 19:02| 1,518 \nmsfeedsbs.mof| Not versioned| 14-Apr-2021| 19:02| 1,574 \nmsfeedsbs.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 52,736 \nmsfeedssync.exe| 11.0.9600.20016| 14-Apr-2021| 20:56| 11,776 \nhtml.iec| 2019.0.0.20016| 14-Apr-2021| 20:55| 341,504 \nmshtmled.dll| 11.0.9600.20016| 14-Apr-2021| 20:33| 76,800 \nmshtmlmedia.dll| 11.0.9600.20016| 14-Apr-2021| 20:25| 1,155,584 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 20,295,680 \nmshtml.tlb| 11.0.9600.20016| 14-Apr-2021| 21:05| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 14-Apr-2021| 18:54| 3,228 \nieetwcollector.exe| 11.0.9600.20016| 14-Apr-2021| 20:47| 104,960 \nieetwproxystub.dll| 11.0.9600.20016| 14-Apr-2021| 20:54| 47,616 \nieetwcollectorres.dll| 11.0.9600.20016| 14-Apr-2021| 21:05| 4,096 \nielowutil.exe| 11.0.9600.20016| 14-Apr-2021| 20:48| 221,184 \nieproxy.dll| 11.0.9600.20016| 14-Apr-2021| 20:05| 310,784 \nIEShims.dll| 11.0.9600.20016| 14-Apr-2021| 20:09| 290,304 \nWindows Pop-up Blocked.wav| Not versioned| 31-Mar-2021| 19:10| 85,548 \nWindows Information Bar.wav| Not versioned| 31-Mar-2021| 19:10| 23,308 \nWindows Feed Discovered.wav| Not versioned| 31-Mar-2021| 19:10| 19,884 \nWindows Navigation Start.wav| Not versioned| 31-Mar-2021| 19:10| 11,340 \nbing.ico| Not versioned| 31-Mar-2021| 19:05| 5,430 \nieUnatt.exe| 11.0.9600.20016| 14-Apr-2021| 20:47| 115,712 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 19-Apr-2021| 20:53| 2,956 \njsprofilerui.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 579,584 \nMemoryAnalyzer.dll| 11.0.9600.20016| 14-Apr-2021| 20:43| 1,399,296 \nMshtmlDac.dll| 11.0.9600.20016| 14-Apr-2021| 20:53| 64,000 \nnetworkinspection.dll| 11.0.9600.20016| 14-Apr-2021| 20:31| 1,075,200 \noccache.dll| 11.0.9600.20016| 14-Apr-2021| 20:31| 130,048 \ndesktop.ini| Not versioned| 31-Mar-2021| 19:01| 65 \nwebcheck.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 230,400 \ndesktop.ini| Not versioned| 31-Mar-2021| 19:01| 65 \nmsrating.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 168,960 \nicrav03.rat| Not versioned| 31-Mar-2021| 19:01| 8,798 \nticrf.rat| Not versioned| 31-Mar-2021| 19:01| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 19-Apr-2021| 18:49| 228,256 \nie4uinit.exe| 11.0.9600.20016| 14-Apr-2021| 20:25| 692,224 \niernonce.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 30,720 \niesetup.dll| 11.0.9600.20016| 14-Apr-2021| 20:56| 62,464 \nieuinit.inf| Not versioned| 14-Apr-2021| 19:46| 16,303 \ninseng.dll| 11.0.9600.20016| 14-Apr-2021| 20:35| 91,136 \nTimeline.dll| 11.0.9600.20016| 14-Apr-2021| 20:35| 154,112 \nTimeline_is.dll| 11.0.9600.20016| 14-Apr-2021| 20:49| 124,928 \nTimeline.cpu.xml| Not versioned| 31-Mar-2021| 19:01| 3,197 \nVGX.dll| 11.0.9600.20016| 14-Apr-2021| 20:33| 818,176 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,066,432 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,121,216 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 2,063,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,314,240 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,390,528 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:54| 2,033,152 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 2,255,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,061,312 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,326,016 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,019,840 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,071,040 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,082,816 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,170,368 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,153,984 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,291,712 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,283,520 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,052,096 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,301,952 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,093,056 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,299,392 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,094,592 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,316,800 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,305,536 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,278,912 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,285,568 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,060,288 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,315,776 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,279,424 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,324,992 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 2,098,176 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 3,072 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 13,881,856 \nieui.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 476,160 \nieframe.ptxml| Not versioned| 14-Apr-2021| 18:53| 24,486 \nieinstal.exe| 11.0.9600.20016| 14-Apr-2021| 20:32| 475,648 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:51| 463,373 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:52| 751,388 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:53| 526,344 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:54| 499,706 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:55| 552,387 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:55| 944,610 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:53| 457,561 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:57| 543,995 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:57| 751,319 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:58| 526,607 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:58| 575,889 \nInetRes.adml| Not versioned| 19-Apr-2021| 18:59| 463,373 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:00| 751,282 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:00| 570,785 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:01| 548,168 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:02| 639,283 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:03| 525,516 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:03| 751,198 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:04| 751,378 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:05| 488,540 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:05| 548,542 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:06| 559,390 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:06| 535,119 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:07| 541,509 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:08| 751,243 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:08| 804,521 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:09| 751,361 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:10| 751,476 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:10| 751,295 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:11| 503,958 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:11| 751,470 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:12| 521,635 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:13| 751,329 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:13| 420,094 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:14| 436,663 \nInetRes.adml| Not versioned| 19-Apr-2021| 19:15| 436,663 \ninetres.admx| Not versioned| 31-Mar-2021| 19:16| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20016| 14-Apr-2021| 20:43| 668,672 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 29,184 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 35,328 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 37,888 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 27,648 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 33,792 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 23,040 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 22,016 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 31,232 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 35,840 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 34,816 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 32,256 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 30,720 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 16,384 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 16,896 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 16,896 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 4,112,384 \njscript9diag.dll| 11.0.9600.20016| 14-Apr-2021| 20:46| 620,032 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:49| 653,824 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:58| 498,176 \n \n### \n\n__\n\nInternet Explorer 11 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:35| 1,569,280 \niexplore.exe| 11.0.9600.20016| 19-Apr-2021| 20:22| 810,408 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 31,744 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 39,424 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 32,768 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 37,376 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 38,400 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 30,720 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 25,600 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 24,576 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 20,992 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 21,504 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 21,504 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 46,592 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 56,320 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 57,856 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 49,664 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 47,616 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 49,152 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 55,296 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 45,056 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 39,424 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 35,840 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 53,760 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:46| 30,720 \ninetcpl.cpl| 11.0.9600.20016| 14-Apr-2021| 20:47| 2,132,992 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 10,752 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 307,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 293,888 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 290,304 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 299,008 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 303,104 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 282,112 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 283,648 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 291,840 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 299,520 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 275,968 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 293,376 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 258,048 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 256,512 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 288,256 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 285,184 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 297,472 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 288,768 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 286,208 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 281,600 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 286,720 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 292,352 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 242,176 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 243,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:46| 243,200 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 73,728 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 74,240 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 78,848 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 61,440 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 74,752 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 62,464 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 75,264 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 72,192 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 73,216 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 41,472 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 37,888 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 67,584 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 74,240 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 70,656 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 71,168 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 71,680 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 71,168 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 69,632 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 68,608 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 68,096 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 59,904 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 65,536 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 69,120 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 29,696 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 30,720 \nF12Resources.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 30,720 \nJavaScriptCollectionAgent.dll| 11.0.9600.20016| 14-Apr-2021| 21:04| 77,824 \nDiagnosticsHub.ScriptedSandboxPlugin.dll| 11.0.9600.20016| 14-Apr-2021| 21:05| 276,480 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 46,080 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 51,712 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 54,272 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 45,056 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 39,936 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 39,424 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 51,200 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 35,328 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 11,264 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 9,216 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:46| 6,656 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:55| 4,859,904 \njsproxy.dll| 11.0.9600.20016| 14-Apr-2021| 21:23| 54,784 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 73,728 \niedkcs32.dll| 18.0.9600.20016| 19-Apr-2021| 20:22| 390,568 \ninstall.ins| Not versioned| 14-Apr-2021| 18:47| 464 \nieapfltr.dat| 10.0.9301.0| 22-Mar-2021| 18:09| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:19| 800,768 \ntdc.ocx| 11.0.9600.20016| 14-Apr-2021| 21:04| 88,064 \nDiagnosticsHub.DataWarehouse.dll| 11.0.9600.20016| 14-Apr-2021| 21:32| 666,624 \niedvtool.dll| 11.0.9600.20016| 14-Apr-2021| 23:21| 950,784 \nDiagnosticsHub_is.dll| 11.0.9600.20016| 14-Apr-2021| 21:34| 50,176 \ndxtmsft.dll| 11.0.9600.20016| 14-Apr-2021| 21:10| 491,008 \ndxtrans.dll| 11.0.9600.20016| 14-Apr-2021| 20:58| 316,416 \nMicrosoft-Windows-IE-F12-Provider.ptxml| Not versioned| 14-Apr-2021| 18:45| 11,892 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 4,096 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 3,584 \nF12.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:46| 3,584 \nDiagnosticsTap.dll| 11.0.9600.20016| 14-Apr-2021| 21:08| 245,248 \nF12Resources.dll| 11.0.9600.20016| 14-Apr-2021| 21:37| 10,949,120 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 2,048 \nF12Tools.dll| 11.0.9600.20016| 14-Apr-2021| 21:07| 372,224 \nF12.dll| 11.0.9600.20016| 14-Apr-2021| 20:55| 1,422,848 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:48| 809,472 \nmsfeeds.mof| Not versioned| 14-Apr-2021| 18:59| 1,518 \nmsfeedsbs.mof| Not versioned| 14-Apr-2021| 18:59| 1,574 \nmsfeedsbs.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 60,416 \nmsfeedssync.exe| 11.0.9600.20016| 14-Apr-2021| 21:30| 13,312 \nhtml.iec| 2019.0.0.20016| 14-Apr-2021| 21:28| 417,280 \nmshtmled.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 92,672 \nmshtmlmedia.dll| 11.0.9600.20016| 14-Apr-2021| 20:47| 1,360,384 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 23:21| 25,760,768 \nmshtml.tlb| 11.0.9600.20016| 14-Apr-2021| 21:42| 2,724,864 \nMicrosoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 14-Apr-2021| 18:46| 3,228 \nieetwcollector.exe| 11.0.9600.20016| 14-Apr-2021| 21:19| 116,224 \nieetwproxystub.dll| 11.0.9600.20016| 14-Apr-2021| 21:29| 48,640 \nieetwcollectorres.dll| 11.0.9600.20016| 14-Apr-2021| 21:41| 4,096 \nielowutil.exe| 11.0.9600.20016| 14-Apr-2021| 21:21| 222,720 \nieproxy.dll| 11.0.9600.20016| 14-Apr-2021| 20:17| 870,400 \nIEShims.dll| 11.0.9600.20016| 14-Apr-2021| 20:23| 387,072 \nWindows Pop-up Blocked.wav| Not versioned| 22-Mar-2021| 18:10| 85,548 \nWindows Information Bar.wav| Not versioned| 22-Mar-2021| 18:10| 23,308 \nWindows Feed Discovered.wav| Not versioned| 22-Mar-2021| 18:10| 19,884 \nWindows Navigation Start.wav| Not versioned| 22-Mar-2021| 18:10| 11,340 \nbing.ico| Not versioned| 22-Mar-2021| 18:09| 5,430 \nieUnatt.exe| 11.0.9600.20016| 14-Apr-2021| 21:19| 144,384 \nMicrosoft-Windows-IE-InternetExplorer-ppdlic.xrm-ms| Not versioned| 19-Apr-2021| 21:45| 2,956 \njsprofilerui.dll| 11.0.9600.20016| 14-Apr-2021| 21:02| 628,736 \nMemoryAnalyzer.dll| 11.0.9600.20016| 14-Apr-2021| 21:17| 1,862,656 \nMshtmlDac.dll| 11.0.9600.20016| 14-Apr-2021| 21:28| 88,064 \nnetworkinspection.dll| 11.0.9600.20016| 14-Apr-2021| 20:56| 1,217,024 \noccache.dll| 11.0.9600.20016| 14-Apr-2021| 20:57| 152,064 \ndesktop.ini| Not versioned| 22-Mar-2021| 18:09| 65 \nwebcheck.dll| 11.0.9600.20016| 14-Apr-2021| 20:49| 262,144 \ndesktop.ini| Not versioned| 22-Mar-2021| 18:09| 65 \nmsrating.dll| 11.0.9600.20016| 14-Apr-2021| 21:01| 199,680 \nicrav03.rat| Not versioned| 22-Mar-2021| 18:09| 8,798 \nticrf.rat| Not versioned| 22-Mar-2021| 18:09| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:35| 2,916,352 \nsqmapi.dll| 6.2.9200.16384| 19-Apr-2021| 20:22| 286,112 \nie4uinit.exe| 11.0.9600.20016| 14-Apr-2021| 20:47| 728,064 \niernonce.dll| 11.0.9600.20016| 14-Apr-2021| 21:22| 34,304 \niesetup.dll| 11.0.9600.20016| 14-Apr-2021| 21:29| 66,560 \nieuinit.inf| Not versioned| 14-Apr-2021| 19:59| 16,303 \ninseng.dll| 11.0.9600.20016| 14-Apr-2021| 21:03| 107,520 \nTimeline.dll| 11.0.9600.20016| 14-Apr-2021| 21:02| 219,648 \nTimeline_is.dll| 11.0.9600.20016| 14-Apr-2021| 21:22| 172,032 \nTimeline.cpu.xml| Not versioned| 22-Mar-2021| 18:09| 3,197 \nVGX.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 1,018,880 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 2,066,432 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 2,121,216 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 2,063,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 2,314,240 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 2,390,528 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 2,033,152 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 2,255,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 2,061,312 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 2,326,016 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 2,019,840 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 2,071,040 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 2,082,816 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 2,170,368 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 2,153,984 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 2,291,712 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 2,283,520 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 2,052,096 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 2,301,952 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 2,093,056 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 2,299,392 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 2,094,592 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 2,316,800 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 2,305,536 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 2,278,912 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 2,285,568 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 2,060,288 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 2,315,776 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 2,279,424 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 2,324,992 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 2,098,176 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:46| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 3,072 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 21:06| 15,506,944 \nieui.dll| 11.0.9600.20016| 14-Apr-2021| 21:20| 615,936 \nieframe.ptxml| Not versioned| 14-Apr-2021| 18:45| 24,486 \nieinstal.exe| 11.0.9600.20016| 14-Apr-2021| 20:58| 492,032 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:24| 463,373 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:25| 751,363 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:26| 526,343 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:26| 499,703 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:27| 552,386 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:27| 944,608 \nInetRes.adml| Not versioned| 19-Apr-2021| 21:45| 457,561 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:28| 543,995 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:29| 751,276 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:29| 526,607 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:30| 575,890 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:30| 463,373 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:31| 751,511 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:32| 570,786 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:32| 548,169 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:33| 639,283 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:34| 525,516 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:34| 751,452 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:35| 751,386 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:35| 488,537 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:36| 548,544 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:37| 559,394 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:37| 535,118 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:38| 541,505 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:38| 751,357 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:39| 804,522 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:40| 751,502 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:40| 751,388 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:41| 751,249 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:42| 503,962 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:42| 751,475 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:43| 521,632 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:43| 751,498 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:44| 420,094 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:45| 436,663 \nInetRes.adml| Not versioned| 19-Apr-2021| 20:45| 436,663 \ninetres.admx| Not versioned| 22-Mar-2021| 18:12| 1,678,023 \nMsSpellCheckingFacility.exe| 6.3.9600.20016| 14-Apr-2021| 21:13| 970,752 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:24| 29,184 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:25| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:26| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 35,328 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:27| 37,888 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 21:45| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:28| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:29| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:30| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 27,648 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:31| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:32| 33,792 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:33| 23,040 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 22,016 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:34| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:35| 31,232 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:36| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 35,840 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:37| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:38| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:39| 34,816 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:40| 32,256 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:41| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:42| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 30,720 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:43| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:44| 16,384 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 16,896 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:45| 16,896 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 21:40| 5,499,904 \njscript9diag.dll| 11.0.9600.20016| 14-Apr-2021| 21:19| 814,592 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 21:19| 785,408 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 21:29| 581,120 \niexplore.exe| 11.0.9600.20016| 19-Apr-2021| 18:49| 810,400 \ntdc.ocx| 11.0.9600.20016| 14-Apr-2021| 20:36| 73,728 \ndxtmsft.dll| 11.0.9600.20016| 14-Apr-2021| 20:40| 415,744 \ndxtrans.dll| 11.0.9600.20016| 14-Apr-2021| 20:32| 280,064 \nmsfeeds.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 696,320 \nmsfeeds.mof| Not versioned| 14-Apr-2021| 19:02| 1,518 \nmshtmled.dll| 11.0.9600.20016| 14-Apr-2021| 20:33| 76,800 \nmshtmlmedia.dll| 11.0.9600.20016| 14-Apr-2021| 20:25| 1,155,584 \nmshtml.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 20,295,680 \nmshtml.tlb| 11.0.9600.20016| 14-Apr-2021| 21:05| 2,724,864 \nwow64_Microsoft-Windows-IE-HTMLRendering.ptxml| Not versioned| 14-Apr-2021| 18:56| 3,228 \nieetwproxystub.dll| 11.0.9600.20016| 14-Apr-2021| 20:54| 47,616 \nieUnatt.exe| 11.0.9600.20016| 14-Apr-2021| 20:47| 115,712 \noccache.dll| 11.0.9600.20016| 14-Apr-2021| 20:31| 130,048 \nwebcheck.dll| 11.0.9600.20016| 14-Apr-2021| 20:26| 230,400 \niernonce.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 30,720 \niesetup.dll| 11.0.9600.20016| 14-Apr-2021| 20:56| 62,464 \nieuinit.inf| Not versioned| 14-Apr-2021| 19:46| 16,303 \nieframe.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 13,881,856 \nieui.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 476,160 \nie9props.propdesc| Not versioned| 31-Mar-2021| 19:04| 2,843 \nwow64_ieframe.ptxml| Not versioned| 14-Apr-2021| 18:56| 24,486 \njscript9.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 4,112,384 \njscript9diag.dll| 11.0.9600.20016| 14-Apr-2021| 20:46| 620,032 \njscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:49| 653,824 \nvbscript.dll| 5.8.9600.20016| 14-Apr-2021| 20:58| 498,176 \nurlmon.dll| 11.0.9600.20016| 14-Apr-2021| 20:13| 1,343,488 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 31,744 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 39,424 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 32,768 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 37,376 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 38,400 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 30,720 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 35,328 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 36,864 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 25,600 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 24,576 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 36,352 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 35,840 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 34,816 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 33,280 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 34,304 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 20,992 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 21,504 \nwebcheck.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 21,504 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 46,592 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 56,320 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 57,856 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:54| 49,664 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 47,616 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 49,152 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 55,296 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 45,056 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,424 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 35,840 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 53,760 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 54,272 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 51,200 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 53,248 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 52,736 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 51,712 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 50,688 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 50,176 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 30,720 \nwininet.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 30,720 \ninetcpl.cpl| 11.0.9600.20016| 14-Apr-2021| 20:26| 2,058,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 10,752 \nDiagnosticsTap.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 10,752 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 307,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 293,888 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 290,304 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 299,008 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 303,104 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 282,112 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 283,648 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 291,840 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 299,520 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 275,968 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 293,376 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 296,960 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 258,048 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 256,512 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 289,280 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 288,256 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 285,184 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 297,472 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 295,424 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 294,400 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 292,864 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 290,816 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 288,768 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 286,208 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 281,600 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 286,720 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 292,352 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 242,176 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 243,200 \nmshtml.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 243,200 \nJavaScriptCollectionAgent.dll| 11.0.9600.20016| 14-Apr-2021| 20:36| 60,416 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 46,080 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 51,712 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 54,272 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 45,056 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,936 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 39,424 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 47,616 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 51,200 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 50,688 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 50,176 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 49,664 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 48,640 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 49,152 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 48,128 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 35,328 \nurlmon.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 35,328 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 11,264 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 9,216 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 7,680 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 10,752 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 9,728 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 10,240 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 6,656 \noccache.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 6,656 \nwininet.dll| 11.0.9600.20016| 14-Apr-2021| 20:15| 4,388,352 \njsproxy.dll| 11.0.9600.20016| 14-Apr-2021| 20:50| 47,104 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 114,176 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 124,928 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 122,880 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 130,048 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 138,240 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 114,688 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 131,584 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 117,760 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 122,368 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 134,144 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 107,008 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 127,488 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 128,512 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 88,576 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 82,944 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 123,392 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 120,320 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 130,560 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 125,952 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 128,000 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 129,024 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 124,416 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 121,856 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 115,712 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 123,904 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 125,440 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 72,704 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 73,728 \ninetcpl.cpl.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 73,728 \niedkcs32.dll| 18.0.9600.20016| 19-Apr-2021| 18:50| 341,928 \ninstall.ins| Not versioned| 14-Apr-2021| 18:43| 464 \nieapfltr.dat| 10.0.9301.0| 31-Mar-2021| 18:59| 616,104 \nieapfltr.dll| 11.0.9600.20016| 14-Apr-2021| 20:06| 710,656 \niedvtool.dll| 11.0.9600.20016| 14-Apr-2021| 21:33| 772,608 \nDiagnosticsTap.dll| 11.0.9600.20016| 14-Apr-2021| 20:39| 175,104 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 2,048 \nF12Tools.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 2,048 \nF12Tools.dll| 11.0.9600.20016| 14-Apr-2021| 20:38| 256,000 \nmsfeedsbs.mof| Not versioned| 14-Apr-2021| 19:02| 1,574 \nmsfeedsbs.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 52,736 \nmsfeedssync.exe| 11.0.9600.20016| 14-Apr-2021| 20:56| 11,776 \nhtml.iec| 2019.0.0.20016| 14-Apr-2021| 20:55| 341,504 \nielowutil.exe| 11.0.9600.20016| 14-Apr-2021| 20:48| 221,184 \nieproxy.dll| 11.0.9600.20016| 14-Apr-2021| 20:05| 310,784 \nIEShims.dll| 11.0.9600.20016| 14-Apr-2021| 20:09| 290,304 \njsprofilerui.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 579,584 \nMshtmlDac.dll| 11.0.9600.20016| 14-Apr-2021| 20:53| 64,000 \nnetworkinspection.dll| 11.0.9600.20016| 14-Apr-2021| 20:31| 1,075,200 \nmsrating.dll| 11.0.9600.20016| 14-Apr-2021| 20:34| 168,960 \nicrav03.rat| Not versioned| 31-Mar-2021| 19:01| 8,798 \nticrf.rat| Not versioned| 31-Mar-2021| 19:01| 1,988 \niertutil.dll| 11.0.9600.20016| 14-Apr-2021| 21:00| 2,308,608 \nsqmapi.dll| 6.2.9200.16384| 19-Apr-2021| 18:49| 228,256 \ninseng.dll| 11.0.9600.20016| 14-Apr-2021| 20:35| 91,136 \nVGX.dll| 11.0.9600.20016| 14-Apr-2021| 20:33| 818,176 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,066,432 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:51| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 2,121,216 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 2,063,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 2,314,240 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,390,528 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:54| 2,033,152 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 2,255,872 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 2,061,312 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,326,016 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 2,019,840 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 2,071,040 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,082,816 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 2,307,584 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 2,170,368 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,153,984 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 2,291,712 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 2,283,520 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,052,096 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 2,301,952 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 2,093,056 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,075,648 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 2,299,392 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 2,094,592 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,316,800 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 2,305,536 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,278,912 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 2,285,568 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 3,584 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 2,060,288 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,315,776 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 2,279,424 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 2,324,992 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 2,098,176 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 3,072 \nieframe.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 1,890,304 \nieui.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 3,072 \nieinstal.exe| 11.0.9600.20016| 14-Apr-2021| 20:32| 475,648 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 29,184 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:52| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:53| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:54| 35,328 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:55| 37,888 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 20:53| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:56| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:57| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:58| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 18:59| 27,648 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:00| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:01| 33,792 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 23,040 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:02| 22,016 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:03| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:04| 31,232 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:05| 34,304 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 35,840 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:06| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:07| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:08| 34,816 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 33,280 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:09| 32,256 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:10| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 32,768 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:11| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:12| 30,720 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 29,696 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:13| 16,384 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:14| 16,896 \njscript9.dll.mui| 11.0.9600.20016| 19-Apr-2021| 19:15| 16,896 \n \n### **Windows Server 2008**\n\n### \n\n__\n\nInternet Explorer 9 on all supported x86-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21542| 15-Apr-2021| 14:36| 1,141,248 \niexplore.exe| 9.0.8112.21542| 15-Apr-2021| 14:46| 751,520 \ninetcpl.cpl| 9.0.8112.21542| 15-Apr-2021| 14:35| 1,427,968 \nwininet.dll| 9.0.8112.21542| 15-Apr-2021| 14:36| 1,132,032 \njsproxy.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 75,776 \nWininetPlugin.dll| 1.0.0.1| 15-Apr-2021| 14:35| 66,048 \ntdc.ocx| 9.0.8112.21542| 15-Apr-2021| 14:35| 63,488 \niedvtool.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 678,912 \ndxtmsft.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 354,304 \ndxtrans.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 223,744 \nmsfeeds.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 607,744 \nmsfeeds.mof| Not versioned| 15-Apr-2021| 14:16| 1,518 \nmsfeedsbs.mof| Not versioned| 15-Apr-2021| 14:16| 1,574 \nmsfeedsbs.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 41,472 \nmsfeedssync.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 10,752 \nmshta.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 11,776 \nhtml.iec| 2019.0.0.21546| 15-Apr-2021| 14:37| 367,616 \nmshtmled.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 72,704 \nmshtml.dll| 9.0.8112.21542| 15-Apr-2021| 14:40| 12,844,544 \nmshtml.tlb| 9.0.8112.21542| 15-Apr-2021| 14:35| 2,382,848 \nielowutil.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 223,232 \nieproxy.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 195,072 \nIEShims.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 194,560 \nExtExport.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 22,528 \nWindows Pop-up Blocked.wav| Not versioned| 11-Mar-2021| 0:00| 85,548 \nWindows Information Bar.wav| Not versioned| 11-Mar-2021| 0:00| 23,308 \nWindows Feed Discovered.wav| Not versioned| 11-Mar-2021| 0:00| 19,884 \nWindows Navigation Start.wav| Not versioned| 11-Mar-2021| 0:00| 11,340 \nieUnatt.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 142,848 \njsdbgui.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 387,584 \niertutil.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 15-Apr-2021| 14:46| 142,744 \nVGX.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 769,024 \nurl.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 231,936 \nieframe.dll| 9.0.8112.21542| 15-Apr-2021| 14:37| 9,757,696 \nieui.dll| 9.0.8112.21542| 15-Apr-2021| 14:34| 176,640 \nieinstal.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 474,624 \nInetRes.adml| Not versioned| 15-Apr-2021| 14:53| 393,813 \ninetres.admx| Not versioned| 11-Mar-2021| 0:10| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 104,448 \njscript.dll| 5.8.7601.21546| 15-Apr-2021| 14:35| 723,456 \njscript9.dll| 9.0.8112.21542| 15-Apr-2021| 14:41| 1,819,648 \nvbscript.dll| 5.8.7601.21546| 15-Apr-2021| 14:35| 433,664 \n \n### \n\n__\n\nInternet Explorer 9 on all supported x64-based versions\n\n**File name**| **File version**| **Date**| **Time**| **File size** \n---|---|---|---|--- \nurlmon.dll| 9.0.8112.21542| 15-Apr-2021| 15:35| 1,390,592 \niexplore.exe| 9.0.8112.21542| 15-Apr-2021| 15:51| 757,688 \ninetcpl.cpl| 9.0.8112.21542| 15-Apr-2021| 15:34| 1,494,528 \nwininet.dll| 9.0.8112.21542| 15-Apr-2021| 15:35| 1,394,688 \njsproxy.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 97,280 \nWininetPlugin.dll| 1.0.0.1| 15-Apr-2021| 15:34| 86,528 \ntdc.ocx| 9.0.8112.21542| 15-Apr-2021| 15:33| 76,800 \niedvtool.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 887,808 \ndxtmsft.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 452,608 \ndxtrans.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 281,600 \nmsfeeds.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 729,088 \nmsfeeds.mof| Not versioned| 15-Apr-2021| 15:13| 1,518 \nmsfeedsbs.mof| Not versioned| 15-Apr-2021| 15:13| 1,574 \nmsfeedsbs.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 55,296 \nmsfeedssync.exe| 9.0.8112.21542| 15-Apr-2021| 15:34| 11,264 \nmshta.exe| 9.0.8112.21542| 15-Apr-2021| 15:34| 12,800 \nhtml.iec| 2019.0.0.21546| 15-Apr-2021| 15:37| 448,512 \nmshtmled.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 96,256 \nmshtml.dll| 9.0.8112.21542| 15-Apr-2021| 15:43| 18,811,904 \nmshtml.tlb| 9.0.8112.21542| 15-Apr-2021| 15:34| 2,382,848 \nielowutil.exe| 9.0.8112.21542| 15-Apr-2021| 15:34| 223,744 \nieproxy.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 550,912 \nIEShims.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 305,664 \nWindows Pop-up Blocked.wav| Not versioned| 11-Mar-2021| 0:00| 85,548 \nWindows Information Bar.wav| Not versioned| 11-Mar-2021| 0:00| 23,308 \nWindows Feed Discovered.wav| Not versioned| 11-Mar-2021| 0:00| 19,884 \nWindows Navigation Start.wav| Not versioned| 11-Mar-2021| 0:00| 11,340 \nieUnatt.exe| 9.0.8112.21542| 15-Apr-2021| 15:34| 173,056 \njsdbgui.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 499,200 \niertutil.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 2,163,200 \nsqmapi.dll| 6.0.6000.16386| 15-Apr-2021| 15:51| 176,056 \nVGX.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 997,376 \nurl.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 237,056 \nieframe.dll| 9.0.8112.21542| 15-Apr-2021| 15:36| 10,944,000 \nieui.dll| 9.0.8112.21542| 15-Apr-2021| 15:32| 248,320 \nieinstal.exe| 9.0.8112.21542| 15-Apr-2021| 15:34| 490,496 \nInetRes.adml| Not versioned| 15-Apr-2021| 15:58| 393,813 \ninetres.admx| Not versioned| 11-Mar-2021| 0:10| 1,601,204 \njsdebuggeride.dll| 9.0.8112.21542| 15-Apr-2021| 15:34| 141,312 \njscript.dll| 5.8.7601.21546| 15-Apr-2021| 15:34| 818,176 \njscript9.dll| 9.0.8112.21542| 15-Apr-2021| 15:40| 2,358,784 \nvbscript.dll| 5.8.7601.21546| 15-Apr-2021| 15:34| 583,680 \niexplore.exe| 9.0.8112.21542| 15-Apr-2021| 14:46| 751,520 \nieUnatt.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 142,848 \nurlmon.dll| 9.0.8112.21542| 15-Apr-2021| 14:36| 1,141,248 \ninetcpl.cpl| 9.0.8112.21542| 15-Apr-2021| 14:35| 1,427,968 \nwininet.dll| 9.0.8112.21542| 15-Apr-2021| 14:36| 1,132,032 \njsproxy.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 75,776 \nWininetPlugin.dll| 1.0.0.1| 15-Apr-2021| 14:35| 66,048 \ntdc.ocx| 9.0.8112.21542| 15-Apr-2021| 14:35| 63,488 \niedvtool.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 678,912 \ndxtmsft.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 354,304 \ndxtrans.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 223,744 \nmsfeeds.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 607,744 \nmsfeeds.mof| Not versioned| 15-Apr-2021| 14:16| 1,518 \nmsfeedsbs.mof| Not versioned| 15-Apr-2021| 14:16| 1,574 \nmsfeedsbs.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 41,472 \nmsfeedssync.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 10,752 \nmshta.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 11,776 \nhtml.iec| 2019.0.0.21546| 15-Apr-2021| 14:37| 367,616 \nmshtmled.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 72,704 \nmshtml.dll| 9.0.8112.21542| 15-Apr-2021| 14:40| 12,844,544 \nmshtml.tlb| 9.0.8112.21542| 15-Apr-2021| 14:35| 2,382,848 \nielowutil.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 223,232 \nieproxy.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 195,072 \nIEShims.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 194,560 \nExtExport.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 22,528 \njsdbgui.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 387,584 \niertutil.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 1,808,384 \nsqmapi.dll| 6.0.6000.16386| 15-Apr-2021| 14:46| 142,744 \nVGX.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 769,024 \nurl.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 231,936 \nieframe.dll| 9.0.8112.21542| 15-Apr-2021| 14:37| 9,757,696 \nieui.dll| 9.0.8112.21542| 15-Apr-2021| 14:34| 176,640 \nieinstal.exe| 9.0.8112.21542| 15-Apr-2021| 14:35| 474,624 \njsdebuggeride.dll| 9.0.8112.21542| 15-Apr-2021| 14:35| 104,448 \njscript.dll| 5.8.7601.21546| 15-Apr-2021| 14:35| 723,456 \njscript9.dll| 9.0.8112.21542| 15-Apr-2021| 14:41| 1,819,648 \nvbscript.dll| 5.8.7601.21546| 15-Apr-2021| 14:35| 433,664 \n \n## **Information about protection and security**\n\n * Protect yourself online: [Windows Security support](<https://support.microsoft.com/hub/4099151/windows-security-help>)\n * Learn how we guard against cyber threats: [Microsoft Security](<https://www.microsoft.com/security>)\n\n## **References**\n\nLearn about the [terminology](<https://support.microsoft.com/help/824684>) that Microsoft uses to describe software updates.\n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "KB5003165: Cumulative security update for Internet Explorer: May 11, 2021", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003165", "href": "https://support.microsoft.com/en-us/help/5003165", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:39", "description": "None\n**Important: **Verify that** **you have installed the required updates listed in the **How to get this update** section before installing this update. \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows Server 2008 Service Pack 2 update history [home page](<https://support.microsoft.com/help/4343218>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5001389](<https://support.microsoft.com/help/5001389>) (released April 13, 2021) and addresses the following issues: \n\n * Security updates to Windows App Platform and Framework, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this update and restarting your device, you might receive the error, \u201cFailure to configure Windows updates. Reverting Changes. Do not turn off your computer\u201d, and the update might show as **Failed** in **Update History**.| This is expected in the following circumstances:\n\n * If you are installing this update on a device that is running an edition that is not supported for ESU. For a complete list of which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>).\n * If you do not have an ESU MAK add-on key installed and activated.\nIf you have purchased an ESU key and have encountered this issue, please verify you have applied all prerequisites and that your key is activated. For information on activation, please see this [blog](<https://aka.ms/Windows7ESU>) post. For information on the prerequisites, see the \"How to get this update\" section of this article. \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following:\n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update****IMPORTANT** Customers who have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems must follow the procedures in [KB4522133](<https://support.microsoft.com/help/4522133>) to continue receiving security updates after extended support ends on January 14, 2020.For more information about ESU and which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>).**Prerequisite:**You must install the updates listed below and **restart your device** before installing the latest Rollup. Installing these updates improves the reliability of the update process and mitigates potential issues while installing the Rollup and applying Microsoft security fixes.\n\n 1. The April 9, 2019 servicing stack update (SSU) ([KB4493730](<https://support.microsoft.com/help/4493730>)). To get the standalone package for this SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). This update is required to install updates that are only SHA-2 signed.\n 2. The latest SHA-2 update ([KB4474419](<https://support.microsoft.com/help/4474419>)) released October 8, 2019. If you are using Windows Update, the latest SHA-2 update will be offered to you automatically. This update is required to install updates that are only SHA-2 signed. For more information on SHA-2 updates, see [2019 SHA-2 Code Signing Support requirement for Windows and WSUS](<https://support.microsoft.com/help/4472027>).\n 3. The Extended Security Updates (ESU) Licensing Preparation Package ([KB4538484](<https://support.microsoft.com/help/4538484>)) or the Update for the Extended Security Updates (ESU) Licensing Preparation Package ([KB4575904](<https://support.microsoft.com/help/4575904>)). The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>).\nAfter installing the items above, Microsoft strongly recommends that you install the latest SSU ([KB4580971](<https://support.microsoft.com/help/4580971>)). If you are using Windows Update, the latest SSU will be offered to you automatically if you are an ESU customer. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update if you are an ESU customer. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003210>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2008 Service Pack 2**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003210](<https://download.microsoft.com/download/1/d/4/1d43a4d2-542c-4f65-9731-bc9b6e49e88d/5003210.csv>).\n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003210 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003210", "href": "https://support.microsoft.com/en-us/help/5003210", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:37", "description": "None\n**Important: **Windows Server 2012 has reached the end of mainstream support and is now in extended support. Starting in July 2020, there will no longer be optional releases (known as \"C\" or \"D\" releases) for this operating system. Operating systems in extended support have only cumulative monthly security updates (known as the \"B\" or Update Tuesday release). \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows Server 2012 update history [home page](<https://support.microsoft.com/help/4009471>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5001387](<https://support.microsoft.com/help/5001387>) (released previous April 13, 2021) and addresses the following issues: \n\n * Security updates to Windows App Platform and Frameworks, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom**| **Workaround** \n---|--- \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following:\n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update**We strongly recommend that you install the latest servicing stack update (SSU) for your operating system before installing the latest Rollup. SSUs improve the reliability of the update process to mitigate potential issues while installing the Rollup and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).If you use Windows Update, the latest SSU ([KB5001401](<https://support.microsoft.com/help/5001401>)) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003208>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2012, Windows Embedded 8 Standard**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003208](<https://download.microsoft.com/download/0/3/2/032da7be-adf6-47a9-b788-9135019b5db9/5003208.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003208 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003208", "href": "https://support.microsoft.com/en-us/help/5003208", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:37", "description": "None\n**UPDATED 5/11/21 \nREMINDER **Windows 10, version 1803, all editions, has reached end of service. After this May 11, 2021 update, devices running Windows 10, version 1803 will no longer receive monthly security and quality updates that contain protection from the latest security threats. To continue receiving security and quality updates, Microsoft recommends updating to the latest version of Windows 10.\n\n**12/8/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1803 update history home page.\n\n## Highlights\n\n * Installs the new Microsoft Edge.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Removes the Microsoft Edge Legacy desktop application that is out of support and installs the new Microsoft Edge. For more information, see [New Microsoft Edge to replace Microsoft Edge Legacy with April\u2019s Windows 10 Update Tuesday release](<https://aka.ms/EdgeLegacyEOS>).\n * Security updates to Windows App Platform and Frameworks, Windows Cryptography, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## Known issues in this update\n\nMicrosoft is not currently aware of any issues with this update.\n\n## How to get this update\n\n**Before installing this update**Prerequisite:You **must **install the May 11, 2021 servicing stack update (SSU) (KB5003364) before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the SSU will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003174>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003174](<https://download.microsoft.com/download/7/5/0/750f1f8e-5f7b-4452-a339-83a2f22d9c56/5003174.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003174 (OS Build 17134.2208)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003174", "href": "https://support.microsoft.com/en-us/help/5003174", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:24", "description": "None\n**12/8/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1507 update history home page.\n\n## Highlights\n\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Security updates to Windows App Platform and Frameworks, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\nMicrosoft is not currently aware of any issues with this update.\n\n## How to get this update\n\n**Before installing this update**Microsoft strongly recommends you install the latest servicing stack update (SSU) for your operating system before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the latest SSU (KB5001399) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003172>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003172](<https://download.microsoft.com/download/8/e/6/8e67e0db-f6bb-47a6-a64b-53d817848f0b/5003172.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003172 (OS Build 10240.18932)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003172", "href": "https://support.microsoft.com/en-us/help/5003172", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:47", "description": "None\n**Important: **Verify that** **you have installed the required updates listed in the **How to get this update** section before installing this update. \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows 7 SP1 and Windows Server 2008 R2 SP1 update history [home page](<https://support.microsoft.com/help/4009469>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5001335](<https://support.microsoft.com/help/5001335>) (released April 13, 2021) and addresses the following issues: \n\n * Addresses an issue in the Server Message Block (SMB) protocol which may cause frequent crashes with Stop error 0xA on devices that run Windows Server 2008 R2 Service Pack 1 (SP1).\n * Security updates to Windows App Platform and Frameworks, Windows Silicon Platform, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom **| **Workaround ** \n---|--- \nAfter installing this update and restarting your device, you might receive the error, \u201cFailure to configure Windows updates. Reverting Changes. Do not turn off your computer,\u201d and the update might show as **Failed** in **Update History**.| This is expected in the following circumstances:\n\n * If you are installing this update on a device that is running an edition that is not supported for ESU. For a complete list of which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>).\n * If you do not have an ESU MAK add-on key installed and activated.\nIf you have purchased an ESU key and have encountered this issue, please verify you have applied all prerequisites and that your key is activated. For information on activation, please see this [blog](<https://aka.ms/Windows7ESU>) post. For information on the prerequisites, see the \"How to get this update\" section of this article. \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following: \n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update** **IMPORTANT** Customers who have purchased the Extended Security Update (ESU) for on-premises versions of these operating systems must follow the procedures in [KB4522133](<https://support.microsoft.com/help/4522133>) to continue receiving security updates after extended support ends. Extended support ends as follows:\n\n * For Windows 7 Service Pack 1 and Windows Server 2008 R2 Service Pack 1, extended support ends on January 14, 2020.\n * For Windows Embedded Standard 7, extended support ends on October 13, 2020.\nFor more information about ESU and which editions are supported, see [KB4497181](<https://support.microsoft.com/help/4497181>).**Note** For Windows Embedded Standard 7, Windows Management Instrumentation (WMI) must be enabled to get updates from Windows Update or Windows Server Update Services.**Prerequisite:**You must install the updates listed below and **restart your device** before installing the latest Rollup. Installing these updates improves the reliability of the update process and mitigates potential issues while installing the Rollup and applying Microsoft security fixes.\n\n 1. The March 12, 2019 servicing stack update (SSU) ([KB4490628](<https://support.microsoft.com/help/4490628>)). To get the standalone package for this SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). This update is required to install updates that are only SHA-2 signed.\n 2. The latest SHA-2 update ([KB4474419](<https://support.microsoft.com/help/4474419>)) released September 10, 2019. If you are using Windows Update, the latest SHA-2 update will be offered to you automatically. This update is required to install updates that are only SHA-2 signed. For more information on SHA-2 updates, see [2019 SHA-2 Code Signing Support requirement for Windows and WSUS](<https://support.microsoft.com/help/4472027>).\n 3. For Windows Thin PC, you must have the August 11, 2020 SSU ([KB4570673](<https://support.microsoft.com/help/4570673>)) or a later SSU installed to make sure you continue to get the extended security updates starting with the October 13, 2020 updates.\n 4. To get this security update, you must reinstall the \"Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4538483](<https://support.microsoft.com/help/4538483>)) or the \"Update for the Extended Security Updates (ESU) Licensing Preparation Package\" ([KB4575903](<https://support.microsoft.com/help/4575903>)) even if you previously installed the ESU key. The ESU licensing preparation package will be offered to you from WSUS. To get the standalone package for ESU licensing preparation package, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>).\nAfter you install the items above, we strongly recommend that you install the latest SSU ([KB4592510](<https://support.microsoft.com/help/4592510>)). If you are using Windows Update, the latest SSU will be offered to you automatically if you are an ESU customer. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update if you are an ESU customer. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003233>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 7 Service Pack 1, Windows Server 2008 R2 Service Pack 1, Windows Embedded Standard 7 Service Pack 1, Windows Embedded POSReady 7, Windows Thin PC**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003233](<https://download.microsoft.com/download/c/c/7/cc75bd93-70ee-4103-923a-085afd958ee8/5003233.csv>).\n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003233 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003233", "href": "https://support.microsoft.com/en-us/help/5003233", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:19", "description": "None\n**UPDATED 5/11/21** \n**REMINDER **Windows 10, version 1909 is at end of service on May 11, 2021 for devices running the Home, Pro, Pro for Workstation, Nano Container, and Server SAC editions. After May 11, 2021, these devices will no longer receive monthly security and quality updates that contain protection from the latest security threats. To continue receiving security and quality updates, Microsoft recommends updating to the latest version of Windows 10.We will continue to service the following editions: Enterprise, Education, and IoT Enterprise.\n\n**4/13/21 \nREMINDER **Microsoft removed the Microsoft Edge Legacy desktop application that is out of support in March 2021. In this April 13, 2021 release, we will install the new Microsoft Edge. For more information, see [New Microsoft Edge to replace Microsoft Edge Legacy with April\u2019s Windows 10 Update Tuesday release](<https://aka.ms/EdgeLegacyEOS>).\n\n**11/19/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1909 update history home page.**Note **Follow [@WindowsUpdate](<https://twitter.com/windowsupdate>) to find out when new content is published to the release information dashboard.\n\n**Note **This release also contains updates for Microsoft HoloLens (OS Build 18363.1110) released May 11, 2021. Microsoft will release an update directly to the Windows Update Client to improve Windows Update reliability on Microsoft HoloLens that have not updated to this most recent OS Build.\n\n## Highlights\n\n * Updates to improve security when Windows performs basic operations.\n * Updates an issue that might cause scroll bar controls to appear blank on the screen and not function.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Addresses an issue that might cause scroll bar controls to appear blank on the screen and not function. This issue affects 32-bit applications running on 64-bit Windows 10 (WOW64) that create scroll bars using a [superclass](<https://docs.microsoft.com/en-us/windows/win32/winmsg/about-window-procedures#window-procedure-superclassing>) of the **USER32.DLL SCROLLBAR** window class. This issue also affects **HScrollBar** and **VScrollBar **controls and classes derived from **[System.Windows.Forms.ScrollBar](<https://docs.microsoft.com/en-us/dotnet/api/system.windows.forms.scrollbar?view=net-5.0>)**. A memory usage increase of up to 4 GB might occur in 64-bit applications when you create a scroll bar control.\n * Security updates Windows App Platform and Frameworks, the Windows Kernel, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this update and restarting your device, you might be unable to sign into some Microsoft 365 desktop client apps such as Microsoft Teams, OneDrive for Business and Microsoft Outlook. You might also receive an 80080300 error or \"We ran into a problem. Reconnecting\u2026\" when attempting to authenticate or sign into Teams.**Note **Mobile, web and non-Windows versions are not impacted.| This issue is resolved in KB5003635. \nAfter installing this update or later, the news and interests button in the Windows taskbar might have blurry text on certain display configurations.| This issue is resolved in KB5003698. \n \n## How to get this update\n\n**Before installing this update**Prerequisite:You **must **install the April 13, 2021 servicing stack update (SSU) (KB5001406) or the latest SSU (KB5003244) before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the latest SSU will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/home.aspx>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003169>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10, version 1903 and later**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003169](<https://download.microsoft.com/download/5/e/3/5e313305-1778-4a53-8618-55a0e6882a53/5003169.csv>). \n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003169 (OS Build 18363.1556)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003169", "href": "https://support.microsoft.com/en-us/help/5003169", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:51:24", "description": "None\n**UPDATED 5/11/21 \nREMINDER **Windows 10, version 1809 is at end of service on May 11, 2021 for devices running the Enterprise, Education, and IoT Enterprise editions. After May 11, 2021, these devices will no longer receive monthly security and quality updates that contain protection from the latest security threats. To continue receiving security and quality updates, Microsoft recommends updating to the latest version of Windows 10.We will continue to service the following editions: Enterprise G, HoloLens, and the LTSC editions for Client, Server, and IoT.\n\n**NEW 5/11/21 \nREMINDER **Microsoft removed the Microsoft Edge Legacy desktop application that is out of support in April 2021. In this May 11, 2021 release, we will install the new Microsoft Edge. For more information, see [New Microsoft Edge to replace Microsoft Edge Legacy with April\u2019s Windows 10 Update Tuesday release](<https://aka.ms/EdgeLegacyEOS>).\n\n**11/17/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1809 update history home page.\n\n**Note **This release also contains updates for Microsoft HoloLens (OS Build 17763.1934) released May 11, 2021. Microsoft will release an update directly to the Windows Update Client to improve Windows Update reliability on Microsoft HoloLens that have not updated to this most recent OS Build.\n\n## Highlights\n\n * Updates to improve security when Windows performs basic operations.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates security for Bluetooth drivers.\n\n## Improvements and fixes\n\n * Security updates to Windows App Platform and Frameworks, the Windows Kernel, the Microsoft Scripting Engine, and the Windows Silicon Platform.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n### \n\n__\n\nClick or tap to view the known issues\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing KB4493509, devices with some Asian language packs installed may receive the error, \"0x800f0982 - PSFX_E_MATCHING_COMPONENT_NOT_FOUND.\"| \n\n 1. Uninstall and reinstall any recently added language packs. For instructions, see Manage the input and display language settings in Windows 10.\n 2. Select **Check for Updates** and install the April 2019 Cumulative Update. For instructions, see Update Windows 10.\n**Note** If reinstalling the language pack does not mitigate the issue, reset your PC as follows:\n\n 1. Go to the **Settings **app > **Recovery**.\n 2. Select **Get Started** under the **Reset this PC** recovery option.\n 3. Select **Keep my Files**.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \nAfter installing KB5001342 or later, the Cluster Service might fail to start because a Cluster Network Driver is not found.| This issue occurs because of an update to the PnP class drivers used by this service. After about 20 minutes, you should be able to restart your device and not encounter this issue. \nFor more information about the specific errors, cause, and workaround for this issue, please see KB5003571. \nAfter installing updates released April 22, 2021 or later, an issue occurs that affects versions of Windows Server that are in use as a Key Management Services (KMS) host. Client devices running Windows 10 Enterprise LTSC 2019 and Windows 10 Enterprise LTSC 2016 might fail to activate. This issue only occurs when using a new Customer Support Volume License Key (CSVLK). **Note** This does not affect activation of any other version or edition of Windows. Client devices that are attempting to activate and are affected by this issue might receive the error, \"Error: 0xC004F074. The Software Licensing Service reported that the computer could not be activated. No Key Management Service (KMS) could be contacted. Please see the Application Event Log for additional information.\"Event Log entries related to activation are another way to tell that you might be affected by this issue. Open **Event Viewer **on the client device that failed activation and go to **Windows Logs **> **Application**. If you see only event ID 12288 without a corresponding event ID 12289, this means one of the following:\n\n * The KMS client could not reach the KMS host.\n * The KMS host did not respond.\n * The client did not receive the response.\nFor more information on these event IDs, see [Useful KMS client events - Event ID 12288 and Event ID 12289](<https://docs.microsoft.com/windows-server/get-started/activation-troubleshoot-kms-general#event-id-12288-and-event-id-12289>).| This issue is resolved in KB5009616. \n \n## How to get this update\n\n**Before installing this update**Prerequisite:You **must **install the May 11, 2021 servicing stack update (SSU) (KB5003243) or later before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the SSU will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003171>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003171](<https://download.microsoft.com/download/e/a/6/ea6ed84d-4812-4f4b-8dc2-d7983a183c14/5003171.csv>).\n", "cvss3": {"exploitabilityScore": 1.6, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "HIGH", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 7.5, "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-05-11T07:00:00", "type": "mskb", "title": "May 11, 2021\u2014KB5003171 (OS Build 17763.1935)", "bulletinFamily": "microsoft", "cvss2": {"severity": "HIGH", "exploitabilityScore": 4.9, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "HIGH", "confidentialityImpact": "COMPLETE", "availabilityImpact": "COMPLETE", "integrityImpact": "COMPLETE", "baseScore": 7.6, "vectorString": "AV:N/AC:H/Au:N/C:C/I:C/A:C", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 10.0, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-26419"], "modified": "2021-05-11T07:00:00", "id": "KB5003171", "href": "https://support.microsoft.com/en-us/help/5003171", "cvss": {"score": 7.6, "vector": "AV:N/AC:H/Au:N/C:C/I:C/A:C"}}, {"lastseen": "2023-05-19T10:52:01", "description": "None\n**Important: **Windows Server 2012 has reached the end of mainstream support and is now in extended support. Starting in July 2020, there will no longer be optional releases (known as \"C\" or \"D\" releases) for this operating system. Operating systems in extended support have only cumulative monthly security updates (known as the \"B\" or Update Tuesday release). \n \nVerify that you have installed the required updates listed in the **How to get this update** section before installing this update. \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows Server 2012 update history [home page](<https://support.microsoft.com/help/4009471>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5003208](<https://support.microsoft.com/help/5003208>) (released previous May 11, 2021) and addresses the following issues:\n\n * Security updates to Windows App Platform and Frameworks, Windows Cloud Infrastructure, Windows Authentication, Windows Fundamentals, Windows Storage and Filesystems, Windows HTML Platform, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this or later updates, apps accessing event logs on remote devices might be unable to connect. This issue might occur if the local or remote has not yet installed updates released June 8, 2021 or later. Affected apps are using certain [legacy Event Logging APIs](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.microsoft.com%2Fwindows%2Fwin32%2Feventlog%2Fevent-logging-reference&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358267404%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=scGcVremyws4XgZOCym3Xy2QHLHOkKMjyKzcTLfe41g%3D&reserved=0>). You might receive an error when attempting to connect, for example:\n\n * Error 5: access is denied\n * Error 1764: The requested operation is not supported.\n * System.InvalidOperationException,Microsoft.PowerShell.Commands.GetEventLogCommand\n * Windows has not provided an error code.\n**Note** Event Viewer and other apps using current non-legacy APIs to access event logs should not be affected.| This is expected due to security hardening changes relating to [Event Tracing for Windows (ETW)](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.microsoft.com%2Fwindows%2Fwin32%2Fetw%2Fevent-tracing-portal&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358267404%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=%2FgfaPm5%2BCISkiVtxX4404eQqQw7laVw1ivdUp7zQujQ%3D&reserved=0>) for [CVE-2021-31958](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmsrc.microsoft.com%2Fupdate-guide%2Fvulnerability%2FCVE-2021-31958&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358277372%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=KZm29KU3UwieblYgHzatlQXbNEqI9KChC0rR4c3fZaU%3D&reserved=0>). This issue is resolved if the local and remote devices both have installed updates released June 8, 2021 or later. \n| \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following:\n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update**We strongly recommend that you install the latest servicing stack update (SSU) for your operating system before installing the latest Rollup. SSUs improve the reliability of the update process to mitigate potential issues while installing the Rollup and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).If you use Windows Update, the latest SSU ([KB5001401](<https://support.microsoft.com/help/5001401>)) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003697>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows Server 2012, Windows Embedded 8 Standard**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003697](<https://download.microsoft.com/download/b/e/b/bebed881-cea5-4ca0-ad97-669e032d5055/5003697.csv>). \n", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 8.8, "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-06-08T07:00:00", "type": "mskb", "title": "June 8, 2021\u2014KB5003697 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31958", "CVE-2021-31959"], "modified": "2021-06-08T07:00:00", "id": "KB5003697", "href": "https://support.microsoft.com/en-us/help/5003697", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:51:56", "description": "None\n**12/8/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1507 update history home page.\n\n## Highlights\n\n * Updates to improve Windows OLE (compound documents) security.\n * Updates for verifying usernames and passwords.\n * Updates for storing and managing files.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Security updates to the Microsoft Scripting Engine, Windows App Platform and Frameworks, Windows Cloud Infrastructure, Windows Authentication, Windows Fundamentals, Windows Virtualization, Windows HTML Platform, and Windows Storage and Filesystems.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this or later updates, apps accessing event logs on remote devices might be unable to connect. This issue might occur if the local or remote has not yet installed updates released June 8, 2021 or later. Affected apps are using certain [legacy Event Logging APIs](<https://docs.microsoft.com/en-us/windows/win32/eventlog/event-logging-reference>). You might receive an error when attempting to connect, for example:\n\n * error 5: access is denied\n * error 1764: The requested operation is not supported.\n * System.InvalidOperationException, \nMicrosoft.PowerShell.Commands.GetEventLogCommand\n * Windows has not provided an error code.\n**Note** Event Viewer and other apps using current non-legacy APIs to access event logs should not be affected.| This is expected due to security hardening changes relating to [Event Tracing for Windows (ETW)](<https://docs.microsoft.com/en-us/windows/win32/etw/event-tracing-portal>) for [CVE-2021-31958](<https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-31958>). This issue is resolved if the local and remote devices both have installed updates released June 8, 2021 or later. \n \n## How to get this update\n\n**Before installing this update**Microsoft strongly recommends you install the latest servicing stack update (SSU) for your operating system before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the latest SSU (KB5001399) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>).**Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003687>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003687](<https://download.microsoft.com/download/d/3/6/d362f43f-51ad-4112-9263-813172c51a20/5003687.csv>). \n", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 8.8, "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-06-08T07:00:00", "type": "mskb", "title": "June 8, 2021\u2014KB5003687 (OS Build 10240.18967)", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31958", "CVE-2021-31959"], "modified": "2021-06-08T07:00:00", "id": "KB5003687", "href": "https://support.microsoft.com/en-us/help/5003687", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:51:56", "description": "None\n**Important: **Windows 8.1 and Windows Server 2012 R2 have reached the end of mainstream support and are now in extended support. Starting in July 2020, there will no longer be optional, non-security releases (known as \"C\" releases) for this operating system. Operating systems in extended support have only cumulative monthly security updates (known as the \"B\" or Update Tuesday release). \n \nVerify that you have installed the required updates listed in the **How to get this update** section before installing this update. \n \nFor information about the various types of Windows updates, such as critical, security, driver, service packs, and so on, please see the following [article](<https://support.microsoft.com/help/824684>). To view other notes and messages, see the Windows 8.1 and Windows Server 2012 R2 update history [home page](<https://support.microsoft.com/help/4009470>).\n\n## **Improvements and fixes**\n\nThis security update includes improvements and fixes that were a part of update [KB5003209](<https://support.microsoft.com/help/5003209>) (released May 11, 2021) and addresses the following issues:\n\n * Security updates to Windows App Platform and Frameworks, Windows Cloud Infrastructure, Windows Authentication, Windows Fundamentals, Windows Storage and Filesystems, Windows HTML Platform, and Microsoft Scripting Engine.\nFor more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n## **Known issues in this update**\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this or later updates, apps accessing event logs on remote devices might be unable to connect. This issue might occur if the local or remote has not yet installed updates released June 8, 2021 or later. Affected apps are using certain [legacy Event Logging APIs](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.microsoft.com%2Fwindows%2Fwin32%2Feventlog%2Fevent-logging-reference&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358267404%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=scGcVremyws4XgZOCym3Xy2QHLHOkKMjyKzcTLfe41g%3D&reserved=0>). You might receive an error when attempting to connect, for example:\n\n * Error 5: access is denied\n * Error 1764: The requested operation is not supported.\n * System.InvalidOperationException,Microsoft.PowerShell.Commands.GetEventLogCommand\n * Windows has not provided an error code.\n**Note** Event Viewer and other apps using current non-legacy APIs to access event logs should not be affected.| This is expected due to security hardening changes relating to [Event Tracing for Windows (ETW)](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fdocs.microsoft.com%2Fwindows%2Fwin32%2Fetw%2Fevent-tracing-portal&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358267404%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=%2FgfaPm5%2BCISkiVtxX4404eQqQw7laVw1ivdUp7zQujQ%3D&reserved=0>) for [CVE-2021-31958](<https://nam06.safelinks.protection.outlook.com/?url=https%3A%2F%2Fmsrc.microsoft.com%2Fupdate-guide%2Fvulnerability%2FCVE-2021-31958&data=04%7C01%7Cv-throbe%40microsoft.com%7C68b7649c7b67404a68e608d92b9e1d56%7C72f988bf86f141af91ab2d7cd011db47%7C1%7C0%7C637588780358277372%7CUnknown%7CTWFpbGZsb3d8eyJWIjoiMC4wLjAwMDAiLCJQIjoiV2luMzIiLCJBTiI6Ik1haWwiLCJXVCI6Mn0%3D%7C1000&sdata=KZm29KU3UwieblYgHzatlQXbNEqI9KChC0rR4c3fZaU%3D&reserved=0>). This issue is resolved if the local and remote devices both have installed updates released June 8, 2021 or later. \nCertain operations, such as **rename**, that you perform on files or folders that are on a Cluster Shared Volume (CSV) may fail with the error, \u201cSTATUS_BAD_IMPERSONATION_LEVEL (0xC00000A5)\u201d. This occurs when you perform the operation on a CSV owner node from a process that doesn\u2019t have administrator privilege.| Do one of the following:\n\n * Perform the operation from a process that has administrator privilege.\n * Perform the operation from a node that doesn\u2019t have CSV ownership.\nMicrosoft is working on a resolution and will provide an update in an upcoming release. \n \n## **How to get this update**\n\n**Before installing this update**We strongly recommend that you install the latest servicing stack update (SSU) for your operating system before you install the latest Rollup. SSUs improve the reliability of the update process to mitigate potential issues while installing the Rollup and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and [Servicing Stack Updates (SSU): Frequently Asked Questions](<https://support.microsoft.com/help/4535697>).If you use Windows Update, the latest SSU ([KB5001403](<https://support.microsoft.com/help/5001403>)) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003671>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 8.1, Windows Server 2012 R2, Windows Embedded 8.1 Industry Enterprise, Windows Embedded 8.1 Industry Pro**Classification**: Security Updates \n \n## **File information**\n\nFor a list of the files that are provided in this update, download the [file information for update 5003671](<https://download.microsoft.com/download/d/f/d/dfd27e6d-f456-4824-9884-3ab7a6c7fcb1/5003671.csv>). \n", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 8.8, "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-06-08T07:00:00", "type": "mskb", "title": "June 8, 2021\u2014KB5003671 (Monthly Rollup)", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31958", "CVE-2021-31959"], "modified": "2021-06-08T07:00:00", "id": "KB5003671", "href": "https://support.microsoft.com/en-us/help/5003671", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:51:49", "description": "None\n**11/19/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1607 update history home page. \n\n## Highlights\n\n * Updates to improve Windows OLE (compound documents) security.\n * Updates for verifying usernames and passwords.\n * Updates for storing and managing files.\n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Addresses an issue with the just-in-time (JIT) behavior of **jscript9.dll**.\n * Security updates to the Microsoft Scripting Engine, Windows App Platform and Frameworks, Windows Cloud Infrastructure, Windows Authentication, Windows Fundamentals, Windows Virtualization, Windows HTML Platform, and Windows Storage and Filesystems.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n### \n\n__\n\nClick or tap to view known issues\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing this or later updates, apps accessing event logs on remote devices might be unable to connect. This issue might occur if the local or remote has not yet installed updates released June 8, 2021 or later. Affected apps are using certain [legacy Event Logging APIs](<https://docs.microsoft.com/en-us/windows/win32/eventlog/event-logging-reference>). You might receive an error when attempting to connect, for example:\n\n * error 5: access is denied\n * error 1764: The requested operation is not supported.\n * System.InvalidOperationException, \nMicrosoft.PowerShell.Commands.GetEventLogCommand\n * Windows has not provided an error code.\n**Note** Event Viewer and other apps using current non-legacy APIs to access event logs should not be affected.| This is expected due to security hardening changes relating to [Event Tracing for Windows (ETW)](<https://docs.microsoft.com/en-us/windows/win32/etw/event-tracing-portal>) for [CVE-2021-31958](<https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-31958>). This issue is resolved if the local and remote devices both have installed updates released June 8, 2021 or later. \nAfter installing updates released April 22, 2021 or later, an issue occurs that affects versions of Windows Server that are in use as a Key Management Services (KMS) host. Client devices running Windows 10 Enterprise LTSC 2019 and Windows 10 Enterprise LTSC 2016 might fail to activate. This issue only occurs when using a new Customer Support Volume License Key (CSVLK). **Note** This does not affect activation of any other version or edition of Windows. Client devices that are attempting to activate and are affected by this issue might receive the error, \"Error: 0xC004F074. The Software Licensing Service reported that the computer could not be activated. No Key Management Service (KMS) could be contacted. Please see the Application Event Log for additional information.\"Event Log entries related to activation are another way to tell that you might be affected by this issue. Open **Event Viewer **on the client device that failed activation and go to **Windows Logs **> **Application**. If you see only event ID 12288 without a corresponding event ID 12289, this means one of the following:\n\n * The KMS client could not reach the KMS host.\n * The KMS host did not respond.\n * The client did not receive the response.\nFor more information on these event IDs, see [Useful KMS client events - Event ID 12288 and Event ID 12289](<https://docs.microsoft.com/windows-server/get-started/activation-troubleshoot-kms-general#event-id-12288-and-event-id-12289>).| This issue is resolved in KB5010359. \n \n## How to get this update\n\n**Before installing this update**Microsoft strongly recommends you install the latest servicing stack update (SSU) for your operating system before installing the latest cumulative update (LCU). SSUs improve the reliability of the update process to mitigate potential issues while installing the LCU and applying Microsoft security fixes. For general information about SSUs, see [Servicing stack updates](<https://docs.microsoft.com/en-us/windows/deployment/update/servicing-stack-updates>) and Servicing Stack Updates (SSU): Frequently Asked Questions.If you are using Windows Update, the latest SSU (KB5001402) will be offered to you automatically. To get the standalone package for the latest SSU, search for it in the [Microsoft Update Catalog](<http://www.catalog.update.microsoft.com/home.aspx>). **Install this update****Release Channel**| **Available**| **Next Step** \n---|---|--- \nWindows Update and Microsoft Update| Yes| None. This update will be downloaded and installed automatically from Windows Update. \nWindows Update for Business| Yes| None. This update will be downloaded and installed automatically from Windows Update in accordance with configured policies. \nMicrosoft Update Catalog| Yes| To get the standalone package for this update, go to the [Microsoft Update Catalog](<https://www.catalog.update.microsoft.com/Search.aspx?q=KB5003638>) website. \nWindows Server Update Services (WSUS)| Yes| This update will automatically sync with WSUS if you configure **Products and Classifications** as follows:**Product**: Windows 10**Classification**: Security Updates \n**File information**For a list of the files that are provided in this update, download the [file information for cumulative update 5003638](<https://download.microsoft.com/download/d/c/7/dc7976e2-6028-436d-9be3-d843ad992873/5003638.csv>). \n", "cvss3": {"exploitabilityScore": 2.8, "cvssV3": {"baseSeverity": "HIGH", "confidentialityImpact": "HIGH", "attackComplexity": "LOW", "scope": "UNCHANGED", "attackVector": "NETWORK", "availabilityImpact": "HIGH", "integrityImpact": "HIGH", "privilegesRequired": "NONE", "baseScore": 8.8, "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "version": "3.1", "userInteraction": "REQUIRED"}, "impactScore": 5.9}, "published": "2021-06-08T07:00:00", "type": "mskb", "title": "June 8, 2021\u2014KB5003638 (OS Build 14393.4467)\n", "bulletinFamily": "microsoft", "cvss2": {"severity": "MEDIUM", "exploitabilityScore": 8.6, "obtainAllPrivilege": false, "userInteractionRequired": true, "obtainOtherPrivilege": false, "cvssV2": {"accessComplexity": "MEDIUM", "confidentialityImpact": "PARTIAL", "availabilityImpact": "PARTIAL", "integrityImpact": "PARTIAL", "baseScore": 6.8, "vectorString": "AV:N/AC:M/Au:N/C:P/I:P/A:P", "version": "2.0", "accessVector": "NETWORK", "authentication": "NONE"}, "impactScore": 6.4, "acInsufInfo": false, "obtainUserPrivilege": false}, "cvelist": ["CVE-2021-31958", "CVE-2021-31959"], "modified": "2021-06-08T07:00:00", "id": "KB5003638", "href": "https://support.microsoft.com/en-us/help/5003638", "cvss": {"score": 6.8, "vector": "AV:N/AC:M/Au:N/C:P/I:P/A:P"}}, {"lastseen": "2023-05-19T10:51:49", "description": "None\n**5/11/21 \nREMINDER **Windows 10, version 1809 reached end of service on May 11, 2021 for devices running the Enterprise, Education, and IoT Enterprise editions. After May 11, 2021, these devices will no longer receive monthly security and quality updates that contain protection from the latest security threats. To continue receiving security and quality updates, Microsoft recommends updating to the latest version of Windows 10.We will continue to service the following editions: Enterprise G, HoloLens, and the LTSC editions for Client, Server, and IoT.\n\n**5/11/21 \nREMINDER **Microsoft removed the Microsoft Edge Legacy desktop application that is out of support in April 2021. In the May 11, 2021 release, we installed the new Microsoft Edge. For more information, see [New Microsoft Edge to replace Microsoft Edge Legacy with April\u2019s Windows 10 Update Tuesday release](<https://aka.ms/EdgeLegacyEOS>).\n\n**11/17/20** \nFor information about Windows update terminology, see the article about the [types of Windows updates](<https://docs.microsoft.com/en-us/troubleshoot/windows-client/deployment/standard-terminology-software-updates>) and the [monthly quality update types](<https://techcommunity.microsoft.com/t5/windows-it-pro-blog/windows-10-update-servicing-cadence/ba-p/222376>). To view other notes and messages, see the Windows 10, version 1809 update history home page.\n\n**Note **This release also contains updates for Microsoft HoloLens (OS Build 17763.1999) released June 8, 2021. Microsoft will release an update directly to the Windows Update Client to improve Windows Update reliability on Microsoft HoloLens that have not updated to this most recent OS Build.\n\n## Highlights\n\n * Updates to improve security when Windows performs basic operations.\n * Updates to improve Windows OLE (compound documents) security.\n * Updates for verifying usernames and passwords.\n * Updates for storing and managing files.\n * Updates to improve security when using input devices such as a mouse, keyboard, or pen. \n\n## Improvements and fixes\n\nThis security update includes quality improvements. Key changes include:\n\n * Addresses an issue with an inconsistent shutdown during Windows Update that damages the Windows Management Instrumentation (WMI) repository. As a result, the Managed Object Format (MOF) Advance Installer fails.\n * Security updates to the Microsoft Scripting Engine, Windows App Platform and Frameworks, Windows Input and Composition, Windows Management, Windows Cloud Infrastructure, Windows Authentication, Windows Fundamentals, Windows Virtualization, Windows Kernel, Windows HTML Platform, and Windows Storage and Filesystem.\nIf you installed earlier updates, only the new fixes contained in this package will be downloaded and installed on your device.For more information about the resolved security vulnerabilities, please refer to the new [Security Update Guide](<https://msrc.microsoft.com/update-guide>) website.\n\n**Windows Update Improvements**Microsoft has released an update directly to the Windows Update client to improve reliability. Any device running Windows 10 configured to receive updates automatically from Windows Update, including Enterprise and Pro editions, will be offered the latest Windows 10 feature update based on device compatibility and Windows Update for Business deferral policy. This doesn't apply to long-term servicing editions.\n\n## Known issues in this update\n\n### \n\n__\n\nClick or tap to view the known issues\n\n**Symptom**| **Workaround** \n---|--- \nAfter installing KB4493509, devices with some Asian language packs installed may receive the error, \"0x800f0982 - PSFX_E_MATCHING_COMPONENT_NOT_FOUND.\"| This issue is addressed by updates released June 11, 2019 and later. We recommend you install the latest security updates for your device. Customers installing Windows Server 2019 using media should install the latest [Servicing Stack Update (SSU)](<https://docs.microsoft.com/windows/deployment/update/servicing-stack-updates>) before installing the language pack or other optional components. If using the [Volume Licensing Service Center (VLSC)](<https://www.microsoft.com/licensing/servicecenter/default.aspx>), acquire the latest Windows Server 2019 media available. The proper order of installation is as follows:\n\n 1. Install the latest prerequisite SSU, currently [KB5005112](<https://support.microsoft.com/help/5005112>)\n 2. Install optional components or language packs\n 3. Install latest cumulative update\n**Note** Updating your device will prevent this issue, but will have no effect on devices already affected by this issue. If this issue is present in your device, you will need to use the workaround steps to repair it.**Workaround:**\n\n 1. Uninstall and reinstall any recently added language packs. For instructions, see [Manage the input and display language settings in Windows 10](<https://support.microsoft.com/windows/manage-the-input-and-display-language-settings-in-windows-12a10cb4-8626-9b77-0ccb-5013e0c7c7a2>).\n 2. Click **Check for Updates **and install the April 2019 Cumulative Update or later. For instructions, see [Update Windows 10](<https://support.microsoft.com/windows/update-windows-3c5ae7fc-9fb6-9af1-1984-b5e0412c556a>).\n**Note **If reinstalling the language pack does not mitigate the issue, use the In-Place-Upgrade feature. For guidance, see [How to do an in-place upgrade on Windows](<https://docs.microsoft.com/troubleshoot/windows-server/deployment/repair-or-in-place-upgrade>), and [Perform an in-place upgrade of Windows Server](<https://docs.microsoft.com/windows-server/get-started/perform-in-place-upgrade>). \nAfter installing KB5001342 or later, the Cluster Service might fail to start because a Cluster Network Driver is not found.| This issue occurs because of an update to the PnP class drivers used by this service. After about 20 minutes, you should be able to restart your device and not encounter this issue. \nFor more information about the specific errors, cause, and workaround for this issue, please see KB5003571. \nAfter installing this or later updates, apps accessing event logs on remote devices might be unable to connect. This issue might occur if the local or remote has not yet installed updates released June 8, 2021 or later. Affected apps are using certain [legacy Event Logging APIs](<https://docs.microsoft.com/en-us/windows/win32/eventlog/event-logging-reference>). You might receive an error when attempting to connect, for example:\n\n * error 5: access is denied\n * error 1764: The requested operation is not supported.\n * System.InvalidOperationException, \nMicrosoft.PowerShell.Commands.GetEventLogCommand\n * Windows has not provided an error code. \n**Note** Event Viewer and other apps using current non-legacy APIs to access event logs should not be affected.| This is expected due to security hardening changes relating to [Event Tracing for Windows (ETW)](<https://docs.microsoft.com/en-us/windows/win32/etw/event-tracing-portal>) for [CVE-2021-31958](<https://msrc.microsoft.com/update-guide/vulnerability/CVE-2021-31958>). This issue is resolved if the local and remote devices both have installed updates released June 8, 2021 or later. \nAfter installing updates released April 22, 2021 or later, an issue occurs that affects versions of Windows Server that are in use as a Key Management Services (KMS) host. Client devices running Windows 10 Enterprise LTSC 2019 and Windows 10 Enterprise LTSC 2016 might fail to activate. This issue only occurs when using a new Customer Support Volume License Key (CSVLK). **Not