DLL侧载(DLL Side-Loading) 是一种攻击技术,通常被黑客利用来执行恶意代码。它发生在应用程序加载动态链接库(DLL)文件时,攻击者通过某些手段将恶意的DLL文件植入到应用程序的正常路径或不受限制的目录中,从而欺骗操作系统或应用程序加载恶意DLL,导致执行攻击者控制的代码。
DLL侧载(DLL Side-Loading):原理、攻击与防御
嘿!看到你对DLL侧载感兴趣,我正好可以和你聊聊这个Windows系统中非常危险但又很常见的攻击技术。这技术有点像"狸猫换太子",黑客利用了Windows系统的一个设计缺陷来隐藏恶意代码。
🔍 什么是DLL侧载?
DLL侧载是一种利用Windows加载DLL文件时的搜索顺序机制的攻击技术。简单来说,就是攻击者将恶意DLL文件放在合法应用程序的目录中,当应用程序启动时,系统会优先加载这个恶意DLL,而不是真正的系统DLL,从而让攻击者在受信任的进程上下文中执行恶意代码。
🧠 工作原理:为什么DLL侧载能成功?
Windows的DLL加载顺序(关键点!)
Windows在加载DLL时遵循特定的搜索顺序,从最优先到最不优先:
- 应用程序目录:应用程序.EXE文件所在的目录
- 当前工作目录:程序启动时的当前工作目录
- 系统目录:C:\Windows\System32
- 16位系统目录:C:\Windows\System
- Windows目录:C:\Windows
- PATH环境变量中的所有目录
关键点:应用程序目录是系统优先搜索的位置!这就是DLL侧载能成功的根本原因。
举个例子:当OneDrive.exe启动时,系统会先在OneDrive.exe所在目录搜索所需的DLL(如version.dll),而不是先去System32找。攻击者只需将恶意version.dll放在OneDrive目录中,就能劫持执行。
⚔️ 攻击流程详解
- 目标选择:攻击者选择一个广泛使用的、有高权限的合法应用程序(如OneDrive、Telegram等)
- 恶意DLL准备:创建一个与应用程序需要的DLL同名的恶意DLL
- DLL放置:将恶意DLL放在应用程序的安装目录中
- 触发执行:当用户启动该应用程序时,系统加载恶意DLL
- 恶意执行:恶意DLL在合法进程上下文中执行任意代码
📱 最新发展:双DLL侧加载
最近黑客们玩出了新花样,出现了双DLL侧加载技术,进一步提高隐蔽性:
- 第一阶段:利用一个合法应用程序(如Telegram)加载一个"中间"DLL
- 第二阶段:这个中间DLL再加载另一个合法应用程序
- 第三阶段:最终的恶意DLL被加载执行
知识库[2]和[8]中提到的"双DLL侧加载"技术就是这么玩的,攻击者通过这种方式"套娃",使攻击链更长、更隐蔽,让安全产品难以检测。
🕵️♂️ 典型攻击案例
1. OneDrive DLL侧载攻击(2025年最新)
- 攻击者将恶意version.dll放在OneDrive.exe目录中
- OneDrive启动时加载恶意DLL而非合法DLL
- 恶意DLL使用DLL代理技术,伪装成合法DLL
- 攻击者获得OneDrive的高权限,可以访问同步文件、窃取数据等
- 该攻击在企业环境中尤其危险,因为OneDrive广泛部署在数千台计算机上
2. Telegram网络钓鱼攻击
- 攻击者提供伪装成Telegram的安装包
- 安装包在%AppData%目录创建"TG-"文件夹
- 创建虚假Telegram快捷方式,诱导用户点击
- 使用"双DLL侧加载"技术,通过两个中间DLL加载恶意后门
- 最终执行ServerDll.dll后门,实现持久化控制
3. 植入恶意Python代码
- 攻击者利用DLL侧载技术分发恶意Python代码
- 通过鱼叉式网络钓鱼邮件传播
- 恶意DLL加载后,注入Python解释器执行嵌入的Python代码
- 该恶意代码具有灵活性和跨平台能力,比传统编译型恶意软件更难检测
🛡️ 为什么DLL侧载如此危险?
- 权限提升:攻击代码以合法应用程序的权限运行(通常是高权限)
- 绕过检测:安全软件信任数字签名的合法进程,难以检测
- 隐蔽性强:恶意代码在合法进程上下文中执行,不留明显痕迹
- 持久性:可以设置为系统启动时自动执行
- 广泛适用:适用于任何依赖DLL的Windows应用程序
🔒 防御措施
1. 系统级防护
- 启用Known DLLs:将系统关键DLL添加到注册表
text编辑
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\KnownDLLs - 配置DLL加载顺序:确保系统优先从System32加载DLL
- 启用ASLR和DEP:地址空间布局随机化和数据执行保护
2. 应用程序级防护
- 使用数字签名验证:确保加载的DLL是经过验证的
- 应用程序白名单:限制可执行文件的范围
- 最小权限原则:应用程序以最低权限运行
3. 监控与检测
- 使用Process Monitor:监控DLL加载行为
- 使用Lighthouse或类似工具:分析异常DLL加载模式
- 实施网络监控:检测异常的C2通信
💡 个人建议
如果你是普通用户:
- 不要随意下载和安装来源不明的软件
- 保持系统和应用程序更新
- 安装可靠的杀毒软件
如果你是开发者:
- 使用绝对路径加载DLL,避免依赖相对路径
- 在应用程序中验证DLL的数字签名
- 为关键DLL添加哈希检查
🌟 最后的小知识
DLL侧载技术自2010年左右就被黑客利用,微软多年来一直在尝试修复,但至今没有彻底解决。这说明系统设计的复杂性,以及安全与便利性之间的永恒权衡。
有趣的是,知识库[7]中提到,"对安全产品来讲也许是一个老生常谈的问题,设置强规则(诸如dll签名啊,文件落地啊等)就会产生大量误报,很难找到一个权衡误报与真实告警事件的一个边界。"
所以,防御DLL侧载需要的是"智能"而不是"简单"的规则,这也是为什么最近的攻击越来越复杂。
C:\Windows\System32\0ae3b998-9a38-4b72-a4c4-06849441518d_Servicing-Stack.dll
C:\Windows\System32\33d3030a-123d-4daf-a06c-4fdac0e5fea7_Win3_Product_Extension_ClientCore.dll
C:\Windows\System32\3bc29097-7317-41d3-93b9-38a48f99d48a_mssrch.dll
C:\Windows\System32\4545ffe2-0dc4-4df4-9d02-299ef204635e_hvsocket.dll
C:\Windows\System32\69fe178f-26e7-43a9-aa7d-2b616b672dde_eventlogservice.dll
C:\Windows\System32\6bea57fb-8dfb-4177-9ae8-42e8b3529933_RuntimeDeviceInstall.dll
C:\Windows\System32\a6811726-50f2-43b1-a328-27285ef45fca_dtrace_sys.dll
C:\Windows\System32\aadauthhelper.dll
C:\Windows\System32\aadcloudap.dll
C:\Windows\System32\aadjcsp.dll
C:\Windows\System32\aadtb.dll
C:\Windows\System32\aadWamExtension.dll
C:\Windows\System32\AboutSettingsHandlers.dll
C:\Windows\System32\AboveLockAppHost.dll
C:\Windows\System32\accessibilitycpl.dll
C:\Windows\System32\accountaccessor.dll
C:\Windows\System32\AccountsRt.dll
C:\Windows\System32\AcGenral.dll
C:\Windows\System32\AcLayers.dll
C:\Windows\System32\acledit.dll
C:\Windows\System32\aclui.dll
C:\Windows\System32\acmigration.dll
C:\Windows\System32\ACPBackgroundManagerPolicy.dll
C:\Windows\System32\acppage.dll
C:\Windows\System32\acproxy.dll
C:\Windows\System32\AcSpecfc.dll
C:\Windows\System32\ActionCenter.dll
C:\Windows\System32\ActionCenterCPL.dll
C:\Windows\System32\ActionQueue.dll
C:\Windows\System32\ActivationClient.dll
C:\Windows\System32\ActivationManager.dll
C:\Windows\System32\activeds.dll
C:\Windows\System32\ActiveSyncCsp.dll
C:\Windows\System32\ActiveSyncProvider.dll
C:\Windows\System32\actxprxy.dll
C:\Windows\System32\AcWinRT.dll
C:\Windows\System32\AcXtrnal.dll
C:\Windows\System32\AdaptiveCards.dll
C:\Windows\System32\AddressParser.dll
C:\Windows\System32\adhapi.dll
C:\Windows\System32\adhsvc.dll
C:\Windows\System32\AdmTmpl.dll
C:\Windows\System32\adprovider.dll
C:\Windows\System32\adrclient.dll
C:\Windows\System32\adsldp.dll
C:\Windows\System32\adsldpc.dll
C:\Windows\System32\adsmsext.dll
C:\Windows\System32\adsnt.dll
C:\Windows\System32\adtschema.dll
C:\Windows\System32\AdvancedEmojiDS.dll
C:\Windows\System32\advapi32.dll
C:\Windows\System32\advapi32res.dll
C:\Windows\System32\advpack.dll
C:\Windows\System32\aeevts.dll
C:\Windows\System32\aeinv.dll
C:\Windows\System32\aeinvext.dll
C:\Windows\System32\aemarebackup.dll
C:\Windows\System32\aepic.dll
C:\Windows\System32\amsi.dll
C:\Windows\System32\amsiproxy.dll
C:\Windows\System32\amstream.dll
C:\Windows\System32\apds.dll
C:\Windows\System32\APHostClient.dll
C:\Windows\System32\APHostRes.dll
C:\Windows\System32\APHostService.dll
C:\Windows\System32\apisampling.dll
C:\Windows\System32\ApiSetHost.AppExecutionAlias.dll
C:\Windows\System32\apisetschema.dll
C:\Windows\System32\APMon.dll
C:\Windows\System32\APMonUI.dll
C:\Windows\System32\AppContracts.dll
C:\Windows\System32\AppExtension.dll
C:\Windows\System32\appfootprint.dll
C:\Windows\System32\apphelp.dll
C:\Windows\System32\Apphlpdm.dll
C:\Windows\System32\appidapi.dll
C:\Windows\System32\AppIdPolicyEngineApi.dll
C:\Windows\System32\appidsvc.dll
C:\Windows\System32\appinfo.dll
C:\Windows\System32\appinfoext.dll
C:\Windows\System32\AppInstallerPrompt.Desktop.dll
C:\Windows\System32\ApplicationControlCSP.dll
C:\Windows\System32\ApplicationFrame.dll
C:\Windows\System32\AppLockerCSP.dll
C:\Windows\System32\AppManagementConfiguration.dll
C:\Windows\System32\appmgmts.dll
C:\Windows\System32\appmgr.dll
C:\Windows\System32\AppointmentActivation.dll
C:\Windows\System32\AppointmentApis.dll
C:\Windows\System32\appraiser.dll
C:\Windows\System32\AppReadiness.dll
C:\Windows\System32\apprepapi.dll
C:\Windows\System32\AppResolver.dll
C:\Windows\System32\appsruprov.dll
C:\Windows\System32\AppVCatalog.dll
C:\Windows\System32\AppvClientEventLog.dll
C:\Windows\System32\AppVClientPS.dll
C:\Windows\System32\AppVEntStreamingManager.dll
C:\Windows\System32\AppVEntSubsystemController.dll
C:\Windows\System32\AppVEntSubsystems64.dll
C:\Windows\System32\AppVEntVirtualization.dll
C:\Windows\System32\appvetwclientres.dll
C:\Windows\System32\appvetwsharedperformance.dll
C:\Windows\System32\appvetwstreamingux.dll
C:\Windows\System32\AppVFileSystemMetadata.dll
C:\Windows\System32\AppVIntegration.dll
C:\Windows\System32\AppVManifest.dll
C:\Windows\System32\AppVOrchestration.dll
C:\Windows\System32\AppVPolicy.dll
C:\Windows\System32\AppVPublishing.dll
C:\Windows\System32\AppVReporting.dll
C:\Windows\System32\AppVScripting.dll
C:\Windows\System32\AppVSentinel.dll
C:\Windows\System32\AppVStreamingUX.dll
C:\Windows\System32\AppVStreamMap.dll
C:\Windows\System32\AppVTerminator.dll
C:\Windows\System32\AppxAllUserStore.dll
C:\Windows\System32\AppXApplicabilityBlob.dll
C:\Windows\System32\AppxApplicabilityEngine.dll
C:\Windows\System32\AppXDeploymentClient.dll
C:\Windows\System32\AppXDeploymentExtensions.desktop.dll
C:\Windows\System32\AppXDeploymentExtensions.onecore.dll
C:\Windows\System32\AppXDeploymentExtensions.server.dll
C:\Windows\System32\AppXDeploymentServer.dll
C:\Windows\System32\AppxPackaging.dll
C:\Windows\System32\AppxSip.dll
C:\Windows\System32\AppxStreamingDataSourcePS.dll
C:\Windows\System32\AppxSysprep.dll
C:\Windows\System32\Apx01000.dll
C:\Windows\System32\archiveint.dll
C:\Windows\System32\asferror.dll
C:\Windows\System32\aspnet_counters.dll
C:\Windows\System32\AssignedAccessRuntime.dll
C:\Windows\System32\asycfilt.dll
C:\Windows\System32\atl.dll
C:\Windows\System32\atl100.dll
C:\Windows\System32\atl110.dll
C:\Windows\System32\atlthunk.dll
C:\Windows\System32\atmlib.dll
C:\Windows\System32\AudioEndpointBuilder.dll
C:\Windows\System32\AudioEng.dll
C:\Windows\System32\AudioHandlers.dll
C:\Windows\System32\AUDIOKSE.dll
C:\Windows\System32\audioresourceregistrar.dll
C:\Windows\System32\AudioSes.dll
C:\Windows\System32\audiosrv.dll
C:\Windows\System32\AudioSrvPolicyManager.dll
C:\Windows\System32\auditcse.dll
C:\Windows\System32\AuditNativeSnapIn.dll
C:\Windows\System32\auditpolcore.dll
C:\Windows\System32\AuditPolicyGPInterop.dll
C:\Windows\System32\auditpolmsg.dll
C:\Windows\System32\AuthBroker.dll
C:\Windows\System32\AuthBrokerUI.dll
C:\Windows\System32\AuthExt.dll
C:\Windows\System32\authfwcfg.dll
C:\Windows\System32\AuthFWGP.dll
C:\Windows\System32\AuthFWSnapin.dll
C:\Windows\System32\AuthFWWizFwk.dll
C:\Windows\System32\AuthHostProxy.dll
C:\Windows\System32\authui.dll
C:\Windows\System32\authz.dll
C:\Windows\System32\AutomaticAppSignInPolicy.dll
C:\Windows\System32\autopilot.dll
C:\Windows\System32\autopilotdiag.dll
C:\Windows\System32\autoplay.dll
C:\Windows\System32\avicap32.dll
C:\Windows\System32\avifil32.dll
C:\Windows\System32\avrt.dll
C:\Windows\System32\AxInstSv.dll
C:\Windows\System32\azroles.dll
C:\Windows\System32\azroleui.dll
C:\Windows\System32\AzSqlExt.dll
C:\Windows\System32\BackgroundMediaPolicy.dll
C:\Windows\System32\BamSettingsClient.dll
C:\Windows\System32\BarcodeProvisioningPlugin.dll
C:\Windows\System32\basecsp.dll
C:\Windows\System32\basesrv.dll
C:\Windows\System32\batmeter.dll
C:\Windows\System32\bcastdvr.proxy.dll
C:\Windows\System32\BcastDVRBroker.dll
C:\Windows\System32\BcastDVRClient.dll
C:\Windows\System32\BcastDVRCommon.dll
C:\Windows\System32\bcd.dll
C:\Windows\System32\bcdprov.dll
C:\Windows\System32\bcdsrv.dll
C:\Windows\System32\BCP47Langs.dll
C:\Windows\System32\BCP47mrm.dll
C:\Windows\System32\bcrypt.dll
C:\Windows\System32\bcryptprimitives.dll
C:\Windows\System32\BFE.DLL
C:\Windows\System32\bi.dll
C:\Windows\System32\bidispl.dll
C:\Windows\System32\bindfltapi.dll
C:\Windows\System32\BingASDS.dll
C:\Windows\System32\BingFilterDS.dll
C:\Windows\System32\BingMaps.dll
C:\Windows\System32\BingOnlineServices.dll
C:\Windows\System32\BioCredProv.dll
C:\Windows\System32\bisrv.dll
C:\Windows\System32\BitLockerCsp.dll
C:\Windows\System32\bitsigd.dll
C:\Windows\System32\bitsperf.dll
C:\Windows\System32\BitsProxy.dll
C:\Windows\System32\biwinrt.dll
C:\Windows\System32\BlbEvents.dll
C:\Windows\System32\blbres.dll
C:\Windows\System32\blbsrv.dll
C:\Windows\System32\blbuires.dll
C:\Windows\System32\blb_ps.dll
C:\Windows\System32\BluetoothApis.dll
C:\Windows\System32\BluetoothDesktopHandlers.dll
C:\Windows\System32\BluetoothOppPushClient.dll
C:\Windows\System32\BootMenuUX.dll
C:\Windows\System32\bootstr.dll
C:\Windows\System32\bootsvc.dll
C:\Windows\System32\bootux.dll
C:\Windows\System32\BOOTVID.DLL
C:\Windows\System32\BPAInst.dll
C:\Windows\System32\bridgeres.dll
C:\Windows\System32\BrokerFileDialog.dll
C:\Windows\System32\BrokerLib.dll
C:\Windows\System32\browcli.dll
C:\Windows\System32\browserbroker.dll
C:\Windows\System32\browseui.dll
C:\Windows\System32\BTAGService.dll
C:\Windows\System32\BthAvctpSvc.dll
C:\Windows\System32\BthAvrcp.dll
C:\Windows\System32\BthAvrcpAppSvc.dll
C:\Windows\System32\bthci.dll
C:\Windows\System32\BthMtpContextHandler.dll
C:\Windows\System32\bthpanapi.dll
C:\Windows\System32\BthpanContextHandler.dll
C:\Windows\System32\BthRadioMedia.dll
C:\Windows\System32\bthserv.dll
C:\Windows\System32\BthTelemetry.dll
C:\Windows\System32\btpanui.dll
C:\Windows\System32\BWContextHandler.dll
C:\Windows\System32\cabapi.dll
C:\Windows\System32\cabinet.dll
C:\Windows\System32\cabview.dll
C:\Windows\System32\CallButtons.dll
C:\Windows\System32\CallButtons.ProxyStub.dll
C:\Windows\System32\CallHistoryClient.dll
C:\Windows\System32\CameraCaptureUI.dll
C:\Windows\System32\camext.dll
C:\Windows\System32\CapabilityAccessHandlers.dll
C:\Windows\System32\CapabilityAccessManager.dll
C:\Windows\System32\CapabilityAccessManagerClient.dll
C:\Windows\System32\capauthz.dll
C:\Windows\System32\capiprovider.dll
C:\Windows\System32\capisp.dll
C:\Windows\System32\CaptureService.dll
C:\Windows\System32\CastingShellExt.dll
C:\Windows\System32\CastLaunch.dll
C:\Windows\System32\catsrv.dll
C:\Windows\System32\catsrvps.dll
C:\Windows\System32\catsrvut.dll
C:\Windows\System32\cbclient.dll
C:\Windows\System32\CBDHSvc.dll
C:\Windows\System32\cca.dll
C:\Windows\System32\cdd.dll
C:\Windows\System32\cdosys.dll
C:\Windows\System32\cdp.dll
C:\Windows\System32\cdprt.dll
C:\Windows\System32\cdpsvc.dll
C:\Windows\System32\cdpusersvc.dll
C:\Windows\System32\cellulardatacapabilityhandler.dll
C:\Windows\System32\cemapi.dll
C:\Windows\System32\certadm.dll
C:\Windows\System32\certca.dll
C:\Windows\System32\certcli.dll
C:\Windows\System32\certCredProvider.dll
C:\Windows\System32\certenc.dll
C:\Windows\System32\CertEnroll.dll
C:\Windows\System32\CertEnrollUI.dll
C:\Windows\System32\certmgr.dll
C:\Windows\System32\certocm.dll
C:\Windows\System32\certpick.dll
C:\Windows\System32\CertPKICmdlet.dll
C:\Windows\System32\CertPolEng.dll
C:\Windows\System32\certprop.dll
C:\Windows\System32\cewmdm.dll
C:\Windows\System32\cfgbkend.dll
C:\Windows\System32\cfgmgr32.dll
C:\Windows\System32\CfgSPCellular.dll
C:\Windows\System32\cflapi.dll
C:\Windows\System32\cfmifs.dll
C:\Windows\System32\cfmifsproxy.dll
C:\Windows\System32\Chakra.dll
C:\Windows\System32\Chakradiag.dll
C:\Windows\System32\Chakrathunk.dll
C:\Windows\System32\chartv.dll
C:\Windows\System32\ChatApis.dll
C:\Windows\System32\ChsStrokeDS.dll
C:\Windows\System32\ChtBopomofoDS.dll
C:\Windows\System32\ChtCangjieDS.dll
C:\Windows\System32\ChtHkStrokeDS.dll
C:\Windows\System32\ChtQuickDS.dll
C:\Windows\System32\ChxAPDS.dll
C:\Windows\System32\ChxDecoder.dll
C:\Windows\System32\ChxHAPDS.dll
C:\Windows\System32\chxinputrouter.dll
C:\Windows\System32\chxranker.dll
C:\Windows\System32\CHxReadingStringIME.dll
C:\Windows\System32\ci.dll
C:\Windows\System32\cic.dll
C:\Windows\System32\cimfs.dll
C:\Windows\System32\CIWmi.dll
C:\Windows\System32\clbcatq.dll
C:\Windows\System32\cldapi.dll
C:\Windows\System32\CleanPCCSP.dll
C:\Windows\System32\clfsw32.dll
C:\Windows\System32\cliconfg.dll
C:\Windows\System32\ClipboardServer.dll
C:\Windows\System32\Clipc.dll
C:\Windows\System32\ClipSVC.dll
C:\Windows\System32\clipwinrt.dll
C:\Windows\System32\cloudAP.dll
C:\Windows\System32\CloudDesktopCSP.dll
C:\Windows\System32\CloudDomainJoinAUG.dll
C:\Windows\System32\CloudDomainJoinDataModelServer.dll
C:\Windows\System32\CloudExperienceHost.dll
C:\Windows\System32\CloudExperienceHostBroker.dll
C:\Windows\System32\CloudExperienceHostCommon.dll
C:\Windows\System32\CloudExperienceHostRedirection.dll
C:\Windows\System32\CloudExperienceHostUser.dll
C:\Windows\System32\CloudIdWxhExtension.dll
C:\Windows\System32\CloudRecoveryDownloadTool.dll
C:\Windows\System32\CloudRestoreLauncher.dll
C:\Windows\System32\clrhost.dll
C:\Windows\System32\clusapi.dll
C:\Windows\System32\cmcfg32.dll
C:\Windows\System32\cmdext.dll
C:\Windows\System32\cmdial32.dll
C:\Windows\System32\cmgrcspps.dll
C:\Windows\System32\cmifw.dll
C:\Windows\System32\cmintegrator.dll
C:\Windows\System32\cmlua.dll
C:\Windows\System32\cmpbk32.dll
C:\Windows\System32\cmstplua.dll
C:\Windows\System32\cmutil.dll
C:\Windows\System32\cngcredui.dll
C:\Windows\System32\cngprovider.dll
C:\Windows\System32\cnvfat.dll
C:\Windows\System32\CodeIntegrityAggregator.dll
C:\Windows\System32\cofiredm.dll
C:\Windows\System32\colbact.dll
C:\Windows\System32\COLORCNV.DLL
C:\Windows\System32\colorui.dll
C:\Windows\System32\combase.dll
C:\Windows\System32\comcat.dll
C:\Windows\System32\comctl32.dll
C:\Windows\System32\comdlg32.dll
C:\Windows\System32\coml2.dll
C:\Windows\System32\CompatAggregator.dll
C:\Windows\System32\ComposableShellProxyStub.dll
C:\Windows\System32\ComposerFramework.dll
C:\Windows\System32\CompPkgSup.dll
C:\Windows\System32\compstui.dll
C:\Windows\System32\computecore.dll
C:\Windows\System32\computelibeventlog.dll
C:\Windows\System32\computenetwork.dll
C:\Windows\System32\computestorage.dll
C:\Windows\System32\comrepl.dll
C:\Windows\System32\comres.dll
C:\Windows\System32\comsnap.dll
C:\Windows\System32\comsvcs.dll
C:\Windows\System32\comuid.dll
C:\Windows\System32\concrt140.dll
C:\Windows\System32\configmanager2.dll
C:\Windows\System32\ConfigureExpandedStorage.dll
C:\Windows\System32\connect.dll
C:\Windows\System32\ConnectedAccountState.dll
C:\Windows\System32\ConsentExperienceCommon.dll
C:\Windows\System32\ConsentUX.dll
C:\Windows\System32\ConsentUxClient.dll
C:\Windows\System32\console.dll
C:\Windows\System32\ConsoleLogon.dll
C:\Windows\System32\ConstraintIndex.Search.dll
C:\Windows\System32\ContactActivation.dll
C:\Windows\System32\ContactApis.dll
C:\Windows\System32\ContactHarvesterDS.dll
C:\Windows\System32\container.dll
C:\Windows\System32\containerdevicemanagement.dll
C:\Windows\System32\ContentDeliveryManager.Utilities.dll
C:\Windows\System32\ControlCenter.dll
C:\Windows\System32\coreaudiopolicymanagerext.dll
C:\Windows\System32\coredpus.dll
C:\Windows\System32\coreglobconfig.dll
C:\Windows\System32\CoreMas.dll
C:\Windows\System32\CoreMessaging.dll
C:\Windows\System32\CoreMmRes.dll
C:\Windows\System32\CorePrivacySettingsStore.dll
C:\Windows\System32\CoreShell.dll
C:\Windows\System32\CoreShellAPI.dll
C:\Windows\System32\CoreShellExtFramework.dll
C:\Windows\System32\CoreUIComponents.dll
C:\Windows\System32\correngine.dll
C:\Windows\System32\CPFilters.dll
C:\Windows\System32\CredDialogBroker.dll
C:\Windows\System32\CredentialEnrollmentManagerForUser.dll
C:\Windows\System32\CredProv2faHelper.dll
C:\Windows\System32\CredProvCommonCore.dll
C:\Windows\System32\CredProvDataModel.dll
C:\Windows\System32\CredProvHelper.dll
C:\Windows\System32\credprovhost.dll
C:\Windows\System32\credprovs.dll
C:\Windows\System32\credprovslegacy.dll
C:\Windows\System32\credssp.dll
C:\Windows\System32\credui.dll
C:\Windows\System32\crypt32.dll
C:\Windows\System32\cryptbase.dll
C:\Windows\System32\cryptcatsvc.dll
C:\Windows\System32\cryptdlg.dll
C:\Windows\System32\cryptdll.dll
C:\Windows\System32\cryptext.dll
C:\Windows\System32\cryptnet.dll
C:\Windows\System32\cryptngc.dll
C:\Windows\System32\cryptoss.dll
C:\Windows\System32\CryptoWinRT.dll
C:\Windows\System32\cryptsp.dll
C:\Windows\System32\cryptsvc.dll
C:\Windows\System32\crypttpmeksvc.dll
C:\Windows\System32\cryptui.dll
C:\Windows\System32\cryptuiwizard.dll
C:\Windows\System32\cryptxml.dll
C:\Windows\System32\cscapi.dll
C:\Windows\System32\cscdll.dll
C:\Windows\System32\CscMig.dll
C:\Windows\System32\cscobj.dll
C:\Windows\System32\cscsvc.dll
C:\Windows\System32\cscui.dll
C:\Windows\System32\CSDeployRes.dll
C:\Windows\System32\CspCellularSettings.dll
C:\Windows\System32\csplte.dll
C:\Windows\System32\csrsrv.dll
C:\Windows\System32\CSystemEventsBrokerClient.dll
C:\Windows\System32\cxcredprov.dll
C:\Windows\System32\CXHProvisioningServer.dll
C:\Windows\System32\C_G18030.DLL
C:\Windows\System32\c_GSM7.DLL
C:\Windows\System32\C_IS2022.DLL
C:\Windows\System32\C_ISCII.DLL
C:\Windows\System32\d2d1.dll
C:\Windows\System32\d3d10.dll
C:\Windows\System32\d3d10core.dll
C:\Windows\System32\d3d10level9.dll
C:\Windows\System32\d3d10warp.dll
C:\Windows\System32\d3d10_1.dll
C:\Windows\System32\d3d10_1core.dll
C:\Windows\System32\d3d11.dll
C:\Windows\System32\d3d11on12.dll
C:\Windows\System32\D3D12.dll
C:\Windows\System32\D3D12Core.dll
C:\Windows\System32\d3d8thk.dll
C:\Windows\System32\d3d9.dll
C:\Windows\System32\d3d9on12.dll
C:\Windows\System32\D3DCompiler_33.dll
C:\Windows\System32\D3DCompiler_34.dll
C:\Windows\System32\D3DCompiler_35.dll
C:\Windows\System32\D3DCompiler_36.dll
C:\Windows\System32\D3DCompiler_37.dll
C:\Windows\System32\D3DCompiler_38.dll
C:\Windows\System32\D3DCompiler_39.dll
C:\Windows\System32\D3DCompiler_40.dll
C:\Windows\System32\D3DCompiler_41.dll
C:\Windows\System32\D3DCompiler_42.dll
C:\Windows\System32\D3DCompiler_43.dll
C:\Windows\System32\D3DCompiler_47.dll
C:\Windows\System32\d3dcsx_42.dll
C:\Windows\System32\d3dcsx_43.dll
C:\Windows\System32\D3DSCache.dll
C:\Windows\System32\d3dx10.dll
C:\Windows\System32\d3dx10_33.dll
C:\Windows\System32\d3dx10_34.dll
C:\Windows\System32\d3dx10_35.dll
C:\Windows\System32\d3dx10_36.dll
C:\Windows\System32\d3dx10_37.dll
C:\Windows\System32\d3dx10_38.dll
C:\Windows\System32\d3dx10_39.dll
C:\Windows\System32\d3dx10_40.dll
C:\Windows\System32\d3dx10_41.dll
C:\Windows\System32\d3dx10_42.dll
C:\Windows\System32\d3dx10_43.dll
C:\Windows\System32\d3dx11_42.dll
C:\Windows\System32\d3dx11_43.dll
C:\Windows\System32\d3dx9_24.dll
C:\Windows\System32\d3dx9_25.dll
C:\Windows\System32\d3dx9_26.dll
C:\Windows\System32\d3dx9_27.dll
C:\Windows\System32\d3dx9_28.dll
C:\Windows\System32\d3dx9_29.dll
C:\Windows\System32\d3dx9_30.dll
C:\Windows\System32\d3dx9_31.dll
C:\Windows\System32\d3dx9_32.dll
C:\Windows\System32\d3dx9_33.dll
C:\Windows\System32\d3dx9_34.dll
C:\Windows\System32\d3dx9_35.dll
C:\Windows\System32\d3dx9_36.dll
C:\Windows\System32\D3DX9_37.dll
C:\Windows\System32\D3DX9_38.dll
C:\Windows\System32\D3DX9_39.dll
C:\Windows\System32\D3DX9_40.dll
C:\Windows\System32\D3DX9_41.dll
C:\Windows\System32\D3DX9_42.dll
C:\Windows\System32\D3DX9_43.dll
C:\Windows\System32\dab.dll
C:\Windows\System32\dabapi.dll
C:\Windows\System32\dafBth.dll
C:\Windows\System32\DafDnsSd.dll
C:\Windows\System32\dafDockingProvider.dll
C:\Windows\System32\DAFESCL.dll
C:\Windows\System32\DAFIPP.dll
C:\Windows\System32\DAFMCP.dll
C:\Windows\System32\dafpos.dll
C:\Windows\System32\DafPrintProvider.dll
C:\Windows\System32\dafupnp.dll
C:\Windows\System32\dafWCN.dll
C:\Windows\System32\dafWfdProvider.dll
C:\Windows\System32\DAFWSD.dll
C:\Windows\System32\DAMediaManager.dll
C:\Windows\System32\DaOtpCredentialProvider.dll
C:\Windows\System32\das.dll
C:\Windows\System32\dataclen.dll
C:\Windows\System32\DataExchange.dll
C:\Windows\System32\davhlpr.dll
C:\Windows\System32\DavSyncProvider.dll
C:\Windows\System32\daxexec.dll
C:\Windows\System32\dbgcore.dll
C:\Windows\System32\dbgeng.dll
C:\Windows\System32\dbghelp.dll
C:\Windows\System32\DbgModel.dll
C:\Windows\System32\dbnetlib.dll
C:\Windows\System32\dbnmpntw.dll
C:\Windows\System32\dciman32.dll
C:\Windows\System32\dcntel.dll
C:\Windows\System32\dcomp.dll
C:\Windows\System32\dcsvc.dll
C:\Windows\System32\DDACLSys.dll
C:\Windows\System32\DdcClaimsApi.dll
C:\Windows\System32\DdcComImplementationsDesktop.dll
C:\Windows\System32\DDDS.dll
C:\Windows\System32\ddisplay.dll
C:\Windows\System32\DDOIProxy.dll
C:\Windows\System32\DDORes.dll
C:\Windows\System32\ddraw.dll
C:\Windows\System32\ddrawex.dll
C:\Windows\System32\declaredconfiguration.dll
C:\Windows\System32\DefaultDeviceManager.dll
C:\Windows\System32\DefaultPrinterProvider.dll
C:\Windows\System32\defragproxy.dll
C:\Windows\System32\defragres.dll
C:\Windows\System32\defragsvc.dll
C:\Windows\System32\delegatorprovider.dll
C:\Windows\System32\deploymentcsps.dll
C:\Windows\System32\deskadp.dll
C:\Windows\System32\deskmon.dll
C:\Windows\System32\DesktopShellAppStateContract.dll
C:\Windows\System32\DesktopShellExt.dll
C:\Windows\System32\DesktopSwitcherDataModel.dll
C:\Windows\System32\DevDispItemProvider.dll
C:\Windows\System32\DeveloperOptionsSettingsHandlers.dll
C:\Windows\System32\devenum.dll
C:\Windows\System32\deviceaccess.dll
C:\Windows\System32\deviceassociation.dll
C:\Windows\System32\DeviceCenter.dll
C:\Windows\System32\DeviceCompanionAppInstall.dll
C:\Windows\System32\DeviceCredential.dll
C:\Windows\System32\DeviceDirectoryClient.dll
C:\Windows\System32\DeviceDisplayStatusManager.dll
C:\Windows\System32\DeviceDriverRetrievalClient.dll
C:\Windows\System32\DeviceElementSource.dll
C:\Windows\System32\DeviceFlows.DataModel.dll
C:\Windows\System32\DeviceMetadataRetrievalClient.dll
C:\Windows\System32\devicengccredprov.dll
C:\Windows\System32\DevicePairing.dll
C:\Windows\System32\DevicePairingExperienceMEM.dll
C:\Windows\System32\DevicePairingFolder.dll
C:\Windows\System32\DevicePairingProxy.dll
C:\Windows\System32\DeviceReactivation.dll
C:\Windows\System32\deviceregistration.dll
C:\Windows\System32\DeviceSetupManager.dll
C:\Windows\System32\DeviceSetupManagerAPI.dll
C:\Windows\System32\DeviceSetupStatusProvider.dll
C:\Windows\System32\DevicesFlowBroker.dll
C:\Windows\System32\DeviceSoftwareInstallationClient.dll
C:\Windows\System32\DeviceUpdateAgent.dll
C:\Windows\System32\DeviceUxRes.dll
C:\Windows\System32\devinv.dll
C:\Windows\System32\devmgr.dll
C:\Windows\System32\devobj.dll
C:\Windows\System32\DevPropMgr.dll
C:\Windows\System32\DevQueryBroker.dll
C:\Windows\System32\devrtl.dll
C:\Windows\System32\dfdts.dll
C:\Windows\System32\dfscli.dll
C:\Windows\System32\dfshim.dll
C:\Windows\System32\DfsShlEx.dll
C:\Windows\System32\dggpext.dll
C:\Windows\System32\dhcpcmonitor.dll
C:\Windows\System32\dhcpcore.dll
C:\Windows\System32\dhcpcore6.dll
C:\Windows\System32\dhcpcsvc.dll
C:\Windows\System32\dhcpcsvc6.dll
C:\Windows\System32\dhcpsapi.dll
C:\Windows\System32\DiagCpl.dll
C:\Windows\System32\diagnosticdataquery.dll
C:\Windows\System32\DiagnosticDataSettings.dll
C:\Windows\System32\DiagnosticInvoker.dll
C:\Windows\System32\DiagnosticLogCSP.dll
C:\Windows\System32\diagtrack.dll
C:\Windows\System32\dialclient.dll
C:\Windows\System32\dialserver.dll
C:\Windows\System32\DictationManager.dll
C:\Windows\System32\difxapi.dll
C:\Windows\System32\dimsjob.dll
C:\Windows\System32\dimsroam.dll
C:\Windows\System32\dinput.dll
C:\Windows\System32\dinput8.dll
C:\Windows\System32\Direct2DDesktop.dll
C:\Windows\System32\directmanipulation.dll
C:\Windows\System32\directml.dll
C:\Windows\System32\directsr.dll
C:\Windows\System32\directxdatabasehelper.dll
C:\Windows\System32\discan.dll
C:\Windows\System32\DismApi.dll
C:\Windows\System32\DispBroker.Desktop.dll
C:\Windows\System32\DispBroker.dll
C:\Windows\System32\dispex.dll
C:\Windows\System32\Display.dll
C:\Windows\System32\DisplayManager.dll
C:\Windows\System32\dlnashext.dll
C:\Windows\System32\DMAlertListener.ProxyStub.dll
C:\Windows\System32\DmApiSetExtImplDesktop.dll
C:\Windows\System32\DMAppsRes.dll
C:\Windows\System32\dmcfgutils.dll
C:\Windows\System32\dmcmnutils.dll
C:\Windows\System32\dmcommandlineutils.dll
C:\Windows\System32\dmcsps.dll
C:\Windows\System32\dmdlgs.dll
C:\Windows\System32\dmdskmgr.dll
C:\Windows\System32\dmdskres.dll
C:\Windows\System32\dmdskres2.dll
C:\Windows\System32\dmenrollengine.dll
C:\Windows\System32\dmenterprisediagnostics.dll
C:\Windows\System32\dmintf.dll
C:\Windows\System32\dmiso8601utils.dll
C:\Windows\System32\dmloader.dll
C:\Windows\System32\dmocx.dll
C:\Windows\System32\dmoleaututils.dll
C:\Windows\System32\DmOsConfig.dll
C:\Windows\System32\dmprocessxmlfiltered.dll
C:\Windows\System32\dmpushproxy.dll
C:\Windows\System32\DMPushRouterCore.dll
C:\Windows\System32\DMRCDecoder.dll
C:\Windows\System32\DMRServer.dll
C:\Windows\System32\dmsynth.dll
C:\Windows\System32\dmusic.dll
C:\Windows\System32\dmutil.dll
C:\Windows\System32\dmvdsitf.dll
C:\Windows\System32\dmwappushsvc.dll
C:\Windows\System32\dmwmicsp.dll
C:\Windows\System32\dmxmlhelputils.dll
C:\Windows\System32\dnsapi.dll
C:\Windows\System32\dnscmmc.dll
C:\Windows\System32\dnsext.dll
C:\Windows\System32\dnsrslvr.dll
C:\Windows\System32\DockInterface.ProxyStub.dll
C:\Windows\System32\doclient.dll
C:\Windows\System32\docprop.dll
C:\Windows\System32\DocumentPerformanceEvents.dll
C:\Windows\System32\domgmt.dll
C:\Windows\System32\domiprov.dll
C:\Windows\System32\dosettings.dll
C:\Windows\System32\dosvc.dll
C:\Windows\System32\dot3api.dll
C:\Windows\System32\dot3cfg.dll
C:\Windows\System32\dot3gpclnt.dll
C:\Windows\System32\dot3gpui.dll
C:\Windows\System32\dot3msm.dll
C:\Windows\System32\dot3svc.dll
C:\Windows\System32\dot3ui.dll
C:\Windows\System32\dpapi.dll
C:\Windows\System32\dpapiprovider.dll
C:\Windows\System32\dpapisrv.dll
C:\Windows\System32\dplcsp.dll
C:\Windows\System32\dpnaddr.dll
C:\Windows\System32\dpnathlp.dll
C:\Windows\System32\dpnet.dll
C:\Windows\System32\dpnhpast.dll
C:\Windows\System32\dpnhupnp.dll
C:\Windows\System32\dpnlobby.dll
C:\Windows\System32\dps.dll
C:\Windows\System32\dpx.dll
C:\Windows\System32\DragDropExperienceDataExchangeDelegated.dll
C:\Windows\System32\drprov.dll
C:\Windows\System32\drvsetup.dll
C:\Windows\System32\drvstore.dll
C:\Windows\System32\dsauth.dll
C:\Windows\System32\DscCore.dll
C:\Windows\System32\DscCoreConfProv.dll
C:\Windows\System32\dsclient.dll
C:\Windows\System32\dscproxy.dll
C:\Windows\System32\DscTimer.dll
C:\Windows\System32\DsDeployRes.dll
C:\Windows\System32\dsdmo.dll
C:\Windows\System32\dskquota.dll
C:\Windows\System32\dskquoui.dll
C:\Windows\System32\dsound.dll
C:\Windows\System32\dsparse.dll
C:\Windows\System32\dsprop.dll
C:\Windows\System32\dsquery.dll
C:\Windows\System32\dsreg.dll
C:\Windows\System32\dsregtask.dll
C:\Windows\System32\dsrole.dll
C:\Windows\System32\dssec.dll
C:\Windows\System32\dssenh.dll
C:\Windows\System32\dssvc.dll
C:\Windows\System32\Dsui.dll
C:\Windows\System32\dsuiext.dll
C:\Windows\System32\dswave.dll
C:\Windows\System32\dtrace.dll
C:\Windows\System32\dtsh.dll
C:\Windows\System32\DuCsps.dll
C:\Windows\System32\dui70.dll
C:\Windows\System32\duser.dll
C:\Windows\System32\dwmapi.dll
C:\Windows\System32\dwmcore.dll
C:\Windows\System32\dwmghost.dll
C:\Windows\System32\dwminit.dll
C:\Windows\System32\dwmredir.dll
C:\Windows\System32\dwmscene.dll
C:\Windows\System32\DWrite.dll
C:\Windows\System32\DXCore.dll
C:\Windows\System32\dxdiagn.dll
C:\Windows\System32\dxgi.dll
C:\Windows\System32\dxgwdi.dll
C:\Windows\System32\dxilconv.dll
C:\Windows\System32\dxmasf.dll
C:\Windows\System32\DXP.dll
C:\Windows\System32\dxpps.dll
C:\Windows\System32\DxpTaskSync.dll
C:\Windows\System32\dxtmsft.dll
C:\Windows\System32\dxtrans.dll
C:\Windows\System32\dxva2.dll
C:\Windows\System32\dynamoapi.dll
C:\Windows\System32\EAMProgressHandler.dll
C:\Windows\System32\eapa3hst.dll
C:\Windows\System32\eapacfg.dll
C:\Windows\System32\eapahost.dll
C:\Windows\System32\eapp3hst.dll
C:\Windows\System32\eappcfg.dll
C:\Windows\System32\eappcfgui.dll
C:\Windows\System32\eappgnui.dll
C:\Windows\System32\eapphost.dll
C:\Windows\System32\eappprxy.dll
C:\Windows\System32\eapprovp.dll
C:\Windows\System32\eapputil.dll
C:\Windows\System32\eapsimextdesktop.dll
C:\Windows\System32\eapsvc.dll
C:\Windows\System32\EapTeapAuth.dll
C:\Windows\System32\EapTeapConfig.dll
C:\Windows\System32\EapTeapExt.dll
C:\Windows\System32\easconsent.dll
C:\Windows\System32\easinvoker.proxystub.dll
C:\Windows\System32\EasPolicyManagerBrokerPS.dll
C:\Windows\System32\easwrt.dll
C:\Windows\System32\edgeangle.dll
C:\Windows\System32\EdgeContent.dll
C:\Windows\System32\edgehtml.dll
C:\Windows\System32\edgeIso.dll
C:\Windows\System32\EdgeManager.dll
C:\Windows\System32\EdgeResetPlugin.dll
C:\Windows\System32\EditBufferTestHook.dll
C:\Windows\System32\EditionUpgradeHelper.dll
C:\Windows\System32\EditionUpgradeManagerObj.dll
C:\Windows\System32\edpauditapi.dll
C:\Windows\System32\edpcsp.dll
C:\Windows\System32\edptask.dll
C:\Windows\System32\edputil.dll
C:\Windows\System32\efsadu.dll
C:\Windows\System32\efscore.dll
C:\Windows\System32\efsext.dll
C:\Windows\System32\efslsaext.dll
C:\Windows\System32\efssvc.dll
C:\Windows\System32\efsutil.dll
C:\Windows\System32\efswrt.dll
C:\Windows\System32\EhStorAPI.dll
C:\Windows\System32\EhStorPwdMgr.dll
C:\Windows\System32\EhStorShell.dll
C:\Windows\System32\els.dll
C:\Windows\System32\ELSCore.dll
C:\Windows\System32\elsext.dll
C:\Windows\System32\elshyph.dll
C:\Windows\System32\elslad.dll
C:\Windows\System32\elsTrans.dll
C:\Windows\System32\EmailApis.dll
C:\Windows\System32\embeddedmodesvc.dll
C:\Windows\System32\embeddedmodesvcapi.dll
C:\Windows\System32\EmojiDS.dll
C:\Windows\System32\encapi.dll
C:\Windows\System32\energy.dll
C:\Windows\System32\energytask.dll
C:\Windows\System32\enrollmentapi.dll
C:\Windows\System32\EnterpriseAPNCsp.dll
C:\Windows\System32\EnterpriseAppMgmtClient.dll
C:\Windows\System32\EnterpriseAppMgmtSvc.dll
C:\Windows\System32\EnterpriseAppVMgmtCSP.dll
C:\Windows\System32\enterprisecsps.dll
C:\Windows\System32\EnterpriseDesktopAppMgmtCSP.dll
C:\Windows\System32\enterpriseetw.dll
C:\Windows\System32\EnterpriseModernAppMgmtCSP.dll
C:\Windows\System32\enterpriseresourcemanager.dll
C:\Windows\System32\eqossnap.dll
C:\Windows\System32\ErrorDetails.dll
C:\Windows\System32\ErrorDetailsCore.dll
C:\Windows\System32\es.dll
C:\Windows\System32\EsclProtocol.dll
C:\Windows\System32\EsclScan.dll
C:\Windows\System32\EsclWiaDriver.dll
C:\Windows\System32\EscMigPlugin.dll
C:\Windows\System32\EsdSip.dll
C:\Windows\System32\esent.dll
C:\Windows\System32\esentprf.dll
C:\Windows\System32\esevss.dll
C:\Windows\System32\eShims.dll
C:\Windows\System32\ETDCoInstaller15017.dll
C:\Windows\System32\EthernetMediaManager.dll
C:\Windows\System32\ETWCoreUIComponentsResources.dll
C:\Windows\System32\ETWESEProviderResources.dll
C:\Windows\System32\EtwRundown.dll
C:\Windows\System32\EventAggregation.dll
C:\Windows\System32\eventcls.dll
C:\Windows\System32\evr.dll
C:\Windows\System32\ExecModelClient.dll
C:\Windows\System32\execmodelproxy.dll
C:\Windows\System32\ExplorerFrame.dll
C:\Windows\System32\ExSMime.dll
C:\Windows\System32\ExtrasXmlParser.dll
C:\Windows\System32\f3ahvoas.dll
C:\Windows\System32\Facilitator.dll
C:\Windows\System32\Family.Authentication.dll
C:\Windows\System32\Family.Cache.dll
C:\Windows\System32\Family.Client.dll
C:\Windows\System32\Family.SyncEngine.dll
C:\Windows\System32\FamilySafetyExt.dll
C:\Windows\System32\Faultrep.dll
C:\Windows\System32\FaxPrinterInstaller.dll
C:\Windows\System32\fcon.dll
C:\Windows\System32\fdBth.dll
C:\Windows\System32\fdBthProxy.dll
C:\Windows\System32\FdDevQuery.dll
C:\Windows\System32\fde.dll
C:\Windows\System32\fdeploy.dll
C:\Windows\System32\fdPHost.dll
C:\Windows\System32\fdPnp.dll
C:\Windows\System32\fdprint.dll
C:\Windows\System32\fdProxy.dll
C:\Windows\System32\FDResPub.dll
C:\Windows\System32\fdSSDP.dll
C:\Windows\System32\fdWCN.dll
C:\Windows\System32\fdWNet.dll
C:\Windows\System32\fdWSD.dll
C:\Windows\System32\feclient.dll
C:\Windows\System32\ffbroker.dll
C:\Windows\System32\fidocredprov.dll
C:\Windows\System32\FileAppxStreamingDataSource.dll
C:\Windows\System32\filemgmt.dll
C:\Windows\System32\FilterDS.dll
C:\Windows\System32\findnetprinters.dll
C:\Windows\System32\fingerprintcredential.dll
C:\Windows\System32\FirewallAPI.dll
C:\Windows\System32\FirewallControlPanel.dll
C:\Windows\System32\FirewallUX.dll
C:\Windows\System32\FirmwareAttestationServerProxyStub.dll
C:\Windows\System32\FlightSettings.dll
C:\Windows\System32\fltLib.dll
C:\Windows\System32\fltmgrres.dll
C:\Windows\System32\FluencyDS.dll
C:\Windows\System32\fmapi.dll
C:\Windows\System32\fmifs.dll
C:\Windows\System32\fms.dll
C:\Windows\System32\FntCache.dll
C:\Windows\System32\fontext.dll
C:\Windows\System32\FontGlyphAnimator.dll
C:\Windows\System32\fontgroupsoverride.dll
C:\Windows\System32\FontProvider.dll
C:\Windows\System32\fontsub.dll
C:\Windows\System32\fphc.dll
C:\Windows\System32\framedyn.dll
C:\Windows\System32\framedynos.dll
C:\Windows\System32\FrameServer.dll
C:\Windows\System32\FrameServerClient.dll
C:\Windows\System32\FrameServerCore.dll
C:\Windows\System32\FrameServerMonitor.dll
C:\Windows\System32\FrameServerMonitorClient.dll
C:\Windows\System32\frprov.dll
C:\Windows\System32\FSDeployRes.dll
C:\Windows\System32\FsNVSDeviceSource.dll
C:\Windows\System32\FssmInst.dll
C:\Windows\System32\fssmres.dll
C:\Windows\System32\fssprov.dll
C:\Windows\System32\fstx.dll
C:\Windows\System32\fsutilext.dll
C:\Windows\System32\fthsvc.dll
C:\Windows\System32\fundisc.dll
C:\Windows\System32\fveskybackup.dll
C:\Windows\System32\fwbase.dll
C:\Windows\System32\fwcfg.dll
C:\Windows\System32\fwmdmcsp.dll
C:\Windows\System32\fwpolicyiomgr.dll
C:\Windows\System32\FWPUCLNT.DLL
C:\Windows\System32\FwRemoteSvr.dll
C:\Windows\System32\GameChatTranscription.dll
C:\Windows\System32\GameInput.dll
C:\Windows\System32\gamemode.dll
C:\Windows\System32\gamestreamingext.dll
C:\Windows\System32\gameux.dll
C:\Windows\System32\gamingtcui.dll
C:\Windows\System32\gcdef.dll
C:\Windows\System32\gdi32.dll
C:\Windows\System32\gdi32full.dll
C:\Windows\System32\GdiPlus.dll
C:\Windows\System32\generaltel.dll
C:\Windows\System32\Geocommon.dll
C:\Windows\System32\Geolocation.dll
C:\Windows\System32\getuname.dll
C:\Windows\System32\glmf32.dll
C:\Windows\System32\globinputhost.dll
C:\Windows\System32\glu32.dll
C:\Windows\System32\gmsaclient.dll
C:\Windows\System32\gpapi.dll
C:\Windows\System32\GPCSEWrapperCsp.dll
C:\Windows\System32\gpedit.dll
C:\Windows\System32\gpprefcl.dll
C:\Windows\System32\gpprnext.dll
C:\Windows\System32\gpscript.dll
C:\Windows\System32\gpsvc.dll
C:\Windows\System32\gptext.dll
C:\Windows\System32\GraphicsCapture.dll
C:\Windows\System32\GraphicsPerfSvc.dll
C:\Windows\System32\hal.dll
C:\Windows\System32\HalExtIntcLpioDMA.dll
C:\Windows\System32\HalExtIntcPseDMA.dll
C:\Windows\System32\HalExtPL080.dll
C:\Windows\System32\HanjaDS.dll
C:\Windows\System32\hascsp.dll
C:\Windows\System32\HashtagDS.dll
C:\Windows\System32\hbaapi.dll
C:\Windows\System32\hcihealthutils.dll
C:\Windows\System32\hcproviders.dll
C:\Windows\System32\HdcpHandler.dll
C:\Windows\System32\HeatCore.dll
C:\Windows\System32\HelpPaneProxy.dll
C:\Windows\System32\hgcpl.dll
C:\Windows\System32\hhsetup.dll
C:\Windows\System32\hid.dll
C:\Windows\System32\HidCfu.dll
C:\Windows\System32\hidserv.dll
C:\Windows\System32\hlink.dll
C:\Windows\System32\hmkd.dll
C:\Windows\System32\hnetcfg.dll
C:\Windows\System32\HNetCfgClient.dll
C:\Windows\System32\hnetmon.dll
C:\Windows\System32\hotpatchutil.dll
C:\Windows\System32\hotplug.dll
C:\Windows\System32\HrtfApo.dll
C:\Windows\System32\HrtfDspCpu.dll
C:\Windows\System32\HrtfDspCpuFlex1.dll
C:\Windows\System32\hspapi.dll
C:\Windows\System32\hspfw.dll
C:\Windows\System32\httpapi.dll
C:\Windows\System32\httpprxc.dll
C:\Windows\System32\httpprxm.dll
C:\Windows\System32\httpprxp.dll
C:\Windows\System32\HttpsDataSource.dll
C:\Windows\System32\htui.dll
C:\Windows\System32\hvhostsvc.dll
C:\Windows\System32\hvloader.dll
C:\Windows\System32\HvSocket.dll
C:\Windows\System32\hwreqchk.dll
C:\Windows\System32\IA2ComProxy.dll
C:\Windows\System32\ias.dll
C:\Windows\System32\iasacct.dll
C:\Windows\System32\iasads.dll
C:\Windows\System32\iasdatastore.dll
C:\Windows\System32\iashlpr.dll
C:\Windows\System32\IasMigPlugin.dll
C:\Windows\System32\iasnap.dll
C:\Windows\System32\iaspolcy.dll
C:\Windows\System32\iasrad.dll
C:\Windows\System32\iasrecst.dll
C:\Windows\System32\iassam.dll
C:\Windows\System32\iassdo.dll
C:\Windows\System32\iassvcs.dll
C:\Windows\System32\icfupgd.dll
C:\Windows\System32\icm32.dll
C:\Windows\System32\icmp.dll
C:\Windows\System32\icmui.dll
C:\Windows\System32\IconCodecService.dll
C:\Windows\System32\icsigd.dll
C:\Windows\System32\icsvc.dll
C:\Windows\System32\icsvcext.dll
C:\Windows\System32\icsvcvss.dll
C:\Windows\System32\icu.dll
C:\Windows\System32\icuin.dll
C:\Windows\System32\icuuc.dll
C:\Windows\System32\IdCtrls.dll
C:\Windows\System32\IDStore.dll
C:\Windows\System32\IEAdvpack.dll
C:\Windows\System32\ieapfltr.dll
C:\Windows\System32\iedkcs32.dll
C:\Windows\System32\ieframe.dll
C:\Windows\System32\iemigplugin.dll
C:\Windows\System32\iepeers.dll
C:\Windows\System32\ieproxy.dll
C:\Windows\System32\IEProxyDesktop.dll
C:\Windows\System32\iernonce.dll
C:\Windows\System32\iertutil.dll
C:\Windows\System32\iesetup.dll
C:\Windows\System32\iesysprep.dll
C:\Windows\System32\ieui.dll
C:\Windows\System32\ifmon.dll
C:\Windows\System32\ifsutil.dll
C:\Windows\System32\ifsutilx.dll
C:\Windows\System32\IHDS.dll
C:\Windows\System32\IKEEXT.DLL
C:\Windows\System32\imagehlp.dll
C:\Windows\System32\imageres.dll
C:\Windows\System32\imagesp1.dll
C:\Windows\System32\imapi.dll
C:\Windows\System32\imapi2.dll
C:\Windows\System32\imapi2fs.dll
C:\Windows\System32\ime_textinputhelpers.dll
C:\Windows\System32\imgutil.dll
C:\Windows\System32\imm32.dll
C:\Windows\System32\ImplatSetup.dll
C:\Windows\System32\IndexedDbLegacy.dll
C:\Windows\System32\inetcomm.dll
C:\Windows\System32\inetmib1.dll
C:\Windows\System32\INETRES.dll
C:\Windows\System32\InkEd.dll
C:\Windows\System32\InkObjCore.dll
C:\Windows\System32\InprocLogger.dll
C:\Windows\System32\input.dll
C:\Windows\System32\InputCloudStore.dll
C:\Windows\System32\InputHost.dll
C:\Windows\System32\InputInjectionBroker.dll
C:\Windows\System32\InputLocaleManager.dll
C:\Windows\System32\InputService.dll
C:\Windows\System32\InputSwitch.dll
C:\Windows\System32\InputViewExperience.dll
C:\Windows\System32\inseng.dll
C:\Windows\System32\installmon.dll
C:\Windows\System32\InstallService.dll
C:\Windows\System32\InstallServiceTasks.dll
C:\Windows\System32\IntelIHVRouter10.dll
C:\Windows\System32\intel_gfx_api-x64.dll
C:\Windows\System32\internetmail.dll
C:\Windows\System32\InternetMailCsp.dll
C:\Windows\System32\invagent.dll
C:\Windows\System32\InventorySvc.dll
C:\Windows\System32\iologmsg.dll
C:\Windows\System32\ipamapi.dll
C:\Windows\System32\IPHLPAPI.DLL
C:\Windows\System32\iphlpsvc.dll
C:\Windows\System32\ipnathlp.dll
C:\Windows\System32\IpNatHlpClient.dll
C:\Windows\System32\IppCommon.dll
C:\Windows\System32\IppCommonProxy.dll
C:\Windows\System32\iprtprio.dll
C:\Windows\System32\iprtrmgr.dll
C:\Windows\System32\ipsecsnp.dll
C:\Windows\System32\IPSECSVC.DLL
C:\Windows\System32\ipsmsnap.dll
C:\Windows\System32\iri.dll
C:\Windows\System32\iscsicpl.dll
C:\Windows\System32\iscsidsc.dll
C:\Windows\System32\iscsied.dll
C:\Windows\System32\iscsiexe.dll
C:\Windows\System32\iscsilog.dll
C:\Windows\System32\iscsium.dll
C:\Windows\System32\iscsiwmi.dll
C:\Windows\System32\iscsiwmiv2.dll
C:\Windows\System32\ISM.dll
C:\Windows\System32\itircl.dll
C:\Windows\System32\itss.dll
C:\Windows\System32\iuilp.dll
C:\Windows\System32\iumbase.dll
C:\Windows\System32\iumcrypt.dll
C:\Windows\System32\iumdll.dll
C:\Windows\System32\IumSdk.dll
C:\Windows\System32\iyuv_32.dll
C:\Windows\System32\JavaScriptCollectionAgent.dll
C:\Windows\System32\JHI64.dll
C:\Windows\System32\joinproviderol.dll
C:\Windows\System32\joinutil.dll
C:\Windows\System32\JpMapControl.dll
C:\Windows\System32\jpndecoder.dll
C:\Windows\System32\jpninputrouter.dll
C:\Windows\System32\jpnranker.dll
C:\Windows\System32\JpnServiceDS.dll
C:\Windows\System32\jscript.dll
C:\Windows\System32\jscript9.dll
C:\Windows\System32\jscript9diag.dll
C:\Windows\System32\jscript9Legacy.dll
C:\Windows\System32\jsproxy.dll
C:\Windows\System32\kbd101.dll
C:\Windows\System32\kbd101a.dll
C:\Windows\System32\kbd101b.dll
C:\Windows\System32\kbd101c.dll
C:\Windows\System32\kbd103.dll
C:\Windows\System32\kbd106.dll
C:\Windows\System32\kbd106n.dll
C:\Windows\System32\KBDA1.DLL
C:\Windows\System32\KBDA2.DLL
C:\Windows\System32\KBDA3.DLL
C:\Windows\System32\KBDADLM.DLL
C:\Windows\System32\KBDAL.DLL
C:\Windows\System32\KBDARME.DLL
C:\Windows\System32\kbdarmph.dll
C:\Windows\System32\kbdarmty.dll
C:\Windows\System32\KBDARMW.DLL
C:\Windows\System32\kbdax2.dll
C:\Windows\System32\KBDAZE.DLL
C:\Windows\System32\KBDAZEL.DLL
C:\Windows\System32\KBDAZST.DLL
C:\Windows\System32\KBDBASH.DLL
C:\Windows\System32\KBDBE.DLL
C:\Windows\System32\KBDBENE.DLL
C:\Windows\System32\KBDBGPH.DLL
C:\Windows\System32\KBDBGPH1.DLL
C:\Windows\System32\KBDBHC.DLL
C:\Windows\System32\KBDBLR.DLL
C:\Windows\System32\KBDBR.DLL
C:\Windows\System32\KBDBU.DLL
C:\Windows\System32\KBDBUG.DLL
C:\Windows\System32\KBDBULG.DLL
C:\Windows\System32\KBDCA.DLL
C:\Windows\System32\KBDCAN.DLL
C:\Windows\System32\KBDCHER.DLL
C:\Windows\System32\KBDCHERP.DLL
C:\Windows\System32\KBDCMK.DLL
C:\Windows\System32\KBDCR.DLL
C:\Windows\System32\KBDCZ.DLL
C:\Windows\System32\KBDCZ1.DLL
C:\Windows\System32\KBDCZ2.DLL
C:\Windows\System32\KBDDA.DLL
C:\Windows\System32\KBDDIV1.DLL
C:\Windows\System32\KBDDIV2.DLL
C:\Windows\System32\KBDDV.DLL
C:\Windows\System32\KBDDZO.DLL
C:\Windows\System32\KBDES.DLL
C:\Windows\System32\KBDEST.DLL
C:\Windows\System32\KBDFA.DLL
C:\Windows\System32\kbdfar.dll
C:\Windows\System32\KBDFC.DLL
C:\Windows\System32\KBDFI.DLL
C:\Windows\System32\KBDFI1.DLL
C:\Windows\System32\KBDFO.DLL
C:\Windows\System32\KBDFR.DLL
C:\Windows\System32\KBDFRNA.DLL
C:\Windows\System32\KBDFRNB.DLL
C:\Windows\System32\KBDFTHRK.DLL
C:\Windows\System32\KBDGAE.DLL
C:\Windows\System32\KBDGEO.DLL
C:\Windows\System32\kbdgeoer.dll
C:\Windows\System32\kbdgeome.dll
C:\Windows\System32\kbdgeooa.dll
C:\Windows\System32\kbdgeoqw.dll
C:\Windows\System32\KBDGKL.DLL
C:\Windows\System32\KBDGN.DLL
C:\Windows\System32\KBDGR.DLL
C:\Windows\System32\KBDGR1.DLL
C:\Windows\System32\KBDGRE1.DLL
C:\Windows\System32\KBDGRE2.DLL
C:\Windows\System32\KBDGRLND.DLL
C:\Windows\System32\KBDGTHC.DLL
C:\Windows\System32\KBDHAU.DLL
C:\Windows\System32\KBDHAW.DLL
C:\Windows\System32\KBDHE.DLL
C:\Windows\System32\KBDHE220.DLL
C:\Windows\System32\KBDHE319.DLL
C:\Windows\System32\KBDHEB.DLL
C:\Windows\System32\kbdhebl3.dll
C:\Windows\System32\kbdhebsi.dll
C:\Windows\System32\KBDHELA2.DLL
C:\Windows\System32\KBDHELA3.DLL
C:\Windows\System32\KBDHEPT.DLL
C:\Windows\System32\KBDHU.DLL
C:\Windows\System32\KBDHU1.DLL
C:\Windows\System32\kbdibm02.dll
C:\Windows\System32\KBDIBO.DLL
C:\Windows\System32\KBDIC.DLL
C:\Windows\System32\KBDINASA.DLL
C:\Windows\System32\KBDINBE1.DLL
C:\Windows\System32\KBDINBE2.DLL
C:\Windows\System32\KBDINBEN.DLL
C:\Windows\System32\KBDINDEV.DLL
C:\Windows\System32\KBDINEN.DLL
C:\Windows\System32\KBDINGUJ.DLL
C:\Windows\System32\KBDINHIN.DLL
C:\Windows\System32\KBDINKAN.DLL
C:\Windows\System32\KBDINMAL.DLL
C:\Windows\System32\KBDINMAR.DLL
C:\Windows\System32\KBDINORI.DLL
C:\Windows\System32\KBDINPUN.DLL
C:\Windows\System32\KBDINTAM.DLL
C:\Windows\System32\KBDINTEL.DLL
C:\Windows\System32\KBDINUK2.DLL
C:\Windows\System32\KBDIR.DLL
C:\Windows\System32\KBDIT.DLL
C:\Windows\System32\KBDIT142.DLL
C:\Windows\System32\KBDIULAT.DLL
C:\Windows\System32\KBDJAV.DLL
C:\Windows\System32\KBDJPN.DLL
C:\Windows\System32\KBDKAZ.DLL
C:\Windows\System32\KBDKHMR.DLL
C:\Windows\System32\KBDKNI.DLL
C:\Windows\System32\KBDKOR.DLL
C:\Windows\System32\KBDKURD.DLL
C:\Windows\System32\KBDKYR.DLL
C:\Windows\System32\KBDLA.DLL
C:\Windows\System32\KBDLAO.DLL
C:\Windows\System32\kbdlisub.dll
C:\Windows\System32\kbdlisus.dll
C:\Windows\System32\kbdlk41a.dll
C:\Windows\System32\KBDLT.DLL
C:\Windows\System32\KBDLT1.DLL
C:\Windows\System32\KBDLT2.DLL
C:\Windows\System32\KBDLV.DLL
C:\Windows\System32\KBDLV1.DLL
C:\Windows\System32\KBDLVST.DLL
C:\Windows\System32\KBDMAC.DLL
C:\Windows\System32\KBDMACST.DLL
C:\Windows\System32\KBDMAORI.DLL
C:\Windows\System32\KBDMLT47.DLL
C:\Windows\System32\KBDMLT48.DLL
C:\Windows\System32\KBDMON.DLL
C:\Windows\System32\KBDMONMO.DLL
C:\Windows\System32\KBDMONST.DLL
C:\Windows\System32\KBDMYAN.DLL
C:\Windows\System32\KBDNE.DLL
C:\Windows\System32\kbdnec.dll
C:\Windows\System32\kbdnec95.dll
C:\Windows\System32\kbdnecat.dll
C:\Windows\System32\kbdnecnt.dll
C:\Windows\System32\KBDNEPR.DLL
C:\Windows\System32\kbdnko.dll
C:\Windows\System32\KBDNO.DLL
C:\Windows\System32\KBDNO1.DLL
C:\Windows\System32\KBDNSO.DLL
C:\Windows\System32\KBDNTL.DLL
C:\Windows\System32\KBDOGHAM.DLL
C:\Windows\System32\KBDOLCH.DLL
C:\Windows\System32\KBDOLDIT.DLL
C:\Windows\System32\KBDOSA.DLL
C:\Windows\System32\KBDOSM.DLL
C:\Windows\System32\KBDPASH.DLL
C:\Windows\System32\kbdphags.dll
C:\Windows\System32\KBDPL.DLL
C:\Windows\System32\KBDPL1.DLL
C:\Windows\System32\KBDPO.DLL
C:\Windows\System32\KBDRO.DLL
C:\Windows\System32\KBDROPR.DLL
C:\Windows\System32\KBDROST.DLL
C:\Windows\System32\KBDRU.DLL
C:\Windows\System32\KBDRU1.DLL
C:\Windows\System32\KBDRUM.DLL
C:\Windows\System32\KBDSF.DLL
C:\Windows\System32\KBDSG.DLL
C:\Windows\System32\KBDSL.DLL
C:\Windows\System32\KBDSL1.DLL
C:\Windows\System32\KBDSMSFI.DLL
C:\Windows\System32\KBDSMSNO.DLL
C:\Windows\System32\KBDSN1.DLL
C:\Windows\System32\KBDSORA.DLL
C:\Windows\System32\KBDSOREX.DLL
C:\Windows\System32\KBDSORS1.DLL
C:\Windows\System32\KBDSORST.DLL
C:\Windows\System32\KBDSP.DLL
C:\Windows\System32\KBDSW.DLL
C:\Windows\System32\KBDSW09.DLL
C:\Windows\System32\KBDSYR1.DLL
C:\Windows\System32\KBDSYR2.DLL
C:\Windows\System32\KBDTAILE.DLL
C:\Windows\System32\KBDTAJIK.DLL
C:\Windows\System32\KBDTAM99.DLL
C:\Windows\System32\KBDTAT.DLL
C:\Windows\System32\KBDTH0.DLL
C:\Windows\System32\KBDTH1.DLL
C:\Windows\System32\KBDTH2.DLL
C:\Windows\System32\KBDTH3.DLL
C:\Windows\System32\KBDTIFI.DLL
C:\Windows\System32\KBDTIFI2.DLL
C:\Windows\System32\KBDTIPRC.DLL
C:\Windows\System32\KBDTIPRD.DLL
C:\Windows\System32\KBDTT102.DLL
C:\Windows\System32\KBDTUF.DLL
C:\Windows\System32\KBDTUQ.DLL
C:\Windows\System32\KBDTURME.DLL
C:\Windows\System32\KBDTZM.DLL
C:\Windows\System32\KBDUGHR.DLL
C:\Windows\System32\KBDUGHR1.DLL
C:\Windows\System32\KBDUK.DLL
C:\Windows\System32\KBDUKX.DLL
C:\Windows\System32\KBDUR.DLL
C:\Windows\System32\KBDUR1.DLL
C:\Windows\System32\KBDURDU.DLL
C:\Windows\System32\KBDUS.DLL
C:\Windows\System32\KBDUSA.DLL
C:\Windows\System32\KBDUSL.DLL
C:\Windows\System32\KBDUSR.DLL
C:\Windows\System32\KBDUSX.DLL
C:\Windows\System32\KBDUZB.DLL
C:\Windows\System32\KBDVNTC.DLL
C:\Windows\System32\KBDWOL.DLL
C:\Windows\System32\KBDYAK.DLL
C:\Windows\System32\KBDYBA.DLL
C:\Windows\System32\KBDYCC.DLL
C:\Windows\System32\KBDYCL.DLL
C:\Windows\System32\kd.dll
C:\Windows\System32\kdcom.dll
C:\Windows\System32\kdcpw.dll
C:\Windows\System32\kdhvcom.dll
C:\Windows\System32\kdnet.dll
C:\Windows\System32\kdnet_uart16550.dll
C:\Windows\System32\KdsCli.dll
C:\Windows\System32\kdstub.dll
C:\Windows\System32\kdusb.dll
C:\Windows\System32\kd_02_10df.dll
C:\Windows\System32\kd_02_10ec.dll
C:\Windows\System32\kd_02_1137.dll
C:\Windows\System32\kd_02_1414.dll
C:\Windows\System32\kd_02_14e4.dll
C:\Windows\System32\kd_02_15ad.dll
C:\Windows\System32\kd_02_15b3.dll
C:\Windows\System32\kd_02_1969.dll
C:\Windows\System32\kd_02_19a2.dll
C:\Windows\System32\kd_02_1af4.dll
C:\Windows\System32\kd_02_8086.dll
C:\Windows\System32\kd_07_1415.dll
C:\Windows\System32\kd_0C_8086.dll
C:\Windows\System32\keepaliveprovider.dll
C:\Windows\System32\kerb3961.dll
C:\Windows\System32\KerbClientShared.dll
C:\Windows\System32\kerberos.dll
C:\Windows\System32\kernel.appcore.dll
C:\Windows\System32\kernel32.dll
C:\Windows\System32\KernelBase.dll
C:\Windows\System32\KeyCredMgr.dll
C:\Windows\System32\keyiso.dll
C:\Windows\System32\keymgr.dll
C:\Windows\System32\KeywordDetectorMsftSidAdapter.dll
C:\Windows\System32\KnobsCore.dll
C:\Windows\System32\KnobsCsp.dll
C:\Windows\System32\kpssvc.dll
C:\Windows\System32\ksuser.dll
C:\Windows\System32\ktmw32.dll
C:\Windows\System32\l2gpstore.dll
C:\Windows\System32\l2nacp.dll
C:\Windows\System32\LampArray.dll
C:\Windows\System32\LangCleanupSysprepAction.dll
C:\Windows\System32\LanguageComponentsInstaller.dll
C:\Windows\System32\LanguageOverlayServer.dll
C:\Windows\System32\LanguageOverlayUtil.dll
C:\Windows\System32\LanguagePackDiskCleanup.dll
C:\Windows\System32\LanguagePackManagementCSP.dll
C:\Windows\System32\LAPRXY.DLL
C:\Windows\System32\laps.dll
C:\Windows\System32\lapscsp.dll
C:\Windows\System32\LbfoAdminLib.dll
C:\Windows\System32\LegacyNetUX.dll
C:\Windows\System32\LegacySystemSettings.dll
C:\Windows\System32\lfsvc.dll
C:\Windows\System32\libcrypto.dll
C:\Windows\System32\libmfxhw64.dll
C:\Windows\System32\libvpl.dll
C:\Windows\System32\LicenseManager.dll
C:\Windows\System32\LicenseManagerApi.dll
C:\Windows\System32\LicenseManagerSvc.dll
C:\Windows\System32\licenseprotection.dll
C:\Windows\System32\LicensingCSP.dll
C:\Windows\System32\LicensingDiagSpp.dll
C:\Windows\System32\LicensingWinRT.dll
C:\Windows\System32\licmgr10.dll
C:\Windows\System32\linkinfo.dll
C:\Windows\System32\lltdapi.dll
C:\Windows\System32\lltdres.dll
C:\Windows\System32\lltdsvc.dll
C:\Windows\System32\lmhsvc.dll
C:\Windows\System32\loadperf.dll
C:\Windows\System32\localkdcsvc.dll
C:\Windows\System32\localsec.dll
C:\Windows\System32\localspl.dll
C:\Windows\System32\localui.dll
C:\Windows\System32\LocationApi.dll
C:\Windows\System32\LocationFramework.dll
C:\Windows\System32\LocationFrameworkInternalPS.dll
C:\Windows\System32\LocationFrameworkPS.dll
C:\Windows\System32\LocationWinPalMisc.dll
C:\Windows\System32\LockAppBroker.dll
C:\Windows\System32\LockController.dll
C:\Windows\System32\LockHostingFramework.dll
C:\Windows\System32\LockScreenContent.dll
C:\Windows\System32\LockScreenContentHost.dll
C:\Windows\System32\LockScreenData.dll
C:\Windows\System32\loghours.dll
C:\Windows\System32\logoncli.dll
C:\Windows\System32\LogonController.dll
C:\Windows\System32\lpk.dll
C:\Windows\System32\lpksetupproxyserv.dll
C:\Windows\System32\lsaadt.dll
C:\Windows\System32\lsasrv.dll
C:\Windows\System32\LSCSHostPolicy.dll
C:\Windows\System32\lsm.dll
C:\Windows\System32\lsmproxy.dll
C:\Windows\System32\lstelemetry.dll
C:\Windows\System32\lxutil.dll
C:\Windows\System32\lz32.dll
C:\Windows\System32\Magnification.dll
C:\Windows\System32\MaintenanceUI.dll
C:\Windows\System32\ManageCI.dll
C:\Windows\System32\MapConfiguration.dll
C:\Windows\System32\MapControlCore.dll
C:\Windows\System32\MapControlStringsRes.dll
C:\Windows\System32\MapGeocoder.dll
C:\Windows\System32\mapi32.dll
C:\Windows\System32\mapistub.dll
C:\Windows\System32\MapRouter.dll
C:\Windows\System32\MapsBtSvc.dll
C:\Windows\System32\MapsBtSvcProxy.dll
C:\Windows\System32\MapsCSP.dll
C:\Windows\System32\MapsStore.dll
C:\Windows\System32\mapstoasttask.dll
C:\Windows\System32\mapsupdatetask.dll
C:\Windows\System32\MbaeApi.dll
C:\Windows\System32\MbaeApiPublic.dll
C:\Windows\System32\MBMediaManager.dll
C:\Windows\System32\mbsmsapi.dll
C:\Windows\System32\mbussdapi.dll
C:\Windows\System32\MCCSEngineShared.dll
C:\Windows\System32\MCCSPal.dll
C:\Windows\System32\mciavi32.dll
C:\Windows\System32\mcicda.dll
C:\Windows\System32\mciqtz32.dll
C:\Windows\System32\mciseq.dll
C:\Windows\System32\mciwave.dll
C:\Windows\System32\McpManagementProxy.dll
C:\Windows\System32\McpManagementService.dll
C:\Windows\System32\MCRecvSrc.dll
C:\Windows\System32\mcupdate_AuthenticAMD.dll
C:\Windows\System32\mcupdate_GenuineIntel.dll
C:\Windows\System32\MdmCommon.dll
C:\Windows\System32\MdmDiagnostics.dll
C:\Windows\System32\mdminst.dll
C:\Windows\System32\mdmlocalmanagement.dll
C:\Windows\System32\mdmmigrator.dll
C:\Windows\System32\mdmpostprocessevaluator.dll
C:\Windows\System32\mdmregistration.dll
C:\Windows\System32\MediaFoundation.DefaultPerceptionProvider.dll
C:\Windows\System32\MemoryDiagnostic.dll
C:\Windows\System32\MessagingDataModel2.dll
C:\Windows\System32\mf.dll
C:\Windows\System32\mf3216.dll
C:\Windows\System32\mfAACEnc.dll
C:\Windows\System32\mfasfsrcsnk.dll
C:\Windows\System32\mfaudiocnv.dll
C:\Windows\System32\mfc100.dll
C:\Windows\System32\mfc100chs.dll
C:\Windows\System32\mfc100cht.dll
C:\Windows\System32\mfc100deu.dll
C:\Windows\System32\mfc100enu.dll
C:\Windows\System32\mfc100esn.dll
C:\Windows\System32\mfc100fra.dll
C:\Windows\System32\mfc100ita.dll
C:\Windows\System32\mfc100jpn.dll
C:\Windows\System32\mfc100kor.dll
C:\Windows\System32\mfc100rus.dll
C:\Windows\System32\mfc100u.dll
C:\Windows\System32\mfc110.dll
C:\Windows\System32\mfc110chs.dll
C:\Windows\System32\mfc110cht.dll
C:\Windows\System32\mfc110deu.dll
C:\Windows\System32\mfc110enu.dll
C:\Windows\System32\mfc110esn.dll
C:\Windows\System32\mfc110fra.dll
C:\Windows\System32\mfc110ita.dll
C:\Windows\System32\mfc110jpn.dll
C:\Windows\System32\mfc110kor.dll
C:\Windows\System32\mfc110rus.dll
C:\Windows\System32\mfc110u.dll
C:\Windows\System32\mfc120.dll
C:\Windows\System32\mfc120chs.dll
C:\Windows\System32\mfc120cht.dll
C:\Windows\System32\mfc120deu.dll
C:\Windows\System32\mfc120enu.dll
C:\Windows\System32\mfc120esn.dll
C:\Windows\System32\mfc120fra.dll
C:\Windows\System32\mfc120ita.dll
C:\Windows\System32\mfc120jpn.dll
C:\Windows\System32\mfc120kor.dll
C:\Windows\System32\mfc120rus.dll
C:\Windows\System32\mfc120u.dll
C:\Windows\System32\mfc140.dll
C:\Windows\System32\mfc140chs.dll
C:\Windows\System32\mfc140cht.dll
C:\Windows\System32\mfc140deu.dll
C:\Windows\System32\mfc140enu.dll
C:\Windows\System32\mfc140esn.dll
C:\Windows\System32\mfc140fra.dll
C:\Windows\System32\mfc140ita.dll
C:\Windows\System32\mfc140jpn.dll
C:\Windows\System32\mfc140kor.dll
C:\Windows\System32\mfc140rus.dll
C:\Windows\System32\mfc140u.dll
C:\Windows\System32\mfc42.dll
C:\Windows\System32\mfc42u.dll
C:\Windows\System32\MFCaptureEngine.dll
C:\Windows\System32\mfcm100.dll
C:\Windows\System32\mfcm100u.dll
C:\Windows\System32\mfcm110.dll
C:\Windows\System32\mfcm110u.dll
C:\Windows\System32\mfcm120.dll
C:\Windows\System32\mfcm120u.dll
C:\Windows\System32\mfcm140.dll
C:\Windows\System32\mfcm140u.dll
C:\Windows\System32\mfcore.dll
C:\Windows\System32\mfcsubs.dll
C:\Windows\System32\mfds.dll
C:\Windows\System32\MFDshowReverseBridge.dll
C:\Windows\System32\mfdvdec.dll
C:\Windows\System32\mferror.dll
C:\Windows\System32\mfh263enc.dll
C:\Windows\System32\mfh264enc.dll
C:\Windows\System32\mfksproxy.dll
C:\Windows\System32\MFMediaEngine.dll
C:\Windows\System32\mfmjpegdec.dll
C:\Windows\System32\mfmkvsrcsnk.dll
C:\Windows\System32\mfmp4srcsnk.dll
C:\Windows\System32\mfmpeg2srcsnk.dll
C:\Windows\System32\mfnetcore.dll
C:\Windows\System32\mfnetsrc.dll
C:\Windows\System32\mfperfhelper.dll
C:\Windows\System32\mfplat.dll
C:\Windows\System32\MFPlay.dll
C:\Windows\System32\mfps.dll
C:\Windows\System32\mfreadwrite.dll
C:\Windows\System32\mfsensorgroup.dll
C:\Windows\System32\mfsrcsnk.dll
C:\Windows\System32\mfsvr.dll
C:\Windows\System32\mftranscode.dll
C:\Windows\System32\mfvdsp.dll
C:\Windows\System32\mfvfw.dll
C:\Windows\System32\MFWMAAEC.DLL
C:\Windows\System32\mfxplugin64_hw.dll
C:\Windows\System32\mgmtapi.dll
C:\Windows\System32\mgmtrefreshcredprov.dll
C:\Windows\System32\mi.dll
C:\Windows\System32\mibincodec.dll
C:\Windows\System32\Microsoft-Windows-AppModelExecEvents.dll
C:\Windows\System32\microsoft-windows-battery-events.dll
C:\Windows\System32\microsoft-windows-hal-events.dll
C:\Windows\System32\Microsoft-Windows-Internal-Shell-NearShareExperience.dll
C:\Windows\System32\microsoft-windows-kernel-cc-events.dll
C:\Windows\System32\microsoft-windows-kernel-pnp-events.dll
C:\Windows\System32\microsoft-windows-kernel-power-events.dll
C:\Windows\System32\microsoft-windows-kernel-processor-power-events.dll
C:\Windows\System32\Microsoft-Windows-MapControls.dll
C:\Windows\System32\Microsoft-Windows-MosHost.dll
C:\Windows\System32\microsoft-windows-pdc.dll
C:\Windows\System32\microsoft-windows-power-cad-events.dll
C:\Windows\System32\microsoft-windows-processor-aggregator-events.dll
C:\Windows\System32\microsoft-windows-sac-events.dll
C:\Windows\System32\microsoft-windows-sleepstudy-events.dll
C:\Windows\System32\microsoft-windows-storage-tiering-events.dll
C:\Windows\System32\microsoft-windows-system-events.dll
C:\Windows\System32\Microsoft-WindowsPhone-SEManagementProvider.dll
C:\Windows\System32\Microsoft.Bluetooth.Audio.dll
C:\Windows\System32\Microsoft.Bluetooth.Proxy.dll
C:\Windows\System32\Microsoft.Bluetooth.Service.dll
C:\Windows\System32\Microsoft.Bluetooth.UserService.dll
C:\Windows\System32\Microsoft.Graphics.Display.DisplayEnhancementService.dll
C:\Windows\System32\Microsoft.Internal.FrameworkUdk.System.dll
C:\Windows\System32\Microsoft.Internal.WarpPal.dll
C:\Windows\System32\Microsoft.LocalUserImageProvider.dll
C:\Windows\System32\Microsoft.Management.Infrastructure.Native.Unmanaged.dll
C:\Windows\System32\Microsoft.Media.PlayReady.Appraiser.dll
C:\Windows\System32\Microsoft.Uev.AgentDriverEvents.dll
C:\Windows\System32\Microsoft.Uev.AppAgent.dll
C:\Windows\System32\Microsoft.Uev.CabUtil.dll
C:\Windows\System32\Microsoft.Uev.CmUtil.dll
C:\Windows\System32\Microsoft.Uev.Common.dll
C:\Windows\System32\Microsoft.Uev.Common.WinRT.dll
C:\Windows\System32\Microsoft.Uev.CommonBridge.dll
C:\Windows\System32\Microsoft.Uev.ConfigWrapper.dll
C:\Windows\System32\Microsoft.Uev.EventLogMessages.dll
C:\Windows\System32\Microsoft.Uev.LocalSyncProvider.dll
C:\Windows\System32\Microsoft.Uev.ManagedEventLogging.dll
C:\Windows\System32\Microsoft.Uev.Management.dll
C:\Windows\System32\Microsoft.Uev.Management.WmiAccess.dll
C:\Windows\System32\Microsoft.Uev.ModernAppAgent.dll
C:\Windows\System32\Microsoft.Uev.ModernAppCore.dll
C:\Windows\System32\Microsoft.Uev.ModernAppData.WinRT.dll
C:\Windows\System32\Microsoft.Uev.ModernSync.dll
C:\Windows\System32\Microsoft.Uev.MonitorSyncProvider.dll
C:\Windows\System32\Microsoft.Uev.Office2010CustomActions.dll
C:\Windows\System32\Microsoft.Uev.Office2013CustomActions.dll
C:\Windows\System32\Microsoft.Uev.PrinterCustomActions.dll
C:\Windows\System32\Microsoft.Uev.SmbSyncProvider.dll
C:\Windows\System32\Microsoft.Uev.SyncCommon.dll
C:\Windows\System32\Microsoft.Uev.SyncConditions.dll
C:\Windows\System32\Microsoft.Windows.DeploymentServices.ServerManager.Plugin.dll
C:\Windows\System32\Microsoft.Windows.ServerManager.DhcpServer.Plugin.dll
C:\Windows\System32\Microsoft.Windows.ServerManager.NetworkController.Plugin.dll
C:\Windows\System32\Microsoft.Windows.ServerManager.NPASRole.Plugin.dll
C:\Windows\System32\Microsoft.Windows.ServerManager.Plugins.Ipam.dll
C:\Windows\System32\Microsoft.Windows.Storage.Core.dll
C:\Windows\System32\Microsoft.Windows.Storage.StorageBusCache.dll
C:\Windows\System32\MicrosoftAccount.TokenProvider.Core.dll
C:\Windows\System32\MicrosoftAccountCloudAP.dll
C:\Windows\System32\MicrosoftAccountExtension.dll
C:\Windows\System32\MicrosoftAccountTokenProvider.dll
C:\Windows\System32\MicrosoftAccountWAMExtension.dll
C:\Windows\System32\midimap.dll
C:\Windows\System32\migisol.dll
C:\Windows\System32\miguiresource.dll
C:\Windows\System32\mimefilt.dll
C:\Windows\System32\mimofcodec.dll
C:\Windows\System32\MinstoreEvents.dll
C:\Windows\System32\MiracastInputMgr.dll
C:\Windows\System32\MiracastReceiver.dll
C:\Windows\System32\MiracastReceiverExt.dll
C:\Windows\System32\MirrorDrvCompat.dll
C:\Windows\System32\mispace.dll
C:\Windows\System32\MissionControlAggregator.dll
C:\Windows\System32\MitigationConfiguration.dll
C:\Windows\System32\miutils.dll
C:\Windows\System32\mlang.dll
C:\Windows\System32\mmcbase.dll
C:\Windows\System32\mmcndmgr.dll
C:\Windows\System32\mmcshext.dll
C:\Windows\System32\MMDevAPI.dll
C:\Windows\System32\mmgaclient.dll
C:\Windows\System32\mmgaproxystub.dll
C:\Windows\System32\mmres.dll
C:\Windows\System32\mobilenetworking.dll
C:\Windows\System32\modemui.dll
C:\Windows\System32\modernexecserver.dll
C:\Windows\System32\ModernPrintConfigHelper.dll
C:\Windows\System32\moricons.dll
C:\Windows\System32\moshost.dll
C:\Windows\System32\MosHostClient.dll
C:\Windows\System32\moshostcore.dll
C:\Windows\System32\MosStorage.dll
C:\Windows\System32\MP3DMOD.DLL
C:\Windows\System32\MP43DECD.DLL
C:\Windows\System32\MP4SDECD.DLL
C:\Windows\System32\mpeval.dll
C:\Windows\System32\MPG4DECD.DLL
C:\Windows\System32\mpr.dll
C:\Windows\System32\mprapi.dll
C:\Windows\System32\mprddm.dll
C:\Windows\System32\mprdim.dll
C:\Windows\System32\mprext.dll
C:\Windows\System32\mprmsg.dll
C:\Windows\System32\mprsnap.dll
C:\Windows\System32\MPSSVC.dll
C:\Windows\System32\mpunits.dll
C:\Windows\System32\MrmCoreR.dll
C:\Windows\System32\MrmDeploy.dll
C:\Windows\System32\MrmIndexer.dll
C:\Windows\System32\mrt100.dll
C:\Windows\System32\mrt_map.dll
C:\Windows\System32\ms3dthumbnailprovider.dll
C:\Windows\System32\msaatext.dll
C:\Windows\System32\msacm32.dll
C:\Windows\System32\msafd.dll
C:\Windows\System32\MSAlacDecoder.dll
C:\Windows\System32\MSAlacEncoder.dll
C:\Windows\System32\MSAMRNBDecoder.dll
C:\Windows\System32\MSAMRNBEncoder.dll
C:\Windows\System32\MSAMRNBSink.dll
C:\Windows\System32\MSAMRNBSource.dll
C:\Windows\System32\MSAProfileNotificationHandler.dll
C:\Windows\System32\msasn1.dll
C:\Windows\System32\MSAudDecMFT.dll
C:\Windows\System32\msaudite.dll
C:\Windows\System32\msauserext.dll
C:\Windows\System32\mscandui.dll
C:\Windows\System32\mscat32.dll
C:\Windows\System32\msclmd.dll
C:\Windows\System32\mscms.dll
C:\Windows\System32\mscoree.dll
C:\Windows\System32\mscorier.dll
C:\Windows\System32\mscories.dll
C:\Windows\System32\msctf.dll
C:\Windows\System32\MsCtfMonitor.dll
C:\Windows\System32\msctfp.dll
C:\Windows\System32\msctfui.dll
C:\Windows\System32\msctfuimanager.dll
C:\Windows\System32\msdadiag.dll
C:\Windows\System32\msdart.dll
C:\Windows\System32\msdelta.dll
C:\Windows\System32\msdmo.dll
C:\Windows\System32\msdrm.dll
C:\Windows\System32\msdtckrm.dll
C:\Windows\System32\msdtclog.dll
C:\Windows\System32\msdtcprx.dll
C:\Windows\System32\msdtcspoffln.dll
C:\Windows\System32\msdtctm.dll
C:\Windows\System32\msdtcuiu.dll
C:\Windows\System32\msdtcVSp1res.dll
C:\Windows\System32\msfeeds.dll
C:\Windows\System32\msfeedsbs.dll
C:\Windows\System32\MSFlacDecoder.dll
C:\Windows\System32\MSFlacEncoder.dll
C:\Windows\System32\msftedit.dll
C:\Windows\System32\MsftOemDllIgneous.dll
C:\Windows\System32\mshtml.dll
C:\Windows\System32\MshtmlDac.dll
C:\Windows\System32\mshtmled.dll
C:\Windows\System32\mshtmler.dll
C:\Windows\System32\msi.dll
C:\Windows\System32\MsiCofire.dll
C:\Windows\System32\msidcrl40.dll
C:\Windows\System32\msident.dll
C:\Windows\System32\msidle.dll
C:\Windows\System32\msidntld.dll
C:\Windows\System32\msieftp.dll
C:\Windows\System32\msihnd.dll
C:\Windows\System32\msiltcfg.dll
C:\Windows\System32\msimg32.dll
C:\Windows\System32\msimsg.dll
C:\Windows\System32\msimtf.dll
C:\Windows\System32\msisip.dll
C:\Windows\System32\msIso.dll
C:\Windows\System32\msiwer.dll
C:\Windows\System32\MsixDataSourceExtensionPS.dll
C:\Windows\System32\mskeyprotcli.dll
C:\Windows\System32\mskeyprotect.dll
C:\Windows\System32\msls31.dll
C:\Windows\System32\MSMPEG2ENC.DLL
C:\Windows\System32\msmpeg2vdec.dll
C:\Windows\System32\msobjs.dll
C:\Windows\System32\msoert2.dll
C:\Windows\System32\MSOpusDecoder.dll
C:\Windows\System32\mspatcha.dll
C:\Windows\System32\mspatchc.dll
C:\Windows\System32\MSPhotography.dll
C:\Windows\System32\msports.dll
C:\Windows\System32\msprivs.dll
C:\Windows\System32\msrating.dll
C:\Windows\System32\MsRdpWebAccess.dll
C:\Windows\System32\msrle32.dll
C:\Windows\System32\msscntrs.dll
C:\Windows\System32\mssecuser.dll
C:\Windows\System32\mssecwfpu.dll
C:\Windows\System32\mssign32.dll
C:\Windows\System32\mssip32.dll
C:\Windows\System32\mssitlb.dll
C:\Windows\System32\MsSpellCheckingFacility.dll
C:\Windows\System32\mssph.dll
C:\Windows\System32\mssprxy.dll
C:\Windows\System32\mssrch.dll
C:\Windows\System32\mssvp.dll
C:\Windows\System32\mstask.dll
C:\Windows\System32\msTextPrediction.dll
C:\Windows\System32\mstscax.dll
C:\Windows\System32\mstsmhst.dll
C:\Windows\System32\mstsmmc.dll
C:\Windows\System32\msutb.dll
C:\Windows\System32\msv1_0.dll
C:\Windows\System32\msvcirt.dll
C:\Windows\System32\msvcp100.dll
C:\Windows\System32\msvcp110.dll
C:\Windows\System32\msvcp110_win.dll
C:\Windows\System32\msvcp120.dll
C:\Windows\System32\msvcp120_clr0400.dll
C:\Windows\System32\msvcp140.dll
C:\Windows\System32\msvcp140_1.dll
C:\Windows\System32\msvcp140_2.dll
C:\Windows\System32\msvcp140_atomic_wait.dll
C:\Windows\System32\msvcp140_clr0400.dll
C:\Windows\System32\msvcp140_codecvt_ids.dll
C:\Windows\System32\msvcp60.dll
C:\Windows\System32\msvcp_win.dll
C:\Windows\System32\msvcr100.dll
C:\Windows\System32\msvcr100_clr0400.dll
C:\Windows\System32\msvcr110.dll
C:\Windows\System32\msvcr120.dll
C:\Windows\System32\msvcr120_clr0400.dll
C:\Windows\System32\msvcrt.dll
C:\Windows\System32\msvfw32.dll
C:\Windows\System32\msvidc32.dll
C:\Windows\System32\MSVidCtl.dll
C:\Windows\System32\MSVideoDSP.dll
C:\Windows\System32\msvproc.dll
C:\Windows\System32\MSWB7.dll
C:\Windows\System32\MSWB70804.dll
C:\Windows\System32\mswmdm.dll
C:\Windows\System32\mswsock.dll
C:\Windows\System32\msxml3.dll
C:\Windows\System32\msxml3r.dll
C:\Windows\System32\msxml6.dll
C:\Windows\System32\msxml6r.dll
C:\Windows\System32\msyuv.dll
C:\Windows\System32\MtcModel.dll
C:\Windows\System32\MTF.dll
C:\Windows\System32\MTFAppServiceDS.dll
C:\Windows\System32\MtfDecoder.dll
C:\Windows\System32\MTFFuzzyDS.dll
C:\Windows\System32\MTFServer.dll
C:\Windows\System32\MTFSpellcheckDS.dll
C:\Windows\System32\mtxclu.dll
C:\Windows\System32\mtxdm.dll
C:\Windows\System32\mtxex.dll
C:\Windows\System32\mtxoci.dll
C:\Windows\System32\muifontsetup.dll
C:\Windows\System32\MUILanguageCleanup.dll
C:\Windows\System32\museuxdocked.dll
C:\Windows\System32\MusUpdateHandlers.dll
C:\Windows\System32\MusUpdateHandlers1.dll
C:\Windows\System32\MuxInst.dll
C:\Windows\System32\mycomput.dll
C:\Windows\System32\mydocs.dll
C:\Windows\System32\NAPCRYPT.DLL
C:\Windows\System32\NapiNSP.dll
C:\Windows\System32\NaturalAuth.dll
C:\Windows\System32\NaturalAuthClient.dll
C:\Windows\System32\NaturalLanguage6.dll
C:\Windows\System32\navshutdown.dll
C:\Windows\System32\NcaApi.dll
C:\Windows\System32\NcaSvc.dll
C:\Windows\System32\ncbservice.dll
C:\Windows\System32\NcdProp.dll
C:\Windows\System32\nci.dll
C:\Windows\System32\ncobjapi.dll
C:\Windows\System32\ncrypt.dll
C:\Windows\System32\ncryptprov.dll
C:\Windows\System32\ncryptsslp.dll
C:\Windows\System32\ncsi.dll
C:\Windows\System32\ncuprov.dll
C:\Windows\System32\nddeapi.dll
C:\Windows\System32\ndfapi.dll
C:\Windows\System32\ndfetw.dll
C:\Windows\System32\ndfhcdiscovery.dll
C:\Windows\System32\ndproxystub.dll
C:\Windows\System32\negoexts.dll
C:\Windows\System32\netapi32.dll
C:\Windows\System32\netbios.dll
C:\Windows\System32\netcenter.dll
C:\Windows\System32\netcfgx.dll
C:\Windows\System32\netdiagfx.dll
C:\Windows\System32\NetDriverInstall.dll
C:\Windows\System32\netevent.dll
C:\Windows\System32\netfxperf.dll
C:\Windows\System32\neth.dll
C:\Windows\System32\netid.dll
C:\Windows\System32\netiohlp.dll
C:\Windows\System32\netjoin.dll
C:\Windows\System32\netlogon.dll
C:\Windows\System32\netman.dll
C:\Windows\System32\netmsg.dll
C:\Windows\System32\netplwiz.dll
C:\Windows\System32\netprofm.dll
C:\Windows\System32\netprofmsvc.dll
C:\Windows\System32\netprovfw.dll
C:\Windows\System32\netprovisionsp.dll
C:\Windows\System32\NetSetupApi.dll
C:\Windows\System32\NetSetupEngine.dll
C:\Windows\System32\NetSetupShim.dll
C:\Windows\System32\NetSetupSvc.dll
C:\Windows\System32\netshell.dll
C:\Windows\System32\nettrace.dll
C:\Windows\System32\netutils.dll
C:\Windows\System32\NetworkBindingEngineMigPlugin.dll
C:\Windows\System32\NetworkCollectionAgent.dll
C:\Windows\System32\NetworkDesktopSettings.dll
C:\Windows\System32\networkexplorer.dll
C:\Windows\System32\networkhelper.dll
C:\Windows\System32\NetworkIcon.dll
C:\Windows\System32\networkitemfactory.dll
C:\Windows\System32\NetworkMobileSettings.dll
C:\Windows\System32\NetworkProxyCsp.dll
C:\Windows\System32\NetworkQoSPolicyCSP.dll
C:\Windows\System32\NetworkUXBroker.dll
C:\Windows\System32\newdev.dll
C:\Windows\System32\NFCProvisioningPlugin.dll
C:\Windows\System32\NfcRadioMedia.dll
C:\Windows\System32\ngccredprov.dll
C:\Windows\System32\NgcCtnr.dll
C:\Windows\System32\NgcCtnrGidsHandler.dll
C:\Windows\System32\NgcCtnrSvc.dll
C:\Windows\System32\ngckeyenum.dll
C:\Windows\System32\ngcksp.dll
C:\Windows\System32\ngclocal.dll
C:\Windows\System32\ngcpopkeysrv.dll
C:\Windows\System32\NgcProCsp.dll
C:\Windows\System32\ngcrecovery.dll
C:\Windows\System32\ngcsvc.dll
C:\Windows\System32\ngctasks.dll
C:\Windows\System32\ngcutils.dll
C:\Windows\System32\ninput.dll
C:\Windows\System32\NL7Data0804.dll
C:\Windows\System32\NL7Lexicons0804.dll
C:\Windows\System32\NL7Models0804.dll
C:\Windows\System32\nlaapi.dll
C:\Windows\System32\nlansp_c.dll
C:\Windows\System32\nlhtml.dll
C:\Windows\System32\nlmgp.dll
C:\Windows\System32\nlmproxy.dll
C:\Windows\System32\nlmsprep.dll
C:\Windows\System32\nlsbres.dll
C:\Windows\System32\NlsData0000.dll
C:\Windows\System32\Nlsdl.dll
C:\Windows\System32\NmaDirect.dll
C:\Windows\System32\noise.dll
C:\Windows\System32\nonarpinv.dll
C:\Windows\System32\normaliz.dll
C:\Windows\System32\NotificationController.dll
C:\Windows\System32\NotificationControllerPS.dll
C:\Windows\System32\notificationplatformcomponent.dll
C:\Windows\System32\npmproxy.dll
C:\Windows\System32\NPSM.dll
C:\Windows\System32\NPSMDesktopProvider.dll
C:\Windows\System32\nrpsrv.dll
C:\Windows\System32\nrtapi.dll
C:\Windows\System32\nshdnsclient.dll
C:\Windows\System32\nshhttp.dll
C:\Windows\System32\nshipsec.dll
C:\Windows\System32\nshwfp.dll
C:\Windows\System32\nsi.dll
C:\Windows\System32\nsisvc.dll
C:\Windows\System32\ntasn1.dll
C:\Windows\System32\ntdll.dll
C:\Windows\System32\ntdsapi.dll
C:\Windows\System32\ntfsres.dll
C:\Windows\System32\ntlanman.dll
C:\Windows\System32\ntlanui2.dll
C:\Windows\System32\NtlmShared.dll
C:\Windows\System32\ntmarta.dll
C:\Windows\System32\ntprint.dll
C:\Windows\System32\ntshrui.dll
C:\Windows\System32\ntvdm64.dll
C:\Windows\System32\objsel.dll
C:\Windows\System32\occache.dll
C:\Windows\System32\ocsetapi.dll
C:\Windows\System32\odbc32.dll
C:\Windows\System32\odbcbcp.dll
C:\Windows\System32\odbcconf.dll
C:\Windows\System32\odbccp32.dll
C:\Windows\System32\odbccr32.dll
C:\Windows\System32\odbccu32.dll
C:\Windows\System32\odbcint.dll
C:\Windows\System32\odbctrac.dll
C:\Windows\System32\OEMDefaultAssociations.dll
C:\Windows\System32\oemlicense.dll
C:\Windows\System32\offfilt.dll
C:\Windows\System32\officecsp.dll
C:\Windows\System32\offlinelsa.dll
C:\Windows\System32\offlinesam.dll
C:\Windows\System32\offreg.dll
C:\Windows\System32\ole32.dll
C:\Windows\System32\oleacc.dll
C:\Windows\System32\oleacchooks.dll
C:\Windows\System32\oleaccrc.dll
C:\Windows\System32\oleaut32.dll
C:\Windows\System32\oledlg.dll
C:\Windows\System32\oleprn.dll
C:\Windows\System32\OmaDmAgent.dll
C:\Windows\System32\omadmapi.dll
C:\Windows\System32\OnDemandBrokerClient.dll
C:\Windows\System32\OnDemandConnRouteHelper.dll
C:\Windows\System32\OneCoreCommonProxyStub.dll
C:\Windows\System32\OneCoreUAPCommonProxyStub.dll
C:\Windows\System32\OneSettingsClient.dll
C:\Windows\System32\onex.dll
C:\Windows\System32\onexui.dll
C:\Windows\System32\onnxruntime.dll
C:\Windows\System32\OobeWv2Host.dll
C:\Windows\System32\OpcServices.dll
C:\Windows\System32\opencl.dll
C:\Windows\System32\opengl32.dll
C:\Windows\System32\ortcengine.dll
C:\Windows\System32\osbaseln.dll
C:\Windows\System32\OskSupport.dll
C:\Windows\System32\osuninst.dll
C:\Windows\System32\p9np.dll
C:\Windows\System32\p9rdrservice.dll
C:\Windows\System32\packager.dll
C:\Windows\System32\PackageStateChangeHandler.dll
C:\Windows\System32\panmap.dll
C:\Windows\System32\PasswordEnrollmentManager.dll
C:\Windows\System32\pautoenr.dll
C:\Windows\System32\PayloadRestrictions.dll
C:\Windows\System32\PaymentMediatorServiceProxy.dll
C:\Windows\System32\pcacli.dll
C:\Windows\System32\pcadm.dll
C:\Windows\System32\pcaevts.dll
C:\Windows\System32\pcasvc.dll
C:\Windows\System32\pcaui.dll
C:\Windows\System32\PCPKsp.dll
C:\Windows\System32\PCShellCommonProxyStub.dll
C:\Windows\System32\pcsvDevice.dll
C:\Windows\System32\pcwum.dll
C:\Windows\System32\pcwutl.dll
C:\Windows\System32\pdh.dll
C:\Windows\System32\pdhui.dll
C:\Windows\System32\PeerDistCacheProvider.dll
C:\Windows\System32\PeerDistSh.dll
C:\Windows\System32\PeopleAPIs.dll
C:\Windows\System32\PeopleBand.dll
C:\Windows\System32\perfdisk.dll
C:\Windows\System32\perfnet.dll
C:\Windows\System32\perfos.dll
C:\Windows\System32\perfproc.dll
C:\Windows\System32\perfts.dll
C:\Windows\System32\PersonalizationCSP.dll
C:\Windows\System32\pfclient.dll
C:\Windows\System32\PhoneCallHistoryApis.dll
C:\Windows\System32\PhoneOm.dll
C:\Windows\System32\Phoneutil.dll
C:\Windows\System32\PhoneutilRes.dll
C:\Windows\System32\PhotoMetadataHandler.dll
C:\Windows\System32\photowiz.dll
C:\Windows\System32\PickerPlatform.dll
C:\Windows\System32\pid.dll
C:\Windows\System32\pidgenx.dll
C:\Windows\System32\pifmgr.dll
C:\Windows\System32\PimIndexMaintenance.dll
C:\Windows\System32\PimIndexMaintenanceClient.dll
C:\Windows\System32\Pimstore.dll
C:\Windows\System32\pkeyhelper.dll
C:\Windows\System32\PktMonApi.dll
C:\Windows\System32\pku2u.dll
C:\Windows\System32\pla.dll
C:\Windows\System32\playlistfolder.dll
C:\Windows\System32\PlaySndSrv.dll
C:\Windows\System32\PlayToDevice.dll
C:\Windows\System32\PlayToManager.dll
C:\Windows\System32\playtomenu.dll
C:\Windows\System32\PlayToReceiver.dll
C:\Windows\System32\PlayToStatusProvider.dll
C:\Windows\System32\ploptin.dll
C:\Windows\System32\plutonfw_AuthenticAMD.dll
C:\Windows\System32\pngfilt.dll
C:\Windows\System32\pnpclean.dll
C:\Windows\System32\pnpdiag.dll
C:\Windows\System32\pnppolicy.dll
C:\Windows\System32\pnpts.dll
C:\Windows\System32\pnpui.dll
C:\Windows\System32\PNPXAssoc.dll
C:\Windows\System32\PNPXAssocPrx.dll
C:\Windows\System32\policymanager.dll
C:\Windows\System32\policymanagerprecheck.dll
C:\Windows\System32\polstore.dll
C:\Windows\System32\popkeycli.dll
C:\Windows\System32\PortableDeviceApi.dll
C:\Windows\System32\PortableDeviceClassExtension.dll
C:\Windows\System32\PortableDeviceConnectApi.dll
C:\Windows\System32\PortableDeviceStatus.dll
C:\Windows\System32\PortableDeviceSyncProvider.dll
C:\Windows\System32\PortableDeviceTypes.dll
C:\Windows\System32\PortableDeviceWiaCompat.dll
C:\Windows\System32\posetup.dll
C:\Windows\System32\POSyncServices.dll
C:\Windows\System32\pots.dll
C:\Windows\System32\powercpl.dll
C:\Windows\System32\powrprof.dll
C:\Windows\System32\prauthproviders.dll
C:\Windows\System32\PresentationCFFRasterizerNative_v0300.dll
C:\Windows\System32\PresentationHostProxy.dll
C:\Windows\System32\PresentationNative_v0300.dll
C:\Windows\System32\prflbmsg.dll
C:\Windows\System32\Print.PrintSupport.Source.dll
C:\Windows\System32\Print.Workflow.Source.dll
C:\Windows\System32\PrintDeviceConfigurationService.dll
C:\Windows\System32\PrinterAssociationCommon.dll
C:\Windows\System32\PrinterAssociationCommonProxy.dll
C:\Windows\System32\PrinterCleanupTask.dll
C:\Windows\System32\printfilterpipelineprxy.dll
C:\Windows\System32\PrintIsolationProxy.dll
C:\Windows\System32\PrintNotification.dll
C:\Windows\System32\PrintPlatformConfig.dll
C:\Windows\System32\PrintRenderAPIHost.DLL
C:\Windows\System32\PrintScanBrokerService.dll
C:\Windows\System32\printticketvalidation.dll
C:\Windows\System32\printui.dll
C:\Windows\System32\PrintWorkflowService.dll
C:\Windows\System32\PrintWSDAHost.dll
C:\Windows\System32\prncache.dll
C:\Windows\System32\prnfldr.dll
C:\Windows\System32\prnntfy.dll
C:\Windows\System32\prntvpt.dll
C:\Windows\System32\ProductEnumerator.dll
C:\Windows\System32\profapi.dll
C:\Windows\System32\profext.dll
C:\Windows\System32\profprov.dll
C:\Windows\System32\profsvc.dll
C:\Windows\System32\profsvcext.dll
C:\Windows\System32\propsys.dll
C:\Windows\System32\provdatastore.dll
C:\Windows\System32\provdiagnostics.dll
C:\Windows\System32\provengine.dll
C:\Windows\System32\provhandlers.dll
C:\Windows\System32\provisioningcommandscsp.dll
C:\Windows\System32\provisioningcsp.dll
C:\Windows\System32\ProvisioningHandlers.dll
C:\Windows\System32\provmigrate.dll
C:\Windows\System32\provops.dll
C:\Windows\System32\provpackageapidll.dll
C:\Windows\System32\provplatformdesktop.dll
C:\Windows\System32\ProvPluginEng.dll
C:\Windows\System32\ProvSysprep.dll
C:\Windows\System32\provthrd.dll
C:\Windows\System32\ProximityCommon.dll
C:\Windows\System32\ProximityCommonPal.dll
C:\Windows\System32\ProximityRtapiPal.dll
C:\Windows\System32\ProximityService.dll
C:\Windows\System32\ProximityServicePal.dll
C:\Windows\System32\prvdmofcomp.dll
C:\Windows\System32\prxyqry.dll
C:\Windows\System32\psapi.dll
C:\Windows\System32\PSHED.DLL
C:\Windows\System32\psisdecd.dll
C:\Windows\System32\PSModuleDiscoveryProvider.dll
C:\Windows\System32\PsmServiceExtHost.dll
C:\Windows\System32\psmsrv.dll
C:\Windows\System32\pstask.dll
C:\Windows\System32\pstorec.dll
C:\Windows\System32\ptpprov.dll
C:\Windows\System32\puiapi.dll
C:\Windows\System32\puiobj.dll
C:\Windows\System32\PushToInstall.dll
C:\Windows\System32\pwlauncher.dll
C:\Windows\System32\pwrshplugin.dll
C:\Windows\System32\pwrshsip.dll
C:\Windows\System32\pwsso.dll
C:\Windows\System32\qasf.dll
C:\Windows\System32\qcap.dll
C:\Windows\System32\qdv.dll
C:\Windows\System32\qdvd.dll
C:\Windows\System32\qedit.dll
C:\Windows\System32\qedwipes.dll
C:\Windows\System32\qmgr.dll
C:\Windows\System32\quartz.dll
C:\Windows\System32\Query.dll
C:\Windows\System32\QuickActionsDataModel.dll
C:\Windows\System32\QuietHours.dll
C:\Windows\System32\qwave.dll
C:\Windows\System32\RacEngn.dll
C:\Windows\System32\radardt.dll
C:\Windows\System32\radarrs.dll
C:\Windows\System32\RADCUI.dll
C:\Windows\System32\RandomAccessStreamDataSource.dll
C:\Windows\System32\rasadhlp.dll
C:\Windows\System32\rasapi32.dll
C:\Windows\System32\rasauto.dll
C:\Windows\System32\raschap.dll
C:\Windows\System32\raschapext.dll
C:\Windows\System32\rasctrs.dll
C:\Windows\System32\rascustom.dll
C:\Windows\System32\rasdiag.dll
C:\Windows\System32\rasdlg.dll
C:\Windows\System32\rasgcw.dll
C:\Windows\System32\rasman.dll
C:\Windows\System32\rasmans.dll
C:\Windows\System32\rasmbmgr.dll
C:\Windows\System32\RasMediaManager.dll
C:\Windows\System32\rasmontr.dll
C:\Windows\System32\rasplap.dll
C:\Windows\System32\rasppp.dll
C:\Windows\System32\rassfm.dll
C:\Windows\System32\rastapi.dll
C:\Windows\System32\rastls.dll
C:\Windows\System32\rastlsext.dll
C:\Windows\System32\rasuser.dll
C:\Windows\System32\RdmsInst.dll
C:\Windows\System32\rdmsres.dll
C:\Windows\System32\RdpAvenc.dll
C:\Windows\System32\rdpbase.dll
C:\Windows\System32\rdpcfgex.dll
C:\Windows\System32\rdpcorets.dll
C:\Windows\System32\rdpcredentialprovider.dll
C:\Windows\System32\RdpDwmEncoder.dll
C:\Windows\System32\rdpendp.dll
C:\Windows\System32\rdpnanoTransport.dll
C:\Windows\System32\RdpSaPs.dll
C:\Windows\System32\rdpserverbase.dll
C:\Windows\System32\rdpsharercom.dll
C:\Windows\System32\RdpShellExt.dll
C:\Windows\System32\RdpShellLoader.dll
C:\Windows\System32\rdpviewerax.dll
C:\Windows\System32\RDSAppXHelper.dll
C:\Windows\System32\rdsdwmdr.dll
C:\Windows\System32\rdvvmtransport.dll
C:\Windows\System32\ReAgent.dll
C:\Windows\System32\ReAgentTask.dll
C:\Windows\System32\recovery.dll
C:\Windows\System32\RefsDedupSvc.Proxy.dll
C:\Windows\System32\regapi.dll
C:\Windows\System32\RegCtrl.dll
C:\Windows\System32\regidle.dll
C:\Windows\System32\regsvc.dll
C:\Windows\System32\reguwpapi.dll
C:\Windows\System32\ReInfo.dll
C:\Windows\System32\remoteaudioendpoint.dll
C:\Windows\System32\remotepg.dll
C:\Windows\System32\RemoteRemediationCSP.dll
C:\Windows\System32\RemoteWipeCSP.dll
C:\Windows\System32\RemovableMediaProvisioningPlugin.dll
C:\Windows\System32\RemoveDeviceContextHandler.dll
C:\Windows\System32\RemoveDeviceElevated.dll
C:\Windows\System32\ReportingCSP.dll
C:\Windows\System32\RESAMPLEDMO.DLL
C:\Windows\System32\ResetEngine.dll
C:\Windows\System32\ResetEngOnline.dll
C:\Windows\System32\ResourcePolicyClient.dll
C:\Windows\System32\ResourcePolicyServer.dll
C:\Windows\System32\resutils.dll
C:\Windows\System32\rgb9rast.dll
C:\Windows\System32\riched20.dll
C:\Windows\System32\riched32.dll
C:\Windows\System32\RjvMDMConfig.dll
C:\Windows\System32\RMapi.dll
C:\Windows\System32\rmclient.dll
C:\Windows\System32\RMSRoamingSecurity.dll
C:\Windows\System32\rnr20.dll
C:\Windows\System32\RoamingSecurity.dll
C:\Windows\System32\rometadata.dll
C:\Windows\System32\RotMgr.dll
C:\Windows\System32\RpcEpMap.dll
C:\Windows\System32\rpchttp.dll
C:\Windows\System32\RpcNs4.dll
C:\Windows\System32\rpcnsh.dll
C:\Windows\System32\rpcrt4.dll
C:\Windows\System32\RpcRtRemote.dll
C:\Windows\System32\rpcss.dll
C:\Windows\System32\rsaenh.dll
C:\Windows\System32\RsDMFT64.dll
C:\Windows\System32\RsDMFT_Assets.dll
C:\Windows\System32\RsEyeContactCorrection_Assets.dll
C:\Windows\System32\rshx32.dll
C:\Windows\System32\RstMwEventLogMsg.dll
C:\Windows\System32\RstrtMgr.dll
C:\Windows\System32\rtffilt.dll
C:\Windows\System32\rtm.dll
C:\Windows\System32\rtmcodecs.dll
C:\Windows\System32\RTMediaFrame.dll
C:\Windows\System32\rtmmvrortc.dll
C:\Windows\System32\rtmpal.dll
C:\Windows\System32\rtmpltfm.dll
C:\Windows\System32\rtrfiltr.dll
C:\Windows\System32\rtutils.dll
C:\Windows\System32\RTWorkQ.dll
C:\Windows\System32\RuleBasedDS.dll
C:\Windows\System32\sacsvr.dll
C:\Windows\System32\samcli.dll
C:\Windows\System32\samlib.dll
C:\Windows\System32\samsrv.dll
C:\Windows\System32\sas.dll
C:\Windows\System32\sbe.dll
C:\Windows\System32\sbeio.dll
C:\Windows\System32\sberes.dll
C:\Windows\System32\sbservicetrigger.dll
C:\Windows\System32\scansetting.dll
C:\Windows\System32\SCardBi.dll
C:\Windows\System32\SCardDlg.dll
C:\Windows\System32\SCardSvr.dll
C:\Windows\System32\scavengeui.dll
C:\Windows\System32\ScDeviceEnum.dll
C:\Windows\System32\scecli.dll
C:\Windows\System32\scesrv.dll
C:\Windows\System32\schannel.dll
C:\Windows\System32\schedcli.dll
C:\Windows\System32\schedsvc.dll
C:\Windows\System32\scksp.dll
C:\Windows\System32\scrdenrl.dll
C:\Windows\System32\scripto.dll
C:\Windows\System32\scrobj.dll
C:\Windows\System32\scrptadm.dll
C:\Windows\System32\scrrun.dll
C:\Windows\System32\SDClient.dll
C:\Windows\System32\SDDS.dll
C:\Windows\System32\SDFHost.dll
C:\Windows\System32\sdhcinst.dll
C:\Windows\System32\sdiageng.dll
C:\Windows\System32\sdiagprv.dll
C:\Windows\System32\sdiagschd.dll
C:\Windows\System32\sdohlp.dll
C:\Windows\System32\sdpapi.dll
C:\Windows\System32\sdprov.dll
C:\Windows\System32\Search.ProtocolHandler.MAPI2.dll
C:\Windows\System32\SearchFolder.dll
C:\Windows\System32\SearchIndexerCore.dll
C:\Windows\System32\SebBackgroundManagerPolicy.dll
C:\Windows\System32\sechost.dll
C:\Windows\System32\seclogon.dll
C:\Windows\System32\secproc.dll
C:\Windows\System32\secproc_isv.dll
C:\Windows\System32\secproc_ssp.dll
C:\Windows\System32\secproc_ssp_isv.dll
C:\Windows\System32\secur32.dll
C:\Windows\System32\SecureTimeAggregator.dll
C:\Windows\System32\security.dll
C:\Windows\System32\SecurityHealthAgent.dll
C:\Windows\System32\SecurityHealthCore.dll
C:\Windows\System32\SecurityHealthProxyStub.dll
C:\Windows\System32\SecurityHealthSSO.dll
C:\Windows\System32\SecurityHealthSsoUdk.dll
C:\Windows\System32\SecurityHealthUdk.dll
C:\Windows\System32\SEMgrPS.dll
C:\Windows\System32\SEMgrSvc.dll
C:\Windows\System32\sendmail.dll
C:\Windows\System32\Sens.dll
C:\Windows\System32\SensApi.dll
C:\Windows\System32\SenseSubAuth.dll
C:\Windows\System32\SensorPerformanceEvents.dll
C:\Windows\System32\SensorsApi.dll
C:\Windows\System32\SensorsClassExtension.dll
C:\Windows\System32\SensorsCpl.dll
C:\Windows\System32\SensorService.dll
C:\Windows\System32\SensorsNativeApi.dll
C:\Windows\System32\SensorsNativeApi.V2.dll
C:\Windows\System32\SensorsUtilsV2.dll
C:\Windows\System32\sensrsvc.dll
C:\Windows\System32\serialui.dll
C:\Windows\System32\servercoreshell.dll
C:\Windows\System32\servercoreshelllauncherevents.dll
C:\Windows\System32\ServicingCommon.dll
C:\Windows\System32\ServicingUAPI.dll
C:\Windows\System32\serwvdrv.dll
C:\Windows\System32\SessEnv.dll
C:\Windows\System32\setbcdlocale.dll
C:\Windows\System32\SetNetworkLocation.dll
C:\Windows\System32\SettingsEnvironment.Desktop.dll
C:\Windows\System32\SettingsExtensibilityHandlers.dll
C:\Windows\System32\SettingsHandlers_Accessibility.dll
C:\Windows\System32\SettingsHandlers_AdvertisingId.dll
C:\Windows\System32\SettingsHandlers_AppControl.dll
C:\Windows\System32\SettingsHandlers_AppExecutionAlias.dll
C:\Windows\System32\SettingsHandlers_Authentication.dll
C:\Windows\System32\SettingsHandlers_BackgroundApps.dll
C:\Windows\System32\SettingsHandlers_BatteryUsage.dll
C:\Windows\System32\SettingsHandlers_Camera.dll
C:\Windows\System32\SettingsHandlers_CapabilityAccess.dll
C:\Windows\System32\SettingsHandlers_ClosedCaptioning.dll
C:\Windows\System32\SettingsHandlers_CloudPC.dll
C:\Windows\System32\SettingsHandlers_ContentDeliveryManager.dll
C:\Windows\System32\SettingsHandlers_Copilot.dll
C:\Windows\System32\SettingsHandlers_Cortana.dll
C:\Windows\System32\SettingsHandlers_DesktopDisplay.dll
C:\Windows\System32\SettingsHandlers_DesktopTaskbar.dll
C:\Windows\System32\SettingsHandlers_Devices.dll
C:\Windows\System32\SettingsHandlers_Display.dll
C:\Windows\System32\SettingsHandlers_Flights.dll
C:\Windows\System32\SettingsHandlers_Fonts.dll
C:\Windows\System32\SettingsHandlers_ForceSync.dll
C:\Windows\System32\SettingsHandlers_Gaming.dll
C:\Windows\System32\SettingsHandlers_Geolocation.dll
C:\Windows\System32\SettingsHandlers_Gpu.dll
C:\Windows\System32\SettingsHandlers_HumanPresence.dll
C:\Windows\System32\SettingsHandlers_IME.dll
C:\Windows\System32\SettingsHandlers_InkingTypingPrivacy.dll
C:\Windows\System32\SettingsHandlers_InputPersonalization.dll
C:\Windows\System32\SettingsHandlers_InstalledUpdates.dll
C:\Windows\System32\SettingsHandlers_Keyboard.dll
C:\Windows\System32\SettingsHandlers_Language.dll
C:\Windows\System32\SettingsHandlers_Lighting.dll
C:\Windows\System32\SettingsHandlers_ManagePhone.dll
C:\Windows\System32\SettingsHandlers_Maps.dll
C:\Windows\System32\SettingsHandlers_Mouse.dll
C:\Windows\System32\SettingsHandlers_Notifications.dll
C:\Windows\System32\SettingsHandlers_nt.dll
C:\Windows\System32\SettingsHandlers_OneCore_BatterySaver.dll
C:\Windows\System32\SettingsHandlers_OneCore_PowerAndSleep.dll
C:\Windows\System32\SettingsHandlers_OneDriveBackup.dll
C:\Windows\System32\SettingsHandlers_OptionalFeatures.dll
C:\Windows\System32\SettingsHandlers_PCDisplay.dll
C:\Windows\System32\SettingsHandlers_PCDisplayRemote.dll
C:\Windows\System32\SettingsHandlers_Pen.dll
C:\Windows\System32\SettingsHandlers_Region.dll
C:\Windows\System32\SettingsHandlers_Resume.dll
C:\Windows\System32\SettingsHandlers_SIUF.dll
C:\Windows\System32\SettingsHandlers_SpeechPrivacy.dll
C:\Windows\System32\SettingsHandlers_Startup.dll
C:\Windows\System32\SettingsHandlers_Storage.dll
C:\Windows\System32\SettingsHandlers_StorageSense.dll
C:\Windows\System32\SettingsHandlers_Touch.dll
C:\Windows\System32\SettingsHandlers_Troubleshoot.dll
C:\Windows\System32\SettingsHandlers_User.dll
C:\Windows\System32\SettingsHandlers_UserAccount.dll
C:\Windows\System32\SettingsHandlers_UserExperience.dll
C:\Windows\System32\SettingsHandlers_UserIntent.dll
C:\Windows\System32\SettingsHandlers_WorkAccess.dll
C:\Windows\System32\setupapi.dll
C:\Windows\System32\setupcl.dll
C:\Windows\System32\setupcln.dll
C:\Windows\System32\setupetw.dll
C:\Windows\System32\sfc.dll
C:\Windows\System32\sfc_os.dll
C:\Windows\System32\shacct.dll
C:\Windows\System32\shacctprofile.dll
C:\Windows\System32\SharedPCCSP.dll
C:\Windows\System32\ShareHost.dll
C:\Windows\System32\ShareTargets.dll
C:\Windows\System32\SHCore.dll
C:\Windows\System32\shdocvw.dll
C:\Windows\System32\shell32.dll
C:\Windows\System32\ShellCommonCommonProxyStub.dll
C:\Windows\System32\shellstyle.dll
C:\Windows\System32\shfolder.dll
C:\Windows\System32\shgina.dll
C:\Windows\System32\shimeng.dll
C:\Windows\System32\shimgvw.dll
C:\Windows\System32\shlwapi.dll
C:\Windows\System32\shpafact.dll
C:\Windows\System32\shsetup.dll
C:\Windows\System32\shsvcs.dll
C:\Windows\System32\shunimpl.dll
C:\Windows\System32\shutdownext.dll
C:\Windows\System32\shutdownux.dll
C:\Windows\System32\shwebsvc.dll
C:\Windows\System32\signdrv.dll
C:\Windows\System32\SimAuth.dll
C:\Windows\System32\SimCfg.dll
C:\Windows\System32\skci.dll
C:\Windows\System32\slc.dll
C:\Windows\System32\slcext.dll
C:\Windows\System32\slwga.dll
C:\Windows\System32\SmartCardBackgroundPolicy.dll
C:\Windows\System32\SmartcardCredentialProvider.dll
C:\Windows\System32\SmartCardSimulator.dll
C:\Windows\System32\smartscreen.dll
C:\Windows\System32\smartscreenps.dll
C:\Windows\System32\SMBHelperClass.dll
C:\Windows\System32\smbwmiv2.dll
C:\Windows\System32\SmiEngine.dll
C:\Windows\System32\smphost.dll
C:\Windows\System32\SndVolSSO.dll
C:\Windows\System32\snmpapi.dll
C:\Windows\System32\socialapis.dll
C:\Windows\System32\softkbd.dll
C:\Windows\System32\softpub.dll
C:\Windows\System32\SortServer2003Compat.dll
C:\Windows\System32\SortWindows61.dll
C:\Windows\System32\SortWindows62.dll
C:\Windows\System32\SortWindows63.dll
C:\Windows\System32\SortWindows64.dll
C:\Windows\System32\SortWindows6Compat.dll
C:\Windows\System32\spbcd.dll
C:\Windows\System32\spfileq.dll
C:\Windows\System32\spinf.dll
C:\Windows\System32\spmpm.dll
C:\Windows\System32\spnet.dll
C:\Windows\System32\spoolss.dll
C:\Windows\System32\spopk.dll
C:\Windows\System32\spp.dll
C:\Windows\System32\sppc.dll
C:\Windows\System32\sppcext.dll
C:\Windows\System32\sppcomapi.dll
C:\Windows\System32\sppcommdlg.dll
C:\Windows\System32\sppnp.dll
C:\Windows\System32\sppobjs.dll
C:\Windows\System32\sppwinob.dll
C:\Windows\System32\sppwmi.dll
C:\Windows\System32\sprefs.dll
C:\Windows\System32\spwinsat.dll
C:\Windows\System32\spwizeng.dll
C:\Windows\System32\spwizimg.dll
C:\Windows\System32\spwizres.dll
C:\Windows\System32\spwmp.dll
C:\Windows\System32\sqlsrv32.dll
C:\Windows\System32\sqmapi.dll
C:\Windows\System32\srchadmin.dll
C:\Windows\System32\SRH.dll
C:\Windows\System32\srm.dll
C:\Windows\System32\srmclient.dll
C:\Windows\System32\srmlib.dll
C:\Windows\System32\srmscan.dll
C:\Windows\System32\srmshell.dll
C:\Windows\System32\srmstormod.dll
C:\Windows\System32\srmtrace.dll
C:\Windows\System32\srm_ps.dll
C:\Windows\System32\srpapi.dll
C:\Windows\System32\SrpUxNativeSnapIn.dll
C:\Windows\System32\srumapi.dll
C:\Windows\System32\srumsvc.dll
C:\Windows\System32\srvcli.dll
C:\Windows\System32\SrvMgrInst.dll
C:\Windows\System32\srvsvc.dll
C:\Windows\System32\sscore.dll
C:\Windows\System32\sscoreext.dll
C:\Windows\System32\ssdm.dll
C:\Windows\System32\ssdpapi.dll
C:\Windows\System32\ssdpsrv.dll
C:\Windows\System32\sspicli.dll
C:\Windows\System32\sspisrv.dll
C:\Windows\System32\SSShim.dll
C:\Windows\System32\sstpcfg.dll
C:\Windows\System32\sstpsvc.dll
C:\Windows\System32\StartTileData.dll
C:\Windows\System32\Startupscan.dll
C:\Windows\System32\StateRepository.Core.dll
C:\Windows\System32\stclient.dll
C:\Windows\System32\sti.dll
C:\Windows\System32\sti_ci.dll
C:\Windows\System32\stobject.dll
C:\Windows\System32\StorageContextHandler.dll
C:\Windows\System32\StorageUsage.dll
C:\Windows\System32\storagewmi.dll
C:\Windows\System32\storagewmi_passthru.dll
C:\Windows\System32\storewuauth.dll
C:\Windows\System32\Storprop.dll
C:\Windows\System32\StorSvc.dll
C:\Windows\System32\streamci.dll
C:\Windows\System32\StructuredQuery.dll
C:\Windows\System32\SubAuthLoader.dll
C:\Windows\System32\sud.dll
C:\Windows\System32\svrmgrnc.dll
C:\Windows\System32\svsvc.dll
C:\Windows\System32\SwitcherDataModel.dll
C:\Windows\System32\swprv.dll
C:\Windows\System32\sxproxy.dll
C:\Windows\System32\sxs.dll
C:\Windows\System32\sxshared.dll
C:\Windows\System32\sxssrv.dll
C:\Windows\System32\sxsstore.dll
C:\Windows\System32\symcryptk.dll
C:\Windows\System32\symsrv.dll
C:\Windows\System32\SyncCenter.dll
C:\Windows\System32\SyncController.dll
C:\Windows\System32\SyncHostps.dll
C:\Windows\System32\SyncInfrastructure.dll
C:\Windows\System32\SyncInfrastructureps.dll
C:\Windows\System32\SyncProxy.dll
C:\Windows\System32\Syncreg.dll
C:\Windows\System32\SyncRes.dll
C:\Windows\System32\syncutil.dll
C:\Windows\System32\sysclass.dll
C:\Windows\System32\SysFxUI.dll
C:\Windows\System32\sysmain.dll
C:\Windows\System32\sysntfy.dll
C:\Windows\System32\syssetup.dll
C:\Windows\System32\systemcpl.dll
C:\Windows\System32\SystemEventsBrokerClient.dll
C:\Windows\System32\SystemEventsBrokerServer.dll
C:\Windows\System32\SystemSettings.DataModel.dll
C:\Windows\System32\SystemSettings.Handlers.dll
C:\Windows\System32\SystemSettings.SettingsExtensibility.dll
C:\Windows\System32\SystemSettings.UserAccountsHandlers.dll
C:\Windows\System32\SystemSettingsThresholdAdminFlowUI.dll
C:\Windows\System32\SystemSupportInfo.dll
C:\Windows\System32\t2embed.dll
C:\Windows\System32\Tabbtn.dll
C:\Windows\System32\TabbtnEx.dll
C:\Windows\System32\TabSvc.dll
C:\Windows\System32\tapi3.dll
C:\Windows\System32\tapi32.dll
C:\Windows\System32\tapilua.dll
C:\Windows\System32\TapiMigPlugin.dll
C:\Windows\System32\tapiperf.dll
C:\Windows\System32\tapisnap.dll
C:\Windows\System32\tapisrv.dll
C:\Windows\System32\TapiSysprep.dll
C:\Windows\System32\tapiui.dll
C:\Windows\System32\TaskApis.dll
C:\Windows\System32\Taskbar.dll
C:\Windows\System32\taskbarcpl.dll
C:\Windows\System32\taskcomp.dll
C:\Windows\System32\TaskManagerDataLayer.dll
C:\Windows\System32\taskschd.dll
C:\Windows\System32\TaskSchdPS.dll
C:\Windows\System32\tbauth.dll
C:\Windows\System32\tbs.dll
C:\Windows\System32\tcbloader.dll
C:\Windows\System32\tcpipcfg.dll
C:\Windows\System32\tcpmib.dll
C:\Windows\System32\tcpmon.dll
C:\Windows\System32\tcpmonui.dll
C:\Windows\System32\tdh.dll
C:\Windows\System32\tdhres.dll
C:\Windows\System32\TDLMigration.dll
C:\Windows\System32\TEEManagement64.dll
C:\Windows\System32\tellib.dll
C:\Windows\System32\TempSignedLicenseExchangeTask.dll
C:\Windows\System32\termmgr.dll
C:\Windows\System32\termsrv.dll
C:\Windows\System32\TextInputFramework.dll
C:\Windows\System32\TextInputMethodFormatter.dll
C:\Windows\System32\TextShaping.dll
C:\Windows\System32\themecpl.dll
C:\Windows\System32\themeservice.dll
C:\Windows\System32\themeui.dll
C:\Windows\System32\threadpoolwinrt.dll
C:\Windows\System32\thumbcache.dll
C:\Windows\System32\tier2punctuations.dll
C:\Windows\System32\TieringEngineProxy.dll
C:\Windows\System32\TileDataRepository.dll
C:\Windows\System32\TimeBrokerClient.dll
C:\Windows\System32\TimeBrokerServer.dll
C:\Windows\System32\TimeDateMUICallback.dll
C:\Windows\System32\timesync.dll
C:\Windows\System32\TimeSyncTask.dll
C:\Windows\System32\TlsBrand.dll
C:\Windows\System32\tlscsp.dll
C:\Windows\System32\tokenbinding.dll
C:\Windows\System32\TokenBroker.dll
C:\Windows\System32\TokenBrokerUI.dll
C:\Windows\System32\TpmCertResources.dll
C:\Windows\System32\tpmcompc.dll
C:\Windows\System32\TpmCoreProvisioning.dll
C:\Windows\System32\TpmTasks.dll
C:\Windows\System32\tpmvsc.dll
C:\Windows\System32\tprtdll.dll
C:\Windows\System32\tquery.dll
C:\Windows\System32\traffic.dll
C:\Windows\System32\TransliterationRanker.dll
C:\Windows\System32\TransportDSA.dll
C:\Windows\System32\trie.dll
C:\Windows\System32\trkwks.dll
C:\Windows\System32\TrustedSignalCredProv.dll
C:\Windows\System32\tsbyuv.dll
C:\Windows\System32\tscfgwmi.dll
C:\Windows\System32\tsec.dll
C:\Windows\System32\TSErrRedir.dll
C:\Windows\System32\tsf3gip.dll
C:\Windows\System32\tsgqec.dll
C:\Windows\System32\tsmf.dll
C:\Windows\System32\TSpkg.dll
C:\Windows\System32\tsprop.dll
C:\Windows\System32\tsPubIconHelper.dll
C:\Windows\System32\tspubwmi.dll
C:\Windows\System32\tssdjet.dll
C:\Windows\System32\TSSessionUX.dll
C:\Windows\System32\tssrvlic.dll
C:\Windows\System32\TsUsbGDCoInstaller.dll
C:\Windows\System32\TsUsbRedirectionGroupPolicyExtension.dll
C:\Windows\System32\tsuserex.dll
C:\Windows\System32\TSWorkspace.dll
C:\Windows\System32\ttdloader.dll
C:\Windows\System32\ttdplm.dll
C:\Windows\System32\ttdrecord.dll
C:\Windows\System32\ttdrecordcpu.dll
C:\Windows\System32\TtlsAuth.dll
C:\Windows\System32\TtlsCfg.dll
C:\Windows\System32\TtlsExt.dll
C:\Windows\System32\tvratings.dll
C:\Windows\System32\twext.dll
C:\Windows\System32\twinapi.appcore.dll
C:\Windows\System32\twinapi.dll
C:\Windows\System32\twinui.appcore.dll
C:\Windows\System32\twinui.dll
C:\Windows\System32\twinui.pcshell.dll
C:\Windows\System32\txflog.dll
C:\Windows\System32\txfw32.dll
C:\Windows\System32\tzautoupdate.dll
C:\Windows\System32\tzres.dll
C:\Windows\System32\tzsyncres.dll
C:\Windows\System32\ualapi.dll
C:\Windows\System32\ualsvc.dll
C:\Windows\System32\ubpm.dll
C:\Windows\System32\ucrtbase.dll
C:\Windows\System32\ucrtbase_clr0400.dll
C:\Windows\System32\ucrtbase_enclave.dll
C:\Windows\System32\udhisapi.dll
C:\Windows\System32\UdiApi.dll
C:\Windows\System32\UdiApiClient.dll
C:\Windows\System32\uDWM.dll
C:\Windows\System32\UefiCsp.dll
C:\Windows\System32\uexfat.dll
C:\Windows\System32\ufat.dll
C:\Windows\System32\UiaManager.dll
C:\Windows\System32\UIAnimation.dll
C:\Windows\System32\UIAutomationCore.dll
C:\Windows\System32\uicom.dll
C:\Windows\System32\UIManagerBrokerps.dll
C:\Windows\System32\uiomapapi.dll
C:\Windows\System32\uireng.dll
C:\Windows\System32\UIRibbon.dll
C:\Windows\System32\UIRibbonRes.dll
C:\Windows\System32\ulib.dll
C:\Windows\System32\umb.dll
C:\Windows\System32\umcRes.dll
C:\Windows\System32\umdmxfrm.dll
C:\Windows\System32\umpdc.dll
C:\Windows\System32\umpnpmgr.dll
C:\Windows\System32\umpo-overrides.dll
C:\Windows\System32\umpo.dll
C:\Windows\System32\umpodev.dll
C:\Windows\System32\umpoext.dll
C:\Windows\System32\umpowmi.dll
C:\Windows\System32\umrdp.dll
C:\Windows\System32\unattend.dll
C:\Windows\System32\unenrollhook.dll
C:\Windows\System32\unimdmat.dll
C:\Windows\System32\UnionFSApi.dll
C:\Windows\System32\uniplat.dll
C:\Windows\System32\Unistore.dll
C:\Windows\System32\untfs.dll
C:\Windows\System32\UpdateAgent.dll
C:\Windows\System32\UpdateCompression.dll
C:\Windows\System32\updatecsp.dll
C:\Windows\System32\updatepolicy.dll
C:\Windows\System32\UpdateReboot.dll
C:\Windows\System32\upnp.dll
C:\Windows\System32\upnphost.dll
C:\Windows\System32\upshared.dll
C:\Windows\System32\uReFS.dll
C:\Windows\System32\uReFSv1.dll
C:\Windows\System32\ureg.dll
C:\Windows\System32\url.dll
C:\Windows\System32\urlmon.dll
C:\Windows\System32\UsbCApi.dll
C:\Windows\System32\usbceip.dll
C:\Windows\System32\usbmon.dll
C:\Windows\System32\usbperf.dll
C:\Windows\System32\UsbPmApi.dll
C:\Windows\System32\UsbSettingsHandlers.dll
C:\Windows\System32\usbui.dll
C:\Windows\System32\user32.dll
C:\Windows\System32\UserAccountControlSettings.dll
C:\Windows\System32\useractivitybroker.dll
C:\Windows\System32\usercpl.dll
C:\Windows\System32\UserDataAccessRes.dll
C:\Windows\System32\UserDataAccountApis.dll
C:\Windows\System32\UserDataLanguageUtil.dll
C:\Windows\System32\UserDataPlatformHelperUtil.dll
C:\Windows\System32\UserDataService.dll
C:\Windows\System32\UserDataTimeUtil.dll
C:\Windows\System32\UserDataTypeHelperUtil.dll
C:\Windows\System32\UserDeviceRegistration.dll
C:\Windows\System32\UserDeviceRegistration.Ngc.dll
C:\Windows\System32\userenv.dll
C:\Windows\System32\userinitext.dll
C:\Windows\System32\UserLanguageProfileCallback.dll
C:\Windows\System32\usermgr.dll
C:\Windows\System32\usermgrcli.dll
C:\Windows\System32\UserMgrProxy.dll
C:\Windows\System32\usoapi.dll
C:\Windows\System32\usocoreps.dll
C:\Windows\System32\usodocked.dll
C:\Windows\System32\usosvc.dll
C:\Windows\System32\usp10.dll
C:\Windows\System32\ustprov.dll
C:\Windows\System32\utcapi.dll
C:\Windows\System32\utcutil.dll
C:\Windows\System32\utildll.dll
C:\Windows\System32\uudf.dll
C:\Windows\System32\UvcModel.dll
C:\Windows\System32\uwfcfgmgmt.dll
C:\Windows\System32\uwfcsp.dll
C:\Windows\System32\uwfservicingapi.dll
C:\Windows\System32\UXFrame.dll
C:\Windows\System32\UXInit.dll
C:\Windows\System32\uxlib.dll
C:\Windows\System32\uxlibres.dll
C:\Windows\System32\uxtheme.dll
C:\Windows\System32\Vault.dll
C:\Windows\System32\VaultCDS.dll
C:\Windows\System32\vaultcli.dll
C:\Windows\System32\VaultRoaming.dll
C:\Windows\System32\vaultsvc.dll
C:\Windows\System32\vbsapi.dll
C:\Windows\System32\vbscript.dll
C:\Windows\System32\vcamp110.dll
C:\Windows\System32\vcamp120.dll
C:\Windows\System32\vcamp140.dll
C:\Windows\System32\VCardParser.dll
C:\Windows\System32\vccorlib110.dll
C:\Windows\System32\vccorlib120.dll
C:\Windows\System32\vccorlib140.dll
C:\Windows\System32\vcomp100.dll
C:\Windows\System32\vcomp110.dll
C:\Windows\System32\vcomp120.dll
C:\Windows\System32\vcomp140.dll
C:\Windows\System32\vcruntime140.dll
C:\Windows\System32\vcruntime140_1.dll
C:\Windows\System32\vcruntime140_1_clr0400.dll
C:\Windows\System32\vcruntime140_clr0400.dll
C:\Windows\System32\vcruntime140_threads.dll
C:\Windows\System32\vdsbas.dll
C:\Windows\System32\vdsdyn.dll
C:\Windows\System32\vdsutil.dll
C:\Windows\System32\vdsvd.dll
C:\Windows\System32\vds_ps.dll
C:\Windows\System32\verifier.dll
C:\Windows\System32\version.dll
C:\Windows\System32\vertdll.dll
C:\Windows\System32\vfwwdm32.dll
C:\Windows\System32\VhfUm.dll
C:\Windows\System32\VideoHandlers.dll
C:\Windows\System32\VIDRESZR.DLL
C:\Windows\System32\virtdisk.dll
C:\Windows\System32\VirtualMon.dll
C:\Windows\System32\VirtualSurroundApo.dll
C:\Windows\System32\VmApplicationHealthMonitorProxy.dll
C:\Windows\System32\vmbuspipe.dll
C:\Windows\System32\vmdevicehost.dll
C:\Windows\System32\vmictimeprovider.dll
C:\Windows\System32\vmrdvcore.dll
C:\Windows\System32\VocabRoamingHandler.dll
C:\Windows\System32\VoiceActivationManager.dll
C:\Windows\System32\VoiceClarityApo.dll
C:\Windows\System32\vpnike.dll
C:\Windows\System32\vpnikeapi.dll
C:\Windows\System32\VpnSohDesktop.dll
C:\Windows\System32\VPNv2CSP.dll
C:\Windows\System32\VscMgrPS.dll
C:\Windows\System32\vssapi.dll
C:\Windows\System32\vsstrace.dll
C:\Windows\System32\VSSUI.dll
C:\Windows\System32\vss_ps.dll
C:\Windows\System32\vulkan-1-999-0-0-0.dll
C:\Windows\System32\vulkan-1.dll
C:\Windows\System32\w32time.dll
C:\Windows\System32\w32topl.dll
C:\Windows\System32\WaaSAssessment.dll
C:\Windows\System32\WaaSMedicPS.dll
C:\Windows\System32\WaaSMedicSvc.dll
C:\Windows\System32\WABSyncProvider.dll
C:\Windows\System32\WalletBackgroundServiceProxy.dll
C:\Windows\System32\WalletProxy.dll
C:\Windows\System32\WalletService.dll
C:\Windows\System32\wavemsp.dll
C:\Windows\System32\wbemcomn.dll
C:\Windows\System32\wbiosrvc.dll
C:\Windows\System32\wci.dll
C:\Windows\System32\wcimage.dll
C:\Windows\System32\wcmapi.dll
C:\Windows\System32\wcmcsp.dll
C:\Windows\System32\wcmsvc.dll
C:\Windows\System32\WcnApi.dll
C:\Windows\System32\wcncsvc.dll
C:\Windows\System32\WcnEapAuthProxy.dll
C:\Windows\System32\WcnEapPeerProxy.dll
C:\Windows\System32\WcnNetsh.dll
C:\Windows\System32\wcnwiz.dll
C:\Windows\System32\wc_storage.dll
C:\Windows\System32\wdc.dll
C:\Windows\System32\WdfCoInstaller01011.dll
C:\Windows\System32\wdi.dll
C:\Windows\System32\wdigest.dll
C:\Windows\System32\wdscore.dll
C:\Windows\System32\webauthn.dll
C:\Windows\System32\WebcamUi.dll
C:\Windows\System32\webcheck.dll
C:\Windows\System32\webio.dll
C:\Windows\System32\webplatstorageserver.dll
C:\Windows\System32\WebRuntimeManager.dll
C:\Windows\System32\webservices.dll
C:\Windows\System32\Websocket.dll
C:\Windows\System32\wecapi.dll
C:\Windows\System32\wecsvc.dll
C:\Windows\System32\wephostsvc.dll
C:\Windows\System32\wer.dll
C:\Windows\System32\werconcpl.dll
C:\Windows\System32\wercplsupport.dll
C:\Windows\System32\werdiagcontroller.dll
C:\Windows\System32\WerEnc.dll
C:\Windows\System32\weretw.dll
C:\Windows\System32\wersvc.dll
C:\Windows\System32\werui.dll
C:\Windows\System32\wevtapi.dll
C:\Windows\System32\wevtfwd.dll
C:\Windows\System32\wevtsvc.dll
C:\Windows\System32\wfapigp.dll
C:\Windows\System32\wfdprov.dll
C:\Windows\System32\WFDSConMgr.dll
C:\Windows\System32\WFDSConMgrSvc.dll
C:\Windows\System32\WfHC.dll
C:\Windows\System32\whealogr.dll
C:\Windows\System32\whhelper.dll
C:\Windows\System32\wiaaut.dll
C:\Windows\System32\wiadefui.dll
C:\Windows\System32\wiadss.dll
C:\Windows\System32\WiaExtensionHost64.dll
C:\Windows\System32\wiarpc.dll
C:\Windows\System32\wiascanprofiles.dll
C:\Windows\System32\wiaservc.dll
C:\Windows\System32\wiashext.dll
C:\Windows\System32\wiatrace.dll
C:\Windows\System32\WiFiConfigSP.dll
C:\Windows\System32\wifidatacapabilityhandler.dll
C:\Windows\System32\WiFiDisplay.dll
C:\Windows\System32\wimgapi.dll
C:\Windows\System32\win32appinventorycsp.dll
C:\Windows\System32\Win32CompatibilityAppraiserCSP.dll
C:\Windows\System32\win32spl.dll
C:\Windows\System32\win32u.dll
C:\Windows\System32\Win32_DeviceGuard.dll
C:\Windows\System32\winbio.dll
C:\Windows\System32\WinBioDataModel.dll
C:\Windows\System32\winbioext.dll
C:\Windows\System32\winbrand.dll
C:\Windows\System32\wincorlib.dll
C:\Windows\System32\wincredprovider.dll
C:\Windows\System32\wincredui.dll
C:\Windows\System32\windlp.dll
C:\Windows\System32\WindowManagement.dll
C:\Windows\System32\WindowManagementAPI.dll
C:\Windows\System32\Windows.AccountsControl.dll
C:\Windows\System32\Windows.AI.MachineLearning.dll
C:\Windows\System32\Windows.AI.MachineLearning.Preview.dll
C:\Windows\System32\Windows.ApplicationModel.Background.SystemEventsBroker.dll
C:\Windows\System32\Windows.ApplicationModel.Background.TimeBroker.dll
C:\Windows\System32\Windows.ApplicationModel.Core.dll
C:\Windows\System32\windows.applicationmodel.datatransfer.dll
C:\Windows\System32\Windows.ApplicationModel.dll
C:\Windows\System32\Windows.ApplicationModel.LockScreen.dll
C:\Windows\System32\Windows.ApplicationModel.Store.dll
C:\Windows\System32\Windows.ApplicationModel.Store.Preview.DOSettings.dll
C:\Windows\System32\Windows.ApplicationModel.Store.TestingFramework.dll
C:\Windows\System32\Windows.ApplicationModel.Wallet.dll
C:\Windows\System32\Windows.CloudStore.dll
C:\Windows\System32\Windows.CloudStore.EarlyDownloader.dll
C:\Windows\System32\Windows.CloudStore.Schema.DesktopShell.dll
C:\Windows\System32\Windows.CloudStore.Schema.Shell.dll
C:\Windows\System32\Windows.Cortana.Desktop.dll
C:\Windows\System32\Windows.Cortana.OneCore.dll
C:\Windows\System32\Windows.Cortana.ProxyStub.dll
C:\Windows\System32\Windows.Data.Activities.dll
C:\Windows\System32\Windows.Data.Pdf.dll
C:\Windows\System32\Windows.Devices.Background.dll
C:\Windows\System32\Windows.Devices.Background.ps.dll
C:\Windows\System32\Windows.Devices.Bluetooth.dll
C:\Windows\System32\Windows.Devices.Custom.dll
C:\Windows\System32\Windows.Devices.Custom.ps.dll
C:\Windows\System32\Windows.Devices.Enumeration.dll
C:\Windows\System32\Windows.Devices.Haptics.dll
C:\Windows\System32\Windows.Devices.HumanInterfaceDevice.dll
C:\Windows\System32\Windows.Devices.Lights.dll
C:\Windows\System32\Windows.Devices.LowLevel.dll
C:\Windows\System32\Windows.Devices.Midi.dll
C:\Windows\System32\Windows.Devices.Perception.dll
C:\Windows\System32\Windows.Devices.Picker.dll
C:\Windows\System32\Windows.Devices.PointOfService.dll
C:\Windows\System32\Windows.Devices.Portable.dll
C:\Windows\System32\Windows.Devices.Printers.dll
C:\Windows\System32\Windows.Devices.Printers.Extensions.dll
C:\Windows\System32\Windows.Devices.Radios.dll
C:\Windows\System32\Windows.Devices.Scanners.dll
C:\Windows\System32\Windows.Devices.Sensors.dll
C:\Windows\System32\Windows.Devices.SerialCommunication.dll
C:\Windows\System32\Windows.Devices.SmartCards.dll
C:\Windows\System32\Windows.Devices.SmartCards.Phone.dll
C:\Windows\System32\Windows.Devices.Usb.dll
C:\Windows\System32\Windows.Devices.WiFi.dll
C:\Windows\System32\Windows.Devices.WiFiDirect.dll
C:\Windows\System32\Windows.Energy.dll
C:\Windows\System32\Windows.FileExplorer.Common.dll
C:\Windows\System32\Windows.Gaming.Input.dll
C:\Windows\System32\Windows.Gaming.Preview.dll
C:\Windows\System32\Windows.Gaming.UI.GameBar.dll
C:\Windows\System32\Windows.Globalization.dll
C:\Windows\System32\Windows.Globalization.Fontgroups.dll
C:\Windows\System32\Windows.Globalization.PhoneNumberFormatting.dll
C:\Windows\System32\Windows.Graphics.Display.BrightnessOverride.dll
C:\Windows\System32\Windows.Graphics.Display.DisplayEnhancementOverride.dll
C:\Windows\System32\Windows.Graphics.dll
C:\Windows\System32\Windows.Graphics.Printing.3D.dll
C:\Windows\System32\Windows.Graphics.Printing.dll
C:\Windows\System32\Windows.Graphics.Printing.ProtectedPrint.dll
C:\Windows\System32\Windows.Graphics.Printing.Workflow.dll
C:\Windows\System32\Windows.Graphics.Printing.Workflow.Native.dll
C:\Windows\System32\Windows.Help.Runtime.dll
C:\Windows\System32\windows.immersiveshell.serviceprovider.dll
C:\Windows\System32\Windows.Internal.AdaptiveCards.XamlCardRenderer.dll
C:\Windows\System32\Windows.Internal.CapturePicker.Desktop.dll
C:\Windows\System32\Windows.Internal.CapturePicker.dll
C:\Windows\System32\Windows.Internal.Devices.Bluetooth.dll
C:\Windows\System32\Windows.Internal.Devices.Sensors.dll
C:\Windows\System32\Windows.Internal.Graphics.Display.DisplayColorManagement.dll
C:\Windows\System32\Windows.Internal.Graphics.Display.DisplayEnhancementManagement.dll
C:\Windows\System32\Windows.Internal.HardwareConfirmator.dll
C:\Windows\System32\Windows.Internal.Management.dll
C:\Windows\System32\Windows.Internal.OpenWithHost.dll
C:\Windows\System32\Windows.Internal.PlatformExtension.DevicePickerExperience.dll
C:\Windows\System32\Windows.Internal.PlatformExtension.MiracastBannerExperience.dll
C:\Windows\System32\Windows.Internal.Security.Attestation.DeviceAttestation.dll
C:\Windows\System32\Windows.Internal.SecurityMitigationsBroker.dll
C:\Windows\System32\Windows.Internal.Shell.Broker.dll
C:\Windows\System32\Windows.Internal.Shell.CloudDesktop.TransitionScreen.dll
C:\Windows\System32\Windows.Internal.Shell.XamlInputViewHost.dll
C:\Windows\System32\windows.internal.shellcommon.AccountsControlExperience.dll
C:\Windows\System32\windows.internal.shellcommon.AppResolverModal.dll
C:\Windows\System32\Windows.Internal.ShellCommon.Broker.dll
C:\Windows\System32\Windows.Internal.ShellCommon.dll
C:\Windows\System32\windows.internal.shellcommon.FilePickerExperienceMEM.dll
C:\Windows\System32\Windows.Internal.ShellCommon.PrintExperience.dll
C:\Windows\System32\windows.internal.shellcommon.shareexperience.dll
C:\Windows\System32\windows.internal.shellcommon.TokenBrokerModal.dll
C:\Windows\System32\Windows.Internal.System.UserProfile.dll
C:\Windows\System32\Windows.Internal.Taskbar.dll
C:\Windows\System32\Windows.Internal.UI.BioEnrollment.ProxyStub.dll
C:\Windows\System32\Windows.Internal.UI.Dialogs.dll
C:\Windows\System32\Windows.Internal.UI.Logon.ProxyStub.dll
C:\Windows\System32\Windows.Internal.UI.Shell.WindowTabManager.dll
C:\Windows\System32\Windows.Internal.WaaSMedicDocked.dll
C:\Windows\System32\Windows.Management.EnrollmentStatusTracking.ConfigProvider.dll
C:\Windows\System32\Windows.Management.InprocObjects.dll
C:\Windows\System32\Windows.Management.ModernDeployment.ConfigProviders.dll
C:\Windows\System32\Windows.Management.Provisioning.ProxyStub.dll
C:\Windows\System32\Windows.Management.Service.dll
C:\Windows\System32\Windows.Management.Update.dll
C:\Windows\System32\Windows.Management.Workplace.dll
C:\Windows\System32\Windows.Management.Workplace.WorkplaceSettings.dll
C:\Windows\System32\Windows.Media.Audio.dll
C:\Windows\System32\Windows.Media.BackgroundMediaPlayback.dll
C:\Windows\System32\Windows.Media.Devices.dll
C:\Windows\System32\Windows.Media.dll
C:\Windows\System32\Windows.Media.Editing.dll
C:\Windows\System32\Windows.Media.FaceAnalysis.dll
C:\Windows\System32\Windows.Media.Import.dll
C:\Windows\System32\Windows.Media.MediaControl.dll
C:\Windows\System32\Windows.Media.Ocr.dll
C:\Windows\System32\Windows.Media.Playback.BackgroundMediaPlayer.dll
C:\Windows\System32\Windows.Media.Playback.MediaPlayer.dll
C:\Windows\System32\Windows.Media.Playback.ProxyStub.dll
C:\Windows\System32\Windows.Media.Protection.PlayReady.dll
C:\Windows\System32\Windows.Media.Renewal.dll
C:\Windows\System32\Windows.Media.Speech.dll
C:\Windows\System32\Windows.Media.Speech.UXRes.dll
C:\Windows\System32\Windows.Media.Streaming.dll
C:\Windows\System32\Windows.Media.Streaming.ps.dll
C:\Windows\System32\Windows.Networking.BackgroundTransfer.BackgroundManagerPolicy.dll
C:\Windows\System32\Windows.Networking.BackgroundTransfer.ContentPrefetchTask.dll
C:\Windows\System32\Windows.Networking.BackgroundTransfer.dll
C:\Windows\System32\Windows.Networking.Connectivity.dll
C:\Windows\System32\Windows.Networking.dll
C:\Windows\System32\Windows.Networking.HostName.dll
C:\Windows\System32\Windows.Networking.NetworkOperators.ESim.dll
C:\Windows\System32\Windows.Networking.NetworkOperators.HotspotAuthentication.dll
C:\Windows\System32\Windows.Networking.Proximity.dll
C:\Windows\System32\Windows.Networking.ServiceDiscovery.Dnssd.dll
C:\Windows\System32\Windows.Networking.Sockets.PushEnabledApplication.dll
C:\Windows\System32\Windows.Networking.UX.EapRequestHandler.dll
C:\Windows\System32\Windows.Networking.Vpn.dll
C:\Windows\System32\Windows.Payments.dll
C:\Windows\System32\Windows.Perception.Stub.dll
C:\Windows\System32\Windows.Security.Authentication.Identity.Provider.dll
C:\Windows\System32\Windows.Security.Authentication.OnlineId.dll
C:\Windows\System32\Windows.Security.Authentication.Web.Core.dll
C:\Windows\System32\Windows.Security.Credentials.UI.CredentialPicker.dll
C:\Windows\System32\Windows.Security.Credentials.UI.UserConsentVerifier.dll
C:\Windows\System32\Windows.Security.Integrity.dll
C:\Windows\System32\Windows.Services.TargetedContent.dll
C:\Windows\System32\Windows.SharedPC.AccountManager.dll
C:\Windows\System32\Windows.SharedPC.CredentialProvider.dll
C:\Windows\System32\Windows.Shell.BlueLightReduction.dll
C:\Windows\System32\Windows.Shell.ServiceHostBuilder.dll
C:\Windows\System32\Windows.Shell.StartLayoutPopulationEvents.dll
C:\Windows\System32\Windows.StateRepository.dll
C:\Windows\System32\Windows.StateRepositoryBroker.dll
C:\Windows\System32\Windows.StateRepositoryClient.dll
C:\Windows\System32\Windows.StateRepositoryCore.dll
C:\Windows\System32\Windows.StateRepositoryPS.dll
C:\Windows\System32\Windows.StateRepositoryUpgrade.dll
C:\Windows\System32\Windows.Storage.ApplicationData.dll
C:\Windows\System32\Windows.Storage.Compression.dll
C:\Windows\System32\windows.storage.dll
C:\Windows\System32\Windows.Storage.OneCore.dll
C:\Windows\System32\Windows.Storage.Search.dll
C:\Windows\System32\Windows.System.Diagnostics.dll
C:\Windows\System32\Windows.System.Diagnostics.Telemetry.PlatformTelemetryClient.dll
C:\Windows\System32\Windows.System.Diagnostics.TraceReporting.PlatformDiagnosticActions.dll
C:\Windows\System32\Windows.System.Launcher.dll
C:\Windows\System32\Windows.System.Profile.HardwareId.dll
C:\Windows\System32\Windows.System.Profile.PlatformDiagnosticsAndUsageDataSettings.dll
C:\Windows\System32\Windows.System.Profile.RetailInfo.dll
C:\Windows\System32\Windows.System.Profile.SystemId.dll
C:\Windows\System32\Windows.System.Profile.SystemManufacturers.dll
C:\Windows\System32\Windows.System.RemoteDesktop.dll
C:\Windows\System32\Windows.System.SystemManagement.dll
C:\Windows\System32\Windows.System.UserDeviceAssociation.dll
C:\Windows\System32\Windows.System.UserProfile.DiagnosticsSettings.dll
C:\Windows\System32\Windows.UI.Accessibility.dll
C:\Windows\System32\Windows.UI.AppDefaults.dll
C:\Windows\System32\Windows.UI.BioFeedback.dll
C:\Windows\System32\Windows.UI.BlockedShutdown.dll
C:\Windows\System32\Windows.UI.Core.TextInput.dll
C:\Windows\System32\Windows.UI.Cred.dll
C:\Windows\System32\Windows.UI.CredDialogController.dll
C:\Windows\System32\Windows.UI.dll
C:\Windows\System32\Windows.UI.FileExplorer.dll
C:\Windows\System32\Windows.UI.Immersive.dll
C:\Windows\System32\Windows.UI.Input.Inking.Analysis.dll
C:\Windows\System32\Windows.UI.Input.Inking.dll
C:\Windows\System32\Windows.UI.Logon.dll
C:\Windows\System32\Windows.UI.NetworkUXController.dll
C:\Windows\System32\Windows.UI.PicturePassword.dll
C:\Windows\System32\Windows.UI.Search.dll
C:\Windows\System32\Windows.UI.Shell.dll
C:\Windows\System32\Windows.UI.Shell.Internal.AdaptiveCards.dll
C:\Windows\System32\Windows.UI.Storage.dll
C:\Windows\System32\Windows.UI.Xaml.Controls.dll
C:\Windows\System32\Windows.UI.Xaml.dll
C:\Windows\System32\Windows.UI.Xaml.InkControls.dll
C:\Windows\System32\Windows.UI.Xaml.Maps.dll
C:\Windows\System32\Windows.UI.Xaml.Phone.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.19h1.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.21h1.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.Common.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.rs1.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.rs2.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.rs3.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.rs4.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.rs5.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.th.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.win81.dll
C:\Windows\System32\Windows.UI.Xaml.Resources.win8rtm.dll
C:\Windows\System32\Windows.UI.XamlHost.dll
C:\Windows\System32\Windows.WARP.JITService.dll
C:\Windows\System32\Windows.Web.Diagnostics.dll
C:\Windows\System32\Windows.Web.dll
C:\Windows\System32\Windows.Web.Http.dll
C:\Windows\System32\WindowsCodecs.dll
C:\Windows\System32\WindowsCodecsExt.dll
C:\Windows\System32\WindowsDefaultHeatProcessor.dll
C:\Windows\System32\WindowsInternal.ComposableShell.Display.dll
C:\Windows\System32\WindowsInternal.Shell.CompUiActivation.dll
C:\Windows\System32\windowslivelogin.dll
C:\Windows\System32\WindowsManagementServiceWinRt.ProxyStub.dll
C:\Windows\System32\windowsperformancerecordercontrol.dll
C:\Windows\System32\WindowsProtectedPrintConfiguration.dll
C:\Windows\System32\windowsudk.shellcommon.dll
C:\Windows\System32\windowsudkservices.shellcommon.dll
C:\Windows\System32\winethc.dll
C:\Windows\System32\winhttp.dll
C:\Windows\System32\winhttpcom.dll
C:\Windows\System32\WinHvEmulation.dll
C:\Windows\System32\WinHvPlatform.dll
C:\Windows\System32\wini3c.dll
C:\Windows\System32\wininet.dll
C:\Windows\System32\wininetlui.dll
C:\Windows\System32\wininitext.dll
C:\Windows\System32\winipcfile.dll
C:\Windows\System32\winipcsecproc.dll
C:\Windows\System32\winipsec.dll
C:\Windows\System32\Winlangdb.dll
C:\Windows\System32\winlogonext.dll
C:\Windows\System32\winmde.dll
C:\Windows\System32\winml.dll
C:\Windows\System32\winmm.dll
C:\Windows\System32\winmmbase.dll
C:\Windows\System32\winmsipc.dll
C:\Windows\System32\WinMsoIrmProtector.dll
C:\Windows\System32\winnlsres.dll
C:\Windows\System32\winnsi.dll
C:\Windows\System32\WinOpcIrmProtector.dll
C:\Windows\System32\WinREAgent.dll
C:\Windows\System32\winrnr.dll
C:\Windows\System32\winrscmd.dll
C:\Windows\System32\winrsmgr.dll
C:\Windows\System32\winrssrv.dll
C:\Windows\System32\WinRtTracing.dll
C:\Windows\System32\WinSATAPI.dll
C:\Windows\System32\WinSCard.dll
C:\Windows\System32\winshfhc.dll
C:\Windows\System32\winsku.dll
C:\Windows\System32\winsqlite3.dll
C:\Windows\System32\WINSRPC.DLL
C:\Windows\System32\winsrv.dll
C:\Windows\System32\winsrvext.dll
C:\Windows\System32\winsta.dll
C:\Windows\System32\WinSync.dll
C:\Windows\System32\WinSyncMetastore.dll
C:\Windows\System32\WinSyncProviders.dll
C:\Windows\System32\wintrust.dll
C:\Windows\System32\WinTypes.dll
C:\Windows\System32\WinUICohabitation.dll
C:\Windows\System32\winusb.dll
C:\Windows\System32\WiredNetworkCSP.dll
C:\Windows\System32\wisp.dll
C:\Windows\System32\witnesswmiv2provider.dll
C:\Windows\System32\wkscli.dll
C:\Windows\System32\wkspbrokerAx.dll
C:\Windows\System32\wksprtPS.dll
C:\Windows\System32\wkssvc.dll
C:\Windows\System32\wlanapi.dll
C:\Windows\System32\wlancfg.dll
C:\Windows\System32\wlandlg.dll
C:\Windows\System32\wlangpui.dll
C:\Windows\System32\wlanhlp.dll
C:\Windows\System32\WlanMediaManager.dll
C:\Windows\System32\wlanmsm.dll
C:\Windows\System32\wlanpref.dll
C:\Windows\System32\wlansec.dll
C:\Windows\System32\wlansvc.dll
C:\Windows\System32\wlansvcpal.dll
C:\Windows\System32\wlanui.dll
C:\Windows\System32\wlanutil.dll
C:\Windows\System32\Wldap32.dll
C:\Windows\System32\wldp.dll
C:\Windows\System32\wlgpclnt.dll
C:\Windows\System32\wlidcli.dll
C:\Windows\System32\wlidcredprov.dll
C:\Windows\System32\wlidfdp.dll
C:\Windows\System32\wlidnsp.dll
C:\Windows\System32\wlidprov.dll
C:\Windows\System32\wlidres.dll
C:\Windows\System32\wlidsvc.dll
C:\Windows\System32\WMADMOD.DLL
C:\Windows\System32\WMADMOE.DLL
C:\Windows\System32\WMALFXGFXDSP.dll
C:\Windows\System32\WMASF.DLL
C:\Windows\System32\wmcodecdspps.dll
C:\Windows\System32\wmdmlog.dll
C:\Windows\System32\wmdmps.dll
C:\Windows\System32\wmdrmsdk.dll
C:\Windows\System32\wmerror.dll
C:\Windows\System32\wmi.dll
C:\Windows\System32\wmiclnt.dll
C:\Windows\System32\wmidcom.dll
C:\Windows\System32\wmidx.dll
C:\Windows\System32\wmiprop.dll
C:\Windows\System32\wmitomi.dll
C:\Windows\System32\WMNetMgr.dll
C:\Windows\System32\wmp.dll
C:\Windows\System32\WmpDui.dll
C:\Windows\System32\wmpdxm.dll
C:\Windows\System32\wmpeffects.dll
C:\Windows\System32\WMPhoto.dll
C:\Windows\System32\wmploc.DLL
C:\Windows\System32\wmpps.dll
C:\Windows\System32\wmpshell.dll
C:\Windows\System32\wmsgapi.dll
C:\Windows\System32\WMSPDMOD.DLL
C:\Windows\System32\WMSPDMOE.DLL
C:\Windows\System32\WMVCORE.DLL
C:\Windows\System32\WMVDECOD.DLL
C:\Windows\System32\wmvdspa.dll
C:\Windows\System32\WMVENCOD.DLL
C:\Windows\System32\WMVSDECD.DLL
C:\Windows\System32\WMVSENCD.DLL
C:\Windows\System32\WMVXENCD.DLL
C:\Windows\System32\WofUtil.dll
C:\Windows\System32\WordBreakers.dll
C:\Windows\System32\WorkfoldersControl.dll
C:\Windows\System32\WorkFoldersGPExt.dll
C:\Windows\System32\WorkFoldersRes.dll
C:\Windows\System32\WorkFoldersShell.dll
C:\Windows\System32\workfolderssvc.dll
C:\Windows\System32\wosc.dll
C:\Windows\System32\wow64.dll
C:\Windows\System32\wow64base.dll
C:\Windows\System32\wow64con.dll
C:\Windows\System32\wow64cpu.dll
C:\Windows\System32\wow64win.dll
C:\Windows\System32\wpdbusenum.dll
C:\Windows\System32\wpdshext.dll
C:\Windows\System32\WPDShServiceObj.dll
C:\Windows\System32\WPDSp.dll
C:\Windows\System32\wpd_ci.dll
C:\Windows\System32\wpnapps.dll
C:\Windows\System32\wpnclient.dll
C:\Windows\System32\wpncore.dll
C:\Windows\System32\wpninprc.dll
C:\Windows\System32\wpnprv.dll
C:\Windows\System32\wpnservice.dll
C:\Windows\System32\wpnsruprov.dll
C:\Windows\System32\WpnUserService.dll
C:\Windows\System32\WpPortingLibrary.dll
C:\Windows\System32\WppRecorderUM.dll
C:\Windows\System32\WPTaskScheduler.dll
C:\Windows\System32\wpx.dll
C:\Windows\System32\ws2help.dll
C:\Windows\System32\ws2_32.dll
C:\Windows\System32\wsbappres.dll
C:\Windows\System32\wsbapp_ps.dll
C:\Windows\System32\wsbonline.dll
C:\Windows\System32\WSClient.dll
C:\Windows\System32\WSDApi.dll
C:\Windows\System32\wsdchngr.dll
C:\Windows\System32\WSDPrintProxy.DLL
C:\Windows\System32\WsdProviderUtil.dll
C:\Windows\System32\WSDScanProxy.dll
C:\Windows\System32\wsecedit.dll
C:\Windows\System32\wsepno.dll
C:\Windows\System32\wshbth.dll
C:\Windows\System32\wshcon.dll
C:\Windows\System32\wshelper.dll
C:\Windows\System32\wshext.dll
C:\Windows\System32\wshhyperv.dll
C:\Windows\System32\wship6.dll
C:\Windows\System32\wshqos.dll
C:\Windows\System32\wshrm.dll
C:\Windows\System32\WSHTCPIP.DLL
C:\Windows\System32\wshunix.dll
C:\Windows\System32\wslapi.dll
C:\Windows\System32\WsmAgent.dll
C:\Windows\System32\WSManMigrationPlugin.dll
C:\Windows\System32\WsmAuto.dll
C:\Windows\System32\wsmplpxy.dll
C:\Windows\System32\WsmRes.dll
C:\Windows\System32\Wsmselpl.dll
C:\Windows\System32\Wsmselrr.dll
C:\Windows\System32\WsmSvc.dll
C:\Windows\System32\WsmWmiPl.dll
C:\Windows\System32\wsnmp32.dll
C:\Windows\System32\wsock32.dll
C:\Windows\System32\wsp_fs.dll
C:\Windows\System32\wsp_health.dll
C:\Windows\System32\wsp_sr.dll
C:\Windows\System32\wtsapi32.dll
C:\Windows\System32\wuapi.dll
C:\Windows\System32\wuaueng.dll
C:\Windows\System32\wuceffects.dll
C:\Windows\System32\WUDFCoinstaller.dll
C:\Windows\System32\WUDFPlatform.dll
C:\Windows\System32\WudfSMCClassExt.dll
C:\Windows\System32\WUDFx.dll
C:\Windows\System32\WUDFx02000.dll
C:\Windows\System32\wudriver.dll
C:\Windows\System32\wups.dll
C:\Windows\System32\wups2.dll
C:\Windows\System32\wusys.dll
C:\Windows\System32\wvc.dll
C:\Windows\System32\WwaApi.dll
C:\Windows\System32\WwaExt.dll
C:\Windows\System32\x3daudio1_0.dll
C:\Windows\System32\x3daudio1_1.dll
C:\Windows\System32\X3DAudio1_2.dll
C:\Windows\System32\X3DAudio1_3.dll
C:\Windows\System32\X3DAudio1_4.dll
C:\Windows\System32\X3DAudio1_5.dll
C:\Windows\System32\X3DAudio1_6.dll
C:\Windows\System32\X3DAudio1_7.dll
C:\Windows\System32\xactengine2_0.dll
C:\Windows\System32\xactengine2_1.dll
C:\Windows\System32\xactengine2_10.dll
C:\Windows\System32\xactengine2_2.dll
C:\Windows\System32\xactengine2_3.dll
C:\Windows\System32\xactengine2_4.dll
C:\Windows\System32\xactengine2_5.dll
C:\Windows\System32\xactengine2_6.dll
C:\Windows\System32\xactengine2_7.dll
C:\Windows\System32\xactengine2_8.dll
C:\Windows\System32\xactengine2_9.dll
C:\Windows\System32\xactengine3_0.dll
C:\Windows\System32\xactengine3_1.dll
C:\Windows\System32\xactengine3_2.dll
C:\Windows\System32\xactengine3_3.dll
C:\Windows\System32\xactengine3_4.dll
C:\Windows\System32\xactengine3_5.dll
C:\Windows\System32\xactengine3_6.dll
C:\Windows\System32\xactengine3_7.dll
C:\Windows\System32\XamlTileRender.dll
C:\Windows\System32\XAPOFX1_0.dll
C:\Windows\System32\XAPOFX1_1.dll
C:\Windows\System32\XAPOFX1_2.dll
C:\Windows\System32\XAPOFX1_3.dll
C:\Windows\System32\XAPOFX1_4.dll
C:\Windows\System32\XAPOFX1_5.dll
C:\Windows\System32\XAudio2_0.dll
C:\Windows\System32\XAudio2_1.dll
C:\Windows\System32\XAudio2_2.dll
C:\Windows\System32\XAudio2_3.dll
C:\Windows\System32\XAudio2_4.dll
C:\Windows\System32\XAudio2_5.dll
C:\Windows\System32\XAudio2_6.dll
C:\Windows\System32\XAudio2_7.dll
C:\Windows\System32\XAudio2_8.dll
C:\Windows\System32\XAudio2_9.dll
C:\Windows\System32\XblAuthManager.dll
C:\Windows\System32\XblAuthManagerProxy.dll
C:\Windows\System32\XblAuthTokenBrokerExt.dll
C:\Windows\System32\xboxgipsynthetic.dll
C:\Windows\System32\xinput1_1.dll
C:\Windows\System32\xinput1_2.dll
C:\Windows\System32\xinput1_3.dll
C:\Windows\System32\XInput1_4.dll
C:\Windows\System32\XInput9_1_0.dll
C:\Windows\System32\XInputUap.dll
C:\Windows\System32\xmlfilter.dll
C:\Windows\System32\xmllite.dll
C:\Windows\System32\xmlprovi.dll
C:\Windows\System32\xolehlp.dll
C:\Windows\System32\XpsDocumentTargetPrint.dll
C:\Windows\System32\XpsFilt.dll
C:\Windows\System32\XpsGdiConverter.dll
C:\Windows\System32\XpsPrint.dll
C:\Windows\System32\xpspushlayer.dll
C:\Windows\System32\XpsRasterService.dll
C:\Windows\System32\xpsservices.dll
C:\Windows\System32\XPSSHHDR.dll
C:\Windows\System32\XpsToPclmConverter.dll
C:\Windows\System32\XpsToPwgrConverter.dll
C:\Windows\System32\XpsToTiffConverter.dll
C:\Windows\System32\xwizards.dll
C:\Windows\System32\xwreg.dll
C:\Windows\System32\xwtpdui.dll
C:\Windows\System32\xwtpw32.dll
C:\Windows\System32\ze_loader.dll
C:\Windows\System32\ze_tracing_layer.dll
C:\Windows\System32\ze_validation_layer.dll
C:\Windows\System32\zipcontainer.dll
C:\Windows\System32\zipfldr.dll
C:\Windows\System32\ztdnsapi.dll
C:\Windows\System32\ztrace_maps.dll
C:\Windows\System32\AdvancedInstallers\cmiv2.dll
C:\Windows\System32\Com\comadmin.dll
C:\Windows\System32\Dism\AppxProvider.dll
C:\Windows\System32\Dism\AssocProvider.dll
C:\Windows\System32\Dism\CbmrProvider.dll
C:\Windows\System32\Dism\CbsProvider.dll
C:\Windows\System32\Dism\DismCore.dll
C:\Windows\System32\Dism\DismCorePS.dll
C:\Windows\System32\Dism\DismProv.dll
C:\Windows\System32\Dism\DmiProvider.dll
C:\Windows\System32\Dism\EdgeProvider.dll
C:\Windows\System32\Dism\FfuProvider.dll
C:\Windows\System32\Dism\FolderProvider.dll
C:\Windows\System32\Dism\GenericProvider.dll
C:\Windows\System32\Dism\IBSProvider.dll
C:\Windows\System32\Dism\ImagingProvider.dll
C:\Windows\System32\Dism\IntlProvider.dll
C:\Windows\System32\Dism\LogProvider.dll
C:\Windows\System32\Dism\MsiProvider.dll
C:\Windows\System32\Dism\OfflineSetupProvider.dll
C:\Windows\System32\Dism\OSProvider.dll
C:\Windows\System32\Dism\ProvProvider.dll
C:\Windows\System32\Dism\SetupPlatformProvider.dll
C:\Windows\System32\Dism\SmiProvider.dll
C:\Windows\System32\Dism\SysprepProvider.dll
C:\Windows\System32\Dism\TransmogProvider.dll
C:\Windows\System32\Dism\UnattendProvider.dll
C:\Windows\System32\Dism\VhdProvider.dll
C:\Windows\System32\Dism\WimProvider.dll
C:\Windows\System32\downlevel\api-ms-win-base-util-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-com-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-comm-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-console-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-datetime-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-datetime-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-debug-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-debug-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-delayload-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-errorhandling-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-errorhandling-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-fibers-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-fibers-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-file-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-file-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-file-l1-2-1.dll
C:\Windows\System32\downlevel\API-MS-Win-core-file-l2-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-core-file-l2-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-handle-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-heap-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Core-Heap-Obsolete-L1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-interlocked-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-io-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-io-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-kernel32-legacy-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-kernel32-legacy-l1-1-1.dll
C:\Windows\System32\downlevel\API-MS-Win-Core-Kernel32-Private-L1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Core-Kernel32-Private-L1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-libraryloader-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-libraryloader-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-localization-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-localization-l1-2-1.dll
C:\Windows\System32\downlevel\API-MS-Win-core-localization-obsolete-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-memory-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-memory-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-memory-l1-1-2.dll
C:\Windows\System32\downlevel\api-ms-win-core-namedpipe-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-privateprofile-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-privateprofile-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-processenvironment-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-processenvironment-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-processthreads-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-processthreads-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-processthreads-l1-1-2.dll
C:\Windows\System32\downlevel\api-ms-win-core-processtopology-obsolete-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-profile-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-realtime-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-registry-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-registry-l2-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-rtlsupport-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-shlwapi-legacy-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-shlwapi-obsolete-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-shutdown-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-string-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-core-string-l2-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-core-string-obsolete-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-stringansi-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-stringloader-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-synch-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-synch-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-sysinfo-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-sysinfo-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-sysinfo-l1-2-1.dll
C:\Windows\System32\downlevel\api-ms-win-core-threadpool-l1-2-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-threadpool-legacy-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-threadpool-private-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-timezone-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-url-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-util-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-version-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-wow64-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-core-xstate-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-core-xstate-l2-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-conio-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-convert-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-environment-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-filesystem-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-heap-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-locale-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-math-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-multibyte-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-private-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-process-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-runtime-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-stdio-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-string-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-time-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-crt-utility-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-devices-config-L1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-devices-config-L1-1-1.dll
C:\Windows\System32\downlevel\API-MS-Win-Eventing-ClassicProvider-L1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-eventing-consumer-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Eventing-Controller-L1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Eventing-Legacy-L1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Eventing-Provider-L1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-EventLog-Legacy-L1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-security-base-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-security-cryptoapi-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Security-Lsalookup-L2-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-Security-Lsalookup-L2-1-1.dll
C:\Windows\System32\downlevel\API-MS-Win-security-lsapolicy-l1-1-0.dll
C:\Windows\System32\downlevel\API-MS-Win-security-provider-L1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-security-sddl-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-service-core-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-service-core-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-service-management-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-service-management-l2-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-service-private-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-service-private-l1-1-1.dll
C:\Windows\System32\downlevel\api-ms-win-service-winsvc-l1-1-0.dll
C:\Windows\System32\downlevel\api-ms-win-shcore-stream-l1-1-0.dll
C:\Windows\System32\downlevel\ucrtbase.dll
C:\Windows\System32\drivers\UMDF\EhStorPwdDrv.dll
C:\Windows\System32\drivers\UMDF\HidLampArray.dll
C:\Windows\System32\drivers\UMDF\IddCx.dll
C:\Windows\System32\drivers\UMDF\Microsoft.Bluetooth.Profiles.HidOverGatt.dll
C:\Windows\System32\drivers\UMDF\netadaptercxum.dll
C:\Windows\System32\drivers\UMDF\NfcCx.dll
C:\Windows\System32\drivers\UMDF\PosCx.dll
C:\Windows\System32\drivers\UMDF\SecureUSBVideo.dll
C:\Windows\System32\drivers\UMDF\SensorsCx.dll
C:\Windows\System32\drivers\UMDF\SMCCx.dll
C:\Windows\System32\drivers\UMDF\UcmCx.dll
C:\Windows\System32\drivers\UMDF\usbdr.dll
C:\Windows\System32\drivers\UMDF\UsbXhciCompanion.dll
C:\Windows\System32\drivers\UMDF\WpdFs.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxCUIServicePS.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxCUIServicePSN.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxDH.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxDHN.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxDI.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxDIN.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxexps.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxexps32.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxLHM.dll
C:\Windows\System32\DriverStore\FileRepository\cui_dch.inf_amd64_98728bfffafc23c2\igfxSDKLib.dll
C:\Windows\System32\DriverStore\FileRepository\dal.inf_amd64_8a3f88e34f6b8385\JHI.dll
C:\Windows\System32\DriverStore\FileRepository\dal.inf_amd64_8a3f88e34f6b8385\JHI64.dll
C:\Windows\System32\DriverStore\FileRepository\dal.inf_amd64_8a3f88e34f6b8385\TEEManagement.dll
C:\Windows\System32\DriverStore\FileRepository\dal.inf_amd64_8a3f88e34f6b8385\TEEManagement64.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\Dptf.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyActive.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyActive2.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyAdaptivePerformance.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyAdaptiveUserPresence.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyCritical.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyEnergyPerformanceOptimizer.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyIntelligentThermalManagement.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPassive.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPassive2.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPid.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPowerBoss.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPowerShare.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyPowerShare2.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyRfim.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicySystemConfiguration.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\DptfPolicyVirtualSensor.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\esif_cmp.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\esif_umdf2.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\ipftcs.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_battery.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_hwpf.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_nvme.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_socwc.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_wifi.dll
C:\Windows\System32\DriverStore\FileRepository\dptf_cpu.inf_amd64_c2c5b0e17a28a48f\upe_wwan.dll
C:\Windows\System32\DriverStore\FileRepository\ehstorpwddrv.inf_amd64_8e65b5edf0074fc9\EhStorPwdDrv.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDApi.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDApi32.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDApix.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDCmds.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDCoInstaller15017.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDFavorite.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDMcpl.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETDUninst.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\ETD_DLL.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\LenovoAPI.dll
C:\Windows\System32\DriverStore\FileRepository\etd.inf_amd64_bedec7b6a5e66ed6\WdfCoInstaller01011.dll
C:\Windows\System32\DriverStore\FileRepository\etdsmbus.inf_amd64_17f001c814a01adc\WdfCoInstaller01011.dll
C:\Windows\System32\DriverStore\FileRepository\fusionv2.inf_amd64_e7a6fa4788d7cde3\FusionV2.dll
C:\Windows\System32\DriverStore\FileRepository\fwupdatedriver.inf_amd64_c00f6584f690962a\FWUpdateDriver.dll
C:\Windows\System32\DriverStore\FileRepository\halextintclpiodma.inf_amd64_c001db6ed2db0ef9\HalExtIntcLpioDMA.dll
C:\Windows\System32\DriverStore\FileRepository\halextintcpsedma.inf_amd64_f0bb2d96a452382d\HalExtIntcPseDMA.dll
C:\Windows\System32\DriverStore\FileRepository\halextpl080.inf_amd64_8491f9f7746abb94\HalExtPL080.dll
C:\Windows\System32\DriverStore\FileRepository\hidbthle.inf_amd64_75071cfe0ef4a8fe\Microsoft.Bluetooth.Profiles.HidOverGatt.dll
C:\Windows\System32\DriverStore\FileRepository\hidcfu.inf_amd64_9883eda4a9d0bd50\HidCfu.dll
C:\Windows\System32\DriverStore\FileRepository\hidlamparray.inf_amd64_c1e507e0a2442396\HidLampArray.dll
C:\Windows\System32\DriverStore\FileRepository\hidscanner.inf_amd64_b6a86f965f966da9\hidscanner.dll
C:\Windows\System32\DriverStore\FileRepository\iaahcic.inf_amd64_3de4831720bb2934\RstMwEventLogMsg.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\concrt140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\iclsClient.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\iclsClientInternal.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\iclsProxy.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\iclsProxyInternal.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\libcrypto-3-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\libssl-3-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\msvcp140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\vcruntime140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_bc9b92a50d527061\lib\vcruntime140_1.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\concrt140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\iclsClient.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\iclsClientInternal.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\iclsProxy.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\iclsProxyInternal.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\libcrypto-3-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\libssl-3-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\msvcp140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\vcruntime140.dll
C:\Windows\System32\DriverStore\FileRepository\iclsclient.inf_amd64_c25dbc60ad3b371a\lib\vcruntime140_1.dll
C:\Windows\System32\DriverStore\FileRepository\idtsec.inf_amd64_dba39b6247b83554\idtsec.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\AGS.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\LiteDB.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\Newtonsoft.Json.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\NLog.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\OneApp.IGCC.COMLibrary.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\OneApp.IGCC.CommunicationService.dll
C:\Windows\System32\DriverStore\FileRepository\igcc_dch.inf_amd64_22dff82e7da0099b\OneApp.IGCC.CoreLibrary.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\clangFEWrapper.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\clangFEWrapper32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ControlLib.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ControlLib32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\DnnlPlugin.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ig11icd32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ig11icd64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ig9icd32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ig9icd64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\iga32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\iga64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igc32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igc64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd10iumd32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd10iumd64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd10um32gen11.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd10um64gen11.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd11dxva32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd11dxva64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12dxva32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12dxva64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12um32icl.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12um32kbl.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12um64icl.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12um64kbl.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12umd32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd12umd64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd9dxva32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igd9dxva64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdail32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdail64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdde32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdde64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdext32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdext64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdfcl32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdfcl64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdgmm32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdgmm64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdinfo32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdinfo64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdmd32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdmd64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdml32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdml64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdrcl32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdrcl64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdumdim32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igdumdim64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igfx11cmrt32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igfx11cmrt64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igfxcmrt32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igfxcmrt64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igvk32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\igvk64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\IntelControlLib.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\IntelControlLib32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\intel_gfx_api-x64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\intel_gfx_api-x86.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\Intel_OpenCL_ICD32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\Intel_OpenCL_ICD64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\libmfxhw32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\libmfxhw64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfxplugin32_av1e_gacc.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfxplugin32_hw.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfxplugin64_av1e_gacc.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfxplugin64_hw.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_loader_dll_hw32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_loader_dll_hw64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_av1hve_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_av1hve_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_encrypt_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_encrypt_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_h264ve_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_h264ve_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_h265ve_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_h265ve_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_mjpgvd_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_mjpgvd_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_vp9ve_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\mfx_mft_vp9ve_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\opencl-clang32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\opencl-clang64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\UniversalAdapter32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\UniversalAdapter64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\vpl_dispatcher_32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\vpl_dispatcher_64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\vulkan-1-32.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\vulkan-1-64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ze_intel_gpu64.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ze_loader.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ze_tracing_layer.dll
C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_b53c057d22ce6f37\ze_validation_layer.dll
C:\Windows\System32\DriverStore\FileRepository\intelgnssdriver.inf_amd64_72c1148ccc59b451\IntelGNSSDriver.dll
C:\Windows\System32\DriverStore\FileRepository\intelgnssdriver.inf_amd64_8ef3276e1b20e1a3\IntelGNSSDriver.dll
C:\Windows\System32\DriverStore\FileRepository\iscsi.inf_amd64_df97405ce784cca7\iscsilog.dll
C:\Windows\System32\DriverStore\FileRepository\mbmgeo.inf_amd64_1a8daa53dafea170\MbmGeolocationSensor.dll
C:\Windows\System32\DriverStore\FileRepository\mbmgeo.inf_amd64_1a8daa53dafea170\MbmGpsRM.dll
C:\Windows\System32\DriverStore\FileRepository\mewmiprov.inf_amd64_0ce29d36fc8607e6\MEProv.dll
C:\Windows\System32\DriverStore\FileRepository\mgtdyn.inf_amd64_4e87353a15ab7a8b\mgtdyn.dll
C:\Windows\System32\DriverStore\FileRepository\miradisp.inf_amd64_89b15a44c481984f\MiraDisp.dll
C:\Windows\System32\DriverStore\FileRepository\modemcontrol.inf_amd64_54003badfde43d9c\ModemControl.dll
C:\Windows\System32\DriverStore\FileRepository\modemcsa.inf_amd64_278b6da4d5483c40\csamsp.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_a471ee51a56b5a72\IntelIHVRouter08.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_a471ee51a56b5a72\IntelIHVRouter10.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_a471ee51a56b5a72\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_a471ee51a56b5a72\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_c5cafafa69376f0c\IntelIHVRouter08.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_c5cafafa69376f0c\IntelIHVRouter10.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_c5cafafa69376f0c\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_c5cafafa69376f0c\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_e198dbb9fb101a00\IntelIHVRouter08.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_e198dbb9fb101a00\IntelIHVRouter10.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_e198dbb9fb101a00\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_e198dbb9fb101a00\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_f8921816e8b82c26\IntelIHVRouter08.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_f8921816e8b82c26\IntelIHVRouter10.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_f8921816e8b82c26\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw08.inf_amd64_f8921816e8b82c26\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_14f5374e2f00286a\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_14f5374e2f00286a\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_70d493b22a8d309e\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_70d493b22a8d309e\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_d71df66cae535bcb\IntelIHVRouter14.dll
C:\Windows\System32\DriverStore\FileRepository\netwtw6e.inf_amd64_d71df66cae535bcb\IntelIHVRouter16.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\MXDWDRV.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PCL4RES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PCL5ERES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PCL5URES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PCLXL.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PJLMON.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PS5UI.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\PSCRIPT5.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\UNIDRV.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\UNIDRVUI.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_amd64_0de5d6669dd41042\Amd64\UNIRES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\MXDWDRV.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PCL4RES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PCL5ERES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PCL5URES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PCLXL.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PJLMON.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PS5UI.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\PSCRIPT5.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\UNIDRV.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\UNIDRVUI.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint.inf_x86_0de5d6669dd41042\I386\UNIRES.DLL
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\msdwdrv.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\MSxpsPCL6.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\MSxpsPS.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\PCLmRenderFilter.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\PDFRenderFilter.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\PWGRRenderFilter.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\TiffRenderFilter.dll
C:\Windows\System32\DriverStore\FileRepository\ntprint4.inf_amd64_e1250974d25f438f\Amd64\V3HostingFilter.dll
C:\Windows\System32\DriverStore\FileRepository\oposdrv.inf_amd64_95ccba4afab352f3\oposdrv.dll
C:\Windows\System32\DriverStore\FileRepository\prnge001.inf_amd64_2563056e8fb32eda\Amd64\OK9IBRES.DLL
C:\Windows\System32\DriverStore\FileRepository\prnge001.inf_amd64_2563056e8fb32eda\Amd64\TTY.DLL
C:\Windows\System32\DriverStore\FileRepository\prnge001.inf_amd64_2563056e8fb32eda\Amd64\TTYRES.DLL
C:\Windows\System32\DriverStore\FileRepository\prnge001.inf_amd64_2563056e8fb32eda\Amd64\TTYUI.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSAPI.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSDRV.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSRES.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSTIFF.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSUI.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms002.inf_amd64_3cbbb4ae5ccbecff\Amd64\FXSWZRD.DLL
C:\Windows\System32\DriverStore\FileRepository\prnms003.inf_amd64_c818efc5e9a688f6\Amd64\PrintConfig.dll
C:\Windows\System32\DriverStore\FileRepository\prnms003.inf_x86_aab80310734ec59f\I386\PrintConfig.dll
C:\Windows\System32\DriverStore\FileRepository\rdcameradriver.inf_amd64_df72e192b3399523\RDCameraDriver.dll
C:\Windows\System32\DriverStore\FileRepository\rdcameradriver.inf_amd64_df72e192b3399523\RDCameraMediaSource.dll
C:\Windows\System32\DriverStore\FileRepository\rdpidd.inf_amd64_191a331ccc578de7\RdpIdd.dll
C:\Windows\System32\DriverStore\FileRepository\remoteposdrv.inf_amd64_04089b023e41f15f\RemotePosDrv.dll
C:\Windows\System32\DriverStore\FileRepository\rtleshs.inf_amd64_434af2602d3d1c58\RsDMFT64.dll
C:\Windows\System32\DriverStore\FileRepository\rtleshs.inf_amd64_434af2602d3d1c58\RsDMFT_Assets.dll
C:\Windows\System32\DriverStore\FileRepository\rtleshs.inf_amd64_434af2602d3d1c58\RsEyeContactCorrection_Assets.dll
C:\Windows\System32\DriverStore\FileRepository\sensorsalsdriver.inf_amd64_76a1220fcd8a0045\SensorsAlsDriver.dll
C:\Windows\System32\DriverStore\FileRepository\sensorshidclassdriver.inf_amd64_67e4ce0f4e6a7fb1\SensorsHid.dll
C:\Windows\System32\DriverStore\FileRepository\sensorsservicedriver.inf_amd64_c7ef2b238cd80548\SensorsServiceDriver.dll
C:\Windows\System32\DriverStore\FileRepository\sti.inf_amd64_971c769b103df369\wiafbdrv.dll
C:\Windows\System32\DriverStore\FileRepository\storfwupdate.inf_amd64_596a50a471f102f0\StorFwUpdate.dll
C:\Windows\System32\DriverStore\FileRepository\tpmvsc.inf_amd64_c79e98a8395c554e\VirtualSmartcardReader.dll
C:\Windows\System32\DriverStore\FileRepository\tsgenericusbdriver.inf_amd64_7a59a17bada458bf\TsUsbGDCoInstaller.dll
C:\Windows\System32\DriverStore\FileRepository\tsprint.inf_amd64_d2b2706946552c0e\amd64\tsprint.dll
C:\Windows\System32\DriverStore\FileRepository\ude.inf_amd64_46828e73db5946c0\pthread.dll
C:\Windows\System32\DriverStore\FileRepository\ude.inf_amd64_46828e73db5946c0\WinIhvRil.dll
C:\Windows\System32\DriverStore\FileRepository\usbcciddriver.inf_amd64_2185fcfcc110e488\UsbccidDriver.dll
C:\Windows\System32\DriverStore\FileRepository\usbcir.inf_amd64_3054eccb1266b565\CIRCoInst.dll
C:\Windows\System32\DriverStore\FileRepository\usbvideo.inf_amd64_e27303edeba6a5c9\SecureUSBVideo.dll
C:\Windows\System32\DriverStore\FileRepository\usbxhci.inf_amd64_6b90e39ffa0e3b8e\UsbXhciCompanion.dll
C:\Windows\System32\DriverStore\FileRepository\wdmaudio.inf_amd64_88fd9e86058b8924\MsApoFxProxy.dll
C:\Windows\System32\DriverStore\FileRepository\wdmaudio.inf_amd64_88fd9e86058b8924\SysFxUI.dll
C:\Windows\System32\DriverStore\FileRepository\wdmaudio.inf_amd64_88fd9e86058b8924\WMALFXGFXDSP.dll
C:\Windows\System32\DriverStore\FileRepository\wpdcomp.inf_amd64_a1622da6e30ada3a\Wpdcomp.dll
C:\Windows\System32\DriverStore\FileRepository\wpdfs.inf_amd64_ad25f929f12efbf8\WpdFs.dll
C:\Windows\System32\DriverStore\FileRepository\wpdmtp.inf_amd64_c689c4fa0723291e\WpdMtp.dll
C:\Windows\System32\DriverStore\FileRepository\wpdmtp.inf_amd64_c689c4fa0723291e\WpdMtpbt.dll
C:\Windows\System32\DriverStore\FileRepository\wpdmtp.inf_amd64_c689c4fa0723291e\WpdMtpDr.dll
C:\Windows\System32\DriverStore\FileRepository\wpdmtp.inf_amd64_c689c4fa0723291e\WpdMtpIP.dll
C:\Windows\System32\DriverStore\FileRepository\wpdmtp.inf_amd64_c689c4fa0723291e\WpdMtpUS.dll
C:\Windows\System32\DriverStore\FileRepository\wsdscdrv.inf_amd64_e645a5137833208a\WSDScDrv.dll
C:\Windows\System32\DriverStore\FileRepository\wudfusbcciddriver.inf_amd64_5186910aab36ca6b\WUDFUsbccidDriver.dll
C:\Windows\System32\DriverStore\FileRepository\wvmbus.inf_amd64_86177541671e122a\vmbuspipe.dll
C:\Windows\System32\dsc\DscCoreR.dll
C:\Windows\System32\dsc\PSDSCFileDownloadManagerEvents.dll
C:\Windows\System32\F12\DiagnosticsHub.DataWarehouse.dll
C:\Windows\System32\F12\DiagnosticsHub.ScriptedSandboxPlugin.dll
C:\Windows\System32\F12\DiagnosticsHub_is.dll
C:\Windows\System32\F12\DiagnosticsTap.dll
C:\Windows\System32\F12\F12App.dll
C:\Windows\System32\F12\F12AppFrame.dll
C:\Windows\System32\F12\F12AppFrame2.dll
C:\Windows\System32\F12\F12Platform.dll
C:\Windows\System32\F12\F12Platform2.dll
C:\Windows\System32\F12\F12Script.dll
C:\Windows\System32\F12\F12Tab.dll
C:\Windows\System32\F12\MemoryAnalyzer.dll
C:\Windows\System32\F12\msdbg2.dll
C:\Windows\System32\F12\pdm.dll
C:\Windows\System32\F12\pdmproxy100.dll
C:\Windows\System32\F12\perfcore.dll
C:\Windows\System32\F12\perf_nt.dll
C:\Windows\System32\F12\Timeline.dll
C:\Windows\System32\F12\Timeline_is.dll
C:\Windows\System32\HealthAttestationClient\AzureAttestManager.dll
C:\Windows\System32\HealthAttestationClient\AzureAttestNormal.dll
C:\Windows\System32\IME\IMEJP\IMJPAPI.DLL
C:\Windows\System32\IME\IMEJP\IMJPCD.DLL
C:\Windows\System32\IME\IMEJP\IMJPCMLD.DLL
C:\Windows\System32\IME\IMEJP\imjpcus.dll
C:\Windows\System32\IME\IMEJP\IMJPDAPI.DLL
C:\Windows\System32\IME\IMEJP\IMJPDCTP.DLL
C:\Windows\System32\IME\IMEJP\IMJPLMP.DLL
C:\Windows\System32\IME\IMEJP\IMJPPRED.DLL
C:\Windows\System32\IME\IMEJP\IMJPRANKER.DLL
C:\Windows\System32\IME\IMEJP\IMJPTIP.DLL
C:\Windows\System32\IME\IMEJP\imjputyc.dll
C:\Windows\System32\IME\IMEJP\applets\IMJPCAC.DLL
C:\Windows\System32\IME\IMEJP\applets\IMJPCLST.DLL
C:\Windows\System32\IME\IMEJP\applets\IMJPKDIC.DLL
C:\Windows\System32\IME\IMEJP\applets\imjpskey.DLL
C:\Windows\System32\IME\IMEJP\applets\IMJPSKF.DLL
C:\Windows\System32\IME\IMEKR\imkrapi.dll
C:\Windows\System32\IME\IMEKR\imkrotip.dll
C:\Windows\System32\IME\IMEKR\imkrtip.dll
C:\Windows\System32\IME\IMEKR\imkrudt.dll
C:\Windows\System32\IME\IMEKR\APPLETS\imkrcac.dll
C:\Windows\System32\IME\IMEKR\APPLETS\imkrskf.dll
C:\Windows\System32\IME\IMEKR\DICTS\imkrhjd.dll
C:\Windows\System32\IME\IMETC\IMTCCFG.DLL
C:\Windows\System32\IME\IMETC\IMTCCORE.DLL
C:\Windows\System32\IME\IMETC\IMTCTIP.dll
C:\Windows\System32\IME\IMETC\IMTCTRLN.DLL
C:\Windows\System32\IME\IMETC\applets\IMTCCAC.dll
C:\Windows\System32\IME\IMETC\applets\IMTCDIC.dll
C:\Windows\System32\IME\IMETC\applets\IMTCSKF.dll
C:\Windows\System32\IME\SHARED\IMEAPIS.DLL
C:\Windows\System32\IME\SHARED\ImeBrokerps.dll
C:\Windows\System32\IME\SHARED\imecfm.dll
C:\Windows\System32\IME\SHARED\imecfmps.dll
C:\Windows\System32\IME\SHARED\IMEDICAPICCPS.DLL
C:\Windows\System32\IME\SHARED\IMEFILES.DLL
C:\Windows\System32\IME\SHARED\IMELM.DLL
C:\Windows\System32\IME\SHARED\IMEPADSM.DLL
C:\Windows\System32\IME\SHARED\IMESEARCHDLL.DLL
C:\Windows\System32\IME\SHARED\IMESEARCHPS.DLL
C:\Windows\System32\IME\SHARED\IMETIP.DLL
C:\Windows\System32\IME\SHARED\IMJKAPI.DLL
C:\Windows\System32\IME\SHARED\MSCAND20.DLL
C:\Windows\System32\IME\SHARED\res\padrs404.dll
C:\Windows\System32\IME\SHARED\res\padrs411.dll
C:\Windows\System32\IME\SHARED\res\padrs412.dll
C:\Windows\System32\IME\SHARED\res\padrs804.dll
C:\Windows\System32\InputMethod\CHS\ChsAdvancedDS.dll
C:\Windows\System32\InputMethod\CHS\ChsEM.dll
C:\Windows\System32\InputMethod\CHS\ChsIFEComp.dll
C:\Windows\System32\InputMethod\CHS\ChsLexiconUpdateDS.dll
C:\Windows\System32\InputMethod\CHS\ChsPinyinDS.dll
C:\Windows\System32\InputMethod\CHS\ChsProxyDS.dll
C:\Windows\System32\InputMethod\CHS\ChsRoaming.DLL
C:\Windows\System32\InputMethod\CHS\ChsWubiDS.dll
C:\Windows\System32\InputMethod\CHS\ServiceDS.dll
C:\Windows\System32\InputMethod\CHT\ChtChangjieDS.DLL
C:\Windows\System32\InputMethod\CHT\ChtQuickDS.DLL
C:\Windows\System32\InputMethod\JPN\Windows.Globalization.JapanesePhoneme.dll
C:\Windows\System32\InputMethod\SHARED\ChxAdvancedDS.DLL
C:\Windows\System32\InputMethod\SHARED\ChxEM.DLL
C:\Windows\System32\InputMethod\SHARED\ChxUserDictDS.DLL
C:\Windows\System32\InputMethod\SHARED\IHDS.DLL
C:\Windows\System32\InputMethod\SHARED\ImeSystrayMenu.dll
C:\Windows\System32\InputMethod\SHARED\JpnKorRoaming.dll
C:\Windows\System32\InputMethod\SHARED\MoIME_ps.dll
C:\Windows\System32\InputMethod\SHARED\ResourceDll.dll
C:\Windows\System32\lxss\wslsupport.dll
C:\Windows\System32\Microsoft-Edge-WebView\concrt140.dll
C:\Windows\System32\Microsoft-Edge-WebView\d3dcompiler_47.dll
C:\Windows\System32\Microsoft-Edge-WebView\dual_engine_adapter_x64.dll
C:\Windows\System32\Microsoft-Edge-WebView\dxcompiler.dll
C:\Windows\System32\Microsoft-Edge-WebView\dxil.dll
C:\Windows\System32\Microsoft-Edge-WebView\eventlog_provider.dll
C:\Windows\System32\Microsoft-Edge-WebView\ffmpeg.dll
C:\Windows\System32\Microsoft-Edge-WebView\learning_tools.dll
C:\Windows\System32\Microsoft-Edge-WebView\libEGL.dll
C:\Windows\System32\Microsoft-Edge-WebView\libGLESv2.dll
C:\Windows\System32\Microsoft-Edge-WebView\microsoft_shell_integration.dll
C:\Windows\System32\Microsoft-Edge-WebView\mip_core.dll
C:\Windows\System32\Microsoft-Edge-WebView\mip_protection_sdk.dll
C:\Windows\System32\Microsoft-Edge-WebView\msedge.dll
C:\Windows\System32\Microsoft-Edge-WebView\msedge_elf.dll
C:\Windows\System32\Microsoft-Edge-WebView\msedge_wer.dll
C:\Windows\System32\Microsoft-Edge-WebView\mspdf.dll
C:\Windows\System32\Microsoft-Edge-WebView\msvcp140.dll
C:\Windows\System32\Microsoft-Edge-WebView\msvcp140_codecvt_ids.dll
C:\Windows\System32\Microsoft-Edge-WebView\oneauth.dll
C:\Windows\System32\Microsoft-Edge-WebView\oneds.dll
C:\Windows\System32\Microsoft-Edge-WebView\onnxruntime.dll
C:\Windows\System32\Microsoft-Edge-WebView\onramp.dll
C:\Windows\System32\Microsoft-Edge-WebView\prefs_enclave_x64.dll
C:\Windows\System32\Microsoft-Edge-WebView\telclient.dll
C:\Windows\System32\Microsoft-Edge-WebView\vccorlib140.dll
C:\Windows\System32\Microsoft-Edge-WebView\vcruntime140.dll
C:\Windows\System32\Microsoft-Edge-WebView\vcruntime140_1.dll
C:\Windows\System32\Microsoft-Edge-WebView\vk_swiftshader.dll
C:\Windows\System32\Microsoft-Edge-WebView\vulkan-1.dll
C:\Windows\System32\Microsoft-Edge-WebView\wdag.dll
C:\Windows\System32\Microsoft-Edge-WebView\webview2_integration.dll
C:\Windows\System32\Microsoft-Edge-WebView\wns_push_client.dll
C:\Windows\System32\Microsoft-Edge-WebView\EBWebView\x64\EmbeddedBrowserWebView.dll
C:\Windows\System32\Microsoft-Edge-WebView\EBWebView\x86\EmbeddedBrowserWebView.dll
C:\Windows\System32\Microsoft-Edge-WebView\PdfPreview\PdfPreviewHandler.dll
C:\Windows\System32\Microsoft-Edge-WebView\WidevineCdm\_platform_specific\win_x64\widevinecdm.dll
C:\Windows\System32\migration\APMonPortMig.dll
C:\Windows\System32\migration\AppManMigrationPlugin.dll
C:\Windows\System32\migration\AppxUpgradeMigrationPlugin.dll
C:\Windows\System32\migration\audmigplugin.dll
C:\Windows\System32\migration\bridgemigplugin.dll
C:\Windows\System32\migration\chxmig.dll
C:\Windows\System32\migration\ClipMigPlugin.dll
C:\Windows\System32\migration\CntrtextMig.dll
C:\Windows\System32\migration\commig.dll
C:\Windows\System32\migration\dafmigplugin.dll
C:\Windows\System32\migration\DiskMonMigPlugin.dll
C:\Windows\System32\migration\hwvidmigplugin.dll
C:\Windows\System32\migration\imjpmig.dll
C:\Windows\System32\migration\imkrmig.dll
C:\Windows\System32\migration\MapsMigPlugin.dll
C:\Windows\System32\migration\modemmigplugin.dll
C:\Windows\System32\migration\msctfmig.dll
C:\Windows\System32\migration\MupMigPlugin.dll
C:\Windows\System32\migration\NgcLocalAccountMigPlugin.dll
C:\Windows\System32\migration\pnpmig.dll
C:\Windows\System32\migration\scmdmigplugin.dll
C:\Windows\System32\migration\ServiceModelRegMigPlugin.dll
C:\Windows\System32\migration\shmig.dll
C:\Windows\System32\migration\sppmig.dll
C:\Windows\System32\migration\SxsMigPlugin.dll
C:\Windows\System32\migration\TableTextServiceMig.dll
C:\Windows\System32\migration\TileStoreMigrationPlugin.dll
C:\Windows\System32\migration\UsbPortMig.dll
C:\Windows\System32\migration\VsmKeyMigPlugin.dll
C:\Windows\System32\migration\WininetPlugin.dll
C:\Windows\System32\migration\WMIMigrationPlugin.dll
C:\Windows\System32\migration\WSearchMigPlugin.dll
C:\Windows\System32\migration\WsUpgrade.dll
C:\Windows\System32\migwiz\AppExtAgent.dll
C:\Windows\System32\migwiz\cmi2migxml.dll
C:\Windows\System32\migwiz\csiagent.dll
C:\Windows\System32\migwiz\migapp.dll
C:\Windows\System32\migwiz\migcore.dll
C:\Windows\System32\migwiz\migres.dll
C:\Windows\System32\migwiz\migstore.dll
C:\Windows\System32\migwiz\MXEAgent.dll
C:\Windows\System32\migwiz\unbcl.dll
C:\Windows\System32\migwiz\UserSettingsBackup.BackupUnitProcessor.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-ActiveDirectory-WebServices-DL\adwsmigrate.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-COM-ComPlus-Setup-DL\commig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-DirectoryServices-ADAM-DL\adammigrate.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-msmq-messagingcoreservice\mqmigplugin.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TapiSetup\TapiMigPlugin.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TextServicesFramework-Migration-DL\chxmig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TextServicesFramework-Migration-DL\imjpmig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TextServicesFramework-Migration-DL\imkrmig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TextServicesFramework-Migration-DL\msctfmig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-TextServicesFramework-Migration-DL\TableTextServiceMig.dll
C:\Windows\System32\migwiz\dlmanifests\Microsoft-Windows-WMI-Core\WMIMigrationPlugin.dll
C:\Windows\System32\migwiz\replacementmanifests\hwvid-migration-2\hwvidmigplugin.dll
C:\Windows\System32\migwiz\replacementmanifests\microsoft-activedirectory-webservices\adwsmigrate.dll
C:\Windows\System32\migwiz\replacementmanifests\microsoft-windows-audio-mmecore-other\audmigplugin.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-COM-ComPlus-Setup\commig.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-DirectoryServices-ADAM-Client\adammigrate.dll
C:\Windows\System32\migwiz\replacementmanifests\microsoft-windows-iis-rm\iismig.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-Mup\MupMigPlugin.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-OfflineFiles-Core\CscMig.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-RasApi-Mig\pbkmigr.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-RasServer-MigPlugin\RasMigPlugin.dll
C:\Windows\System32\migwiz\replacementmanifests\microsoft-windows-shmig\shmig.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-TerminalServices-AppServer-Licensing\tsmigplugin.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-TerminalServices-LicenseServer\TlsRepPlugin.dll
C:\Windows\System32\migwiz\replacementmanifests\Microsoft-Windows-TextServicesFramework-Migration\msctfmig.dll
C:\Windows\System32\migwiz\replacementmanifests\SppMig\SppMig.dll
C:\Windows\System32\migwiz\replacementmanifests\WindowsSearchEngine\WSearchMigPlugin.dll
C:\Windows\System32\MRT\6DC53BF3-3E5B-1D2A-BEB5-DE7F63EB1137\MPENGINE.DLL
C:\Windows\System32\MRT\6DC53BF3-3E5B-1D2A-BEB5-DE7F63EB1137\MPGEAR.DLL
C:\Windows\System32\MUI\0409\mscorees.dll
C:\Windows\System32\MUI\0804\mscorees.dll
C:\Windows\System32\oobe\cmisetup.dll
C:\Windows\System32\oobe\diagER.dll
C:\Windows\System32\oobe\diagnostic.dll
C:\Windows\System32\oobe\msoobedui.dll
C:\Windows\System32\oobe\msoobeFirstLogonAnim.dll
C:\Windows\System32\oobe\msoobeplugins.dll
C:\Windows\System32\oobe\msoobewirelessplugin.dll
C:\Windows\System32\oobe\oobecoreadapters.dll
C:\Windows\System32\oobe\pnpibs.dll
C:\Windows\System32\oobe\SetupCleanupTask.dll
C:\Windows\System32\oobe\spprgrss.dll
C:\Windows\System32\oobe\unbcl.dll
C:\Windows\System32\oobe\UserOOBE.dll
C:\Windows\System32\oobe\W32UIImg.dll
C:\Windows\System32\oobe\W32UIRes.dll
C:\Windows\System32\oobe\wdsutil.dll
C:\Windows\System32\oobe\win32ui.dll
C:\Windows\System32\oobe\WinLGDep.dll
C:\Windows\System32\oobe\winsetup.dll
C:\Windows\System32\PointOfService\ProtocolProviders\BarcodeScannerProtocolProvider.dll
C:\Windows\System32\PointOfService\ProtocolProviders\CashDrawerProtocolProvider.dll
C:\Windows\System32\PointOfService\ProtocolProviders\PrinterProtocolProvider.dll
C:\Windows\System32\SecurityHealth\10.0.27703.1006-0\SecurityHealthAgent.dll
C:\Windows\System32\SecurityHealth\10.0.27703.1006-0\SecurityHealthCore.dll
C:\Windows\System32\SecurityHealth\10.0.27703.1006-0\SecurityHealthProxyStub.dll
C:\Windows\System32\SecurityHealth\10.0.27703.1006-0\SecurityHealthSSO.dll
C:\Windows\System32\Setup\cmmigr.dll
C:\Windows\System32\Setup\comsetup.dll
C:\Windows\System32\Setup\msdtcstp.dll
C:\Windows\System32\Setup\pbkmigr.dll
C:\Windows\System32\Setup\RasMigPlugin.dll
C:\Windows\System32\Setup\tssysprep.dll
C:\Windows\System32\Sgrm\AzureAttest.dll
C:\Windows\System32\Sgrm\AzureAttestManager.dll
C:\Windows\System32\Sgrm\AzureAttestNormal.dll
C:\Windows\System32\Sgrm\SgrmEnclave.dll
C:\Windows\System32\Sgrm\SgrmEnclave_secure.dll
C:\Windows\System32\ShellExperiences\Windows.UI.Shell.SharedUtilities.dll
C:\Windows\System32\ShellExperiences\WindowsInternal.Xaml.Controls.Tabs.dll
C:\Windows\System32\Speech\Common\sapi.dll
C:\Windows\System32\Speech\Engines\SR\spsreng.dll
C:\Windows\System32\Speech\Engines\SR\spsrx.dll
C:\Windows\System32\Speech\Engines\SR\srloc.dll
C:\Windows\System32\Speech\Engines\TTS\MSTTSEngine.dll
C:\Windows\System32\Speech\Engines\TTS\MSTTSLoc.dll
C:\Windows\System32\Speech\SpeechUX\SpeechUX.dll
C:\Windows\System32\Speech\SpeechUX\SpeechUXPS.DLL
C:\Windows\System32\Speech\SpeechUX\SPTIP.DLL
C:\Windows\System32\Speech\SpeechUX\zh-CN\SpeechUXRes.dll
C:\Windows\System32\Speech_OneCore\Common\sapi_extensions.dll
C:\Windows\System32\Speech_OneCore\Common\sapi_onecore.dll
C:\Windows\System32\Speech_OneCore\Common\SpeechBrokeredApi.dll
C:\Windows\System32\Speech_OneCore\Common\SpeechServiceWinRTApi.ProxyStub.dll
C:\Windows\System32\Speech_OneCore\Common\Windows.Speech.Dictation.dll
C:\Windows\System32\Speech_OneCore\Common\Windows.Speech.Pal.Desktop.dll
C:\Windows\System32\Speech_OneCore\Common\Windows.Speech.Shell.dll
C:\Windows\System32\Speech_OneCore\Engines\SR\spsreng_onecore.dll
C:\Windows\System32\Speech_OneCore\Engines\SR\spsrx_onecore.dll
C:\Windows\System32\Speech_OneCore\Engines\TTS\MSTTSEngine_OneCore.dll
C:\Windows\System32\Speech_OneCore\Engines\TTS\MSTTSLoc_OneCore.dll
C:\Windows\System32\spool\drivers\W32X86\3\mxdwdrv.dll
C:\Windows\System32\spool\drivers\W32X86\3\PrintConfig.dll
C:\Windows\System32\spool\drivers\x64\3\mxdwdrv.dll
C:\Windows\System32\spool\drivers\x64\3\PCL4RES.DLL
C:\Windows\System32\spool\drivers\x64\3\PCL5ERES.DLL
C:\Windows\System32\spool\drivers\x64\3\PCL5URES.DLL
C:\Windows\System32\spool\drivers\x64\3\PCLXL.DLL
C:\Windows\System32\spool\drivers\x64\3\PJLMON.DLL
C:\Windows\System32\spool\drivers\x64\3\PrintConfig.dll
C:\Windows\System32\spool\drivers\x64\3\PS5UI.DLL
C:\Windows\System32\spool\drivers\x64\3\PSCRIPT5.DLL
C:\Windows\System32\spool\drivers\x64\3\UNIDRV.DLL
C:\Windows\System32\spool\drivers\x64\3\UNIDRVUI.DLL
C:\Windows\System32\spool\drivers\x64\3\UNIRES.DLL
C:\Windows\System32\spool\prtprocs\x64\winprint.dll
C:\Windows\System32\spool\tools\PrintBrmPs.dll
C:\Windows\System32\wbem\appbackgroundtask.dll
C:\Windows\System32\wbem\cimwin32.dll
C:\Windows\System32\wbem\DMWmiBridgeProv.dll
C:\Windows\System32\wbem\DMWmiBridgeProv1.dll
C:\Windows\System32\wbem\dnsclientcim.dll
C:\Windows\System32\wbem\dnsclientpsprovider.dll
C:\Windows\System32\wbem\Dscpspluginwkr.dll
C:\Windows\System32\wbem\dsprov.dll
C:\Windows\System32\wbem\esscli.dll
C:\Windows\System32\wbem\EventTracingManagement.dll
C:\Windows\System32\wbem\fastprox.dll
C:\Windows\System32\wbem\ipmiprr.dll
C:\Windows\System32\wbem\ipmiprv.dll
C:\Windows\System32\wbem\KrnlProv.dll
C:\Windows\System32\wbem\MDMAppProv.dll
C:\Windows\System32\wbem\MDMSettingsProv.dll
C:\Windows\System32\wbem\mgmtprovider.dll
C:\Windows\System32\wbem\Microsoft.AppV.AppVClientWmi.dll
C:\Windows\System32\wbem\Microsoft.Uev.AgentWmi.dll
C:\Windows\System32\wbem\mistreamprov.dll
C:\Windows\System32\wbem\MMFUtil.dll
C:\Windows\System32\wbem\mofd.dll
C:\Windows\System32\wbem\mofinstall.dll
C:\Windows\System32\wbem\msdtcwmi.dll
C:\Windows\System32\wbem\msiprov.dll
C:\Windows\System32\wbem\mttmprov.dll
C:\Windows\System32\wbem\NCProv.dll
C:\Windows\System32\wbem\ndisimplatcim.dll
C:\Windows\System32\wbem\NetAdapterCim.dll
C:\Windows\System32\wbem\netdacim.dll
C:\Windows\System32\wbem\NetEventPacketCapture.dll
C:\Windows\System32\wbem\NetNat.dll
C:\Windows\System32\wbem\netnccim.dll
C:\Windows\System32\wbem\NetPeerDistCim.dll
C:\Windows\System32\wbem\netswitchteamcim.dll
C:\Windows\System32\wbem\NetTCPIP.dll
C:\Windows\System32\wbem\netttcim.dll
C:\Windows\System32\wbem\nlmcim.dll
C:\Windows\System32\wbem\ntevt.dll
C:\Windows\System32\wbem\platid.dll
C:\Windows\System32\wbem\PolicMan.dll
C:\Windows\System32\wbem\PrintManagementProvider.dll
C:\Windows\System32\wbem\qoswmi.dll
C:\Windows\System32\wbem\RacWmiProv.dll
C:\Windows\System32\wbem\regprov.dll
C:\Windows\System32\wbem\repdrvfs.dll
C:\Windows\System32\wbem\schedprov.dll
C:\Windows\System32\wbem\SDNDiagnosticsProvider.dll
C:\Windows\System32\wbem\ServDeps.dll
C:\Windows\System32\wbem\servercompprov.dll
C:\Windows\System32\wbem\ServerManager.DeploymentProvider.dll
C:\Windows\System32\wbem\silprovider.dll
C:\Windows\System32\wbem\SMTPCons.dll
C:\Windows\System32\wbem\stdprov.dll
C:\Windows\System32\wbem\ualprov.dll
C:\Windows\System32\wbem\vdswmi.dll
C:\Windows\System32\wbem\viewprov.dll
C:\Windows\System32\wbem\vpnclientpsprovider.dll
C:\Windows\System32\wbem\vsswmi.dll
C:\Windows\System32\wbem\wbemcntl.dll
C:\Windows\System32\wbem\wbemcons.dll
C:\Windows\System32\wbem\wbemcore.dll
C:\Windows\System32\wbem\wbemdisp.dll
C:\Windows\System32\wbem\wbemess.dll
C:\Windows\System32\wbem\wbemprox.dll
C:\Windows\System32\wbem\wbemsvc.dll
C:\Windows\System32\wbem\WdacWmiProv.dll
C:\Windows\System32\wbem\wfascim.dll
C:\Windows\System32\wbem\Win32_Tpm.dll
C:\Windows\System32\wbem\WinMgmtR.dll
C:\Windows\System32\wbem\WmiApRes.dll
C:\Windows\System32\wbem\WmiApRpl.dll
C:\Windows\System32\wbem\WMICOOKR.dll
C:\Windows\System32\wbem\WmiDcPrv.dll
C:\Windows\System32\wbem\wmipcima.dll
C:\Windows\System32\wbem\wmipdfs.dll
C:\Windows\System32\wbem\wmipdskq.dll
C:\Windows\System32\wbem\WmiPerfClass.dll
C:\Windows\System32\wbem\WmiPerfInst.dll
C:\Windows\System32\wbem\WMIPICMP.dll
C:\Windows\System32\wbem\WMIPIPRT.dll
C:\Windows\System32\wbem\WMIPJOBJ.dll
C:\Windows\System32\wbem\wmiprov.dll
C:\Windows\System32\wbem\WmiPrvSD.dll
C:\Windows\System32\wbem\WMIPSESS.dll
C:\Windows\System32\wbem\WMIsvc.dll
C:\Windows\System32\wbem\wmitimep.dll
C:\Windows\System32\wbem\wmiutils.dll
C:\Windows\System32\wbem\xml\wmi2xml.dll
C:\Windows\System32\wbem\zh-HANS\Microsoft.AppV.AppVClientWmi.resources.dll
C:\Windows\System32\WinBioPlugIns\NUIVoiceWBSAdapters.dll
C:\Windows\System32\WinBioPlugIns\winbiosensoradapter.dll
C:\Windows\System32\WinBioPlugIns\winbiostorageadapter.dll
C:\Windows\System32\WindowsPowerShell\v1.0\PSEvents.dll
C:\Windows\System32\WindowsPowerShell\v1.0\pspluginwkr.dll
C:\Windows\System32\WindowsPowerShell\v1.0\pwrshmsg.dll
C:\Windows\System32\WindowsPowerShell\v1.0\System.Memory.dll
C:\Windows\System32\WindowsPowerShell\v1.0\System.Numerics.Vectors.dll
C:\Windows\System32\WindowsPowerShell\v1.0\System.Runtime.CompilerServices.Unsafe.dll
C:\Windows\System32\WindowsPowerShell\v1.0\System.Security.Principal.Windows.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppBackgroundTask\Microsoft.Windows.AppBackgroundTask.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppvClient\Microsoft.AppV.AppvClientComConsumer.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppvClient\Microsoft.AppV.AppVClientPowerShell.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppvClient\Microsoft.AppV.ClientProgrammability.Eventing.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppvClient\zh-HANS\Microsoft.AppV.AppvClientComConsumer.resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\AppvClient\zh-HANS\Microsoft.AppV.AppVClientPowerShell.resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\BestPractices\Microsoft.BestPractices.Cmdlets.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\BitsTransfer\Microsoft.BackgroundIntelligentTransfer.Management.Interop.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\DeliveryOptimization\Microsoft.Windows.DeliveryOptimization.AdminCommands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Dism\Microsoft.Dism.PowerShell.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Dism\zh-HANS\Microsoft.Dism.Powershell.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\DnsClient\dnslookup.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\LanguagePackManagement\Microsoft.LanguagePackManagement.Powershell.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\LAPS\lapspsh.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\LAPS\lapsutil.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.PowerShell.LocalAccounts\1.0.0.0\Microsoft.PowerShell.LocalAccounts.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.PowerShell.LocalAccounts\1.0.0.0\zh-HANS\Microsoft.PowerShell.LocalAccounts.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.ReFsDedup.Commands\Microsoft.ReFsDedup.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.ReFsDedup.Commands\Microsoft.ReFSDedup.Interop.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.ServerCore.SConfig\2.0.0.0\SConfigHelper.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.Windows.Bcd.Cmdlets\Microsoft.Windows.Bcd.Cmdlets.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.Windows.Bcd.Cmdlets\Microsoft.Windows.Bcd.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.Windows.Bcd.Cmdlets\Microsoft.Windows.Bcd.Utils.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.Windows.Bcd.Cmdlets\zh-HANS\Microsoft.Windows.Bcd.Cmdlets.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Microsoft.Windows.Bcd.Cmdlets\zh-HANS\Microsoft.Windows.Bcd.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\MsDtc\zh-HANS\Microsoft.Dtc.PowerShell.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NetSecurity\Microsoft.Windows.Firewall.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NetSecurity\zh-HANS\Microsoft.Windows.Firewall.Commands.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NFS\MSFT_NfsMappedIdentity\Microsoft.FileServices.Powershell.NFS.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\NFS\MSFT_NfsMappedIdentity\zh-HANS\Microsoft.FileServices.Powershell.NFS.resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\OsConfiguration\Microsoft.Management.OsConfiguration.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\OsConfiguration\zh-HANS\Microsoft.Management.OsConfiguration.Commands.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PersistentMemory\Microsoft.Storage.PersistentMemory.Management.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PersistentMemory\scmbridge.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PersistentMemory\zh-HANS\Microsoft.Storage.PersistentMemory.Management.Commands.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\ProcessMitigations\Microsoft.ProcessMitigations.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Provisioning\provcmdlets.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Provisioning\provcommon.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Provisioning\provpackageapi.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Provisioning\wiminterop.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PSDesiredStateConfiguration\DownloadManager\DSCFileDownloadManager\Microsoft.PowerShell.DSC.FileDownloadManager.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\PSDesiredStateConfiguration\DownloadManager\DSCFileDownloadManager\zh-HANS\Microsoft.PowerShell.DSC.FileDownloadManager.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\UEV\Microsoft.Uev.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\Whea\Microsoft.Windows.Whea.WheaMemoryPolicy.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\WindowsErrorReporting\Microsoft.WindowsErrorReporting.PowerShell.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\WindowsSearch\Microsoft.WindowsSearch.Commands.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\WindowsSearch\zh-HANS\Microsoft.WindowsSearch.Commands.Resources.dll
C:\Windows\System32\WindowsPowerShell\v1.0\Modules\WindowsServerBackup\WSBCmdletHelper.dll
C:\Windows\System32\WindowsPowerShell\v1.0\zh-HANS\powershell_ise.resources.dll
C:\Windows\System32\zh-HANS\AppVStreamingUX.resources.dll
C:\Windows\System32\zh-HANS\AuthFWSnapIn.Resources.dll
C:\Windows\System32\zh-HANS\AuthFWWizFwk.Resources.dll
C:\Windows\System32\zh-HANS\ipamapi.resources.dll
C:\Windows\System32\zh-HANS\LbfoAdminLib.resources.dll
C:\Windows\System32\zh-HANS\Microsoft.Windows.ServerManager.NetworkController.Plugin.resources.dll
C:\Windows\System32\zh-HANS\Microsoft.Windows.ServerManager.Plugins.Ipam.resources.dll
C:\Windows\System32\zh-HANS\ServerManager.resources.dll
| DLL 名称 | 路径 | 描述 | 应用场景 |
|---|---|---|---|
BackgroundMediaPolicy.dll |
C:\Windows\System32\BackgroundMediaPolicy.dll |
管理后台媒体策略 | 管理 Windows 中的媒体播放策略。 |
BamSettingsClient.dll |
C:\Windows\System32\BamSettingsClient.dll |
用于后台活动监视器设置的客户端 | 管理后台活动监视器的配置。 |
BarcodeProvisioningPlugin.dll |
C:\Windows\System32\BarcodeProvisioningPlugin.dll |
条形码配置插件 | 提供条形码配置功能。 |
basecsp.dll |
C:\Windows\System32\basecsp.dll |
基础的 CSP(加密服务提供商) | 提供加密和安全相关的基础服务。 |
basesrv.dll |
C:\Windows\System32\basesrv.dll |
系统基础服务 | 提供基础服务支持,通常与系统功能有关。 |
batmeter.dll |
C:\Windows\System32\batmeter.dll |
电池电量管理 | 管理电池电量和状态。 |
bcastdvr.proxy.dll |
C:\Windows\System32\bcastdvr.proxy.dll |
广播 DVR 代理功能 | 提供广播 DVR 服务的代理功能。 |
BcastDVRBroker.dll |
C:\Windows\System32\BcastDVRBroker.dll |
广播 DVR 经纪人功能 | 协调和管理广播 DVR 服务。 |
BcastDVRClient.dll |
C:\Windows\System32\BcastDVRClient.dll |
广播 DVR 客户端功能 | 提供广播 DVR 客户端功能,允许设备播放流媒体。 |
BcastDVRCommon.dll |
C:\Windows\System32\BcastDVRCommon.dll |
广播 DVR 通用功能 | 提供广播 DVR 服务的通用支持功能。 |
bcd.dll |
C:\Windows\System32\bcd.dll |
启动配置数据(BCD)功能 | 管理启动配置数据(BCD),控制系统启动过程。 |
bcdprov.dll |
C:\Windows\System32\bcdprov.dll |
启动配置数据(BCD)提供程序 | 提供启动配置数据(BCD)的操作功能。 |
bcdsrv.dll |
C:\Windows\System32\bcdsrv.dll |
启动配置数据服务 | 提供启动配置数据服务,管理启动项。 |
BCP47Langs.dll |
C:\Windows\System32\BCP47Langs.dll |
BCP47 语言支持 | 支持 BCP47(语言代码)标准,用于多语言环境。 |
BCP47mrm.dll |
C:\Windows\System32\BCP47mrm.dll |
BCP47 多语言资源管理 | 提供多语言资源管理功能,支持各种语言。 |
bcrypt.dll |
C:\Windows\System32\bcrypt.dll |
加密算法库 | 提供加密算法支持,通常用于哈希和加密操作。 |
bcryptprimitives.dll |
C:\Windows\System32\bcryptprimitives.dll |
基础加密算法支持 | 提供基本的加密算法原语支持。 |
BFE.DLL |
C:\Windows\System32\BFE.DLL |
防火墙引擎服务 | 负责 Windows 防火墙的引擎操作。 |
bi.dll |
C:\Windows\System32\bi.dll |
相关服务支持 | 提供服务支持,通常用于身份验证等任务。 |
bidispl.dll |
C:\Windows\System32\bidispl.dll |
双向显示支持 | 提供双向文本(如阿拉伯文或希伯来文)的显示支持。 |
bindfltapi.dll |
C:\Windows\System32\bindfltapi.dll |
绑定过滤器API | 提供绑定和过滤功能,可能与网络相关。 |
BingASDS.dll |
C:\Windows\System32\BingASDS.dll |
Bing ASDS 服务 | 提供与 Bing 搜索相关的服务功能。 |
BingFilterDS.dll |
C:\Windows\System32\BingFilterDS.dll |
Bing 搜索过滤器服务 | 管理 Bing 搜索结果中的过滤和安全功能。 |
BingMaps.dll |
C:\Windows\System32\BingMaps.dll |
Bing 地图服务 | 提供 Bing 地图服务,支持地图显示和定位功能。 |
BingOnlineServices.dll |
C:\Windows\System32\BingOnlineServices.dll |
Bing 在线服务 | 提供 Bing 的各种在线服务接口。 |
BioCredProv.dll |
C:\Windows\System32\BioCredProv.dll |
生物识别凭证提供者 | 支持生物识别身份验证和凭证管理。 |
bisrv.dll |
C:\Windows\System32\bisrv.dll |
身份验证服务 | 提供身份验证服务,处理用户身份确认。 |
BitLockerCsp.dll |
C:\Windows\System32\BitLockerCsp.dll |
BitLocker 加密服务提供商 | 提供 BitLocker 磁盘加密服务支持。 |
bitsigd.dll |
C:\Windows\System32\bitsigd.dll |
BITS 信号服务 | 提供 BITS(后台智能传输服务)的信号功能。 |
bitsperf.dll |
C:\Windows\System32\bitsperf.dll |
BITS 性能监控 | 提供 BITS 性能监控功能,确保文件传输的稳定性。 |
BitsProxy.dll |
C:\Windows\System32\BitsProxy.dll |
BITS 代理功能 | 提供文件传输过程中的代理服务。 |
biwinrt.dll |
C:\Windows\System32\biwinrt.dll |
Windows 运行时支持 | 提供 Windows 运行时的支持。 |
BlbEvents.dll |
C:\Windows\System32\BlbEvents.dll |
BLB 事件管理 | 管理与 BLB 相关的事件。 |
blbres.dll |
C:\Windows\System32\blbres.dll |
BLB 资源支持 | 提供 BLB(蓝牙低功耗)资源的支持。 |
blbsrv.dll |
C:\Windows\System32\blbsrv.dll |
BLB 服务支持 | 提供 BLB 服务的支持功能。 |
blbuires.dll |
C:\Windows\System32\blbuires.dll |
BLB 用户界面资源 | 提供 BLB 用户界面的资源支持。 |
blb_ps.dll |
C:\Windows\System32\blb_ps.dll |
PowerShell 支持 | 提供 PowerShell 中的 BLB 支持。 |
BluetoothApis.dll |
C:\Windows\System32\BluetoothApis.dll |
蓝牙 API 支持 | 提供蓝牙设备的 API 支持。 |
BluetoothDesktopHandlers.dll |
C:\Windows\System32\BluetoothDesktopHandlers.dll |
蓝牙桌面处理程序 | 管理蓝牙设备在桌面环境中的交互。 |
BluetoothOppPushClient.dll |
C:\Windows\System32\BluetoothOppPushClient.dll |
蓝牙 OPP 推送客户端 | 提供蓝牙对象推送协议(OPP)支持。 |
BootMenuUX.dll |
C:\Windows\System32\BootMenuUX.dll |
启动菜单用户体验 | 提供启动菜单的用户体验支持。 |
bootstr.dll |
C:\Windows\System32\bootstr.dll |
启动程序支持 | 提供 Windows 系统启动时的支持功能。 |
bootsvc.dll |
C:\Windows\System32\bootsvc.dll |
启动服务支持 | 提供启动过程中的服务支持。 |
bootux.dll |
C:\Windows\System32\bootux.dll |
启动界面用户体验 | 管理 |
| DLL 名称 | 路径 | 描述 | 应用场景 |
|---|---|---|---|
cloudAP.dll |
C:\Windows\System32\cloudAP.dll |
提供设备和应用管理的云服务支持 | 将基于云的应用和设备与 Windows 操作系统集成。 |
CloudDesktopCSP.dll |
C:\Windows\System32\CloudDesktopCSP.dll |
云桌面服务提供者(CSP)功能 | 支持企业环境中的云托管桌面服务。 |
CloudDomainJoinAUG.dll |
C:\Windows\System32\CloudDomainJoinAUG.dll |
用户组的云域加入服务 | 促进设备加入云域。 |
CloudDomainJoinDataModelServer.dll |
C:\Windows\System32\CloudDomainJoinDataModelServer.dll |
云域加入操作的数据模型服务器 | 在云环境中域加入时处理数据管理。 |
CloudExperienceHost.dll |
C:\Windows\System32\CloudExperienceHost.dll |
管理云体验界面 | 控制基于云的体验的用户界面。 |
CloudExperienceHostBroker.dll |
C:\Windows\System32\CloudExperienceHostBroker.dll |
云体验过程的中介 | 协调和调解与云相关的任务和活动。 |
CloudExperienceHostCommon.dll |
C:\Windows\System32\CloudExperienceHostCommon.dll |
云体验管理的共享资源 | 提供跨多个云服务使用的常用功能。 |
CloudExperienceHostRedirection.dll |
C:\Windows\System32\CloudExperienceHostRedirection.dll |
重定向与云体验相关的任务和数据 | 管理与云相关的流量和操作的重定向。 |
CloudExperienceHostUser.dll |
C:\Windows\System32\CloudExperienceHostUser.dll |
用户特定的云体验操作 | 处理用户特定的云设置和偏好。 |
CloudIdWxhExtension.dll |
C:\Windows\System32\CloudIdWxhExtension.dll |
云身份和认证的扩展 | 支持用户身份识别和与云服务的认证。 |
CloudRecoveryDownloadTool.dll |
C:\Windows\System32\CloudRecoveryDownloadTool.dll |
用于下载基于云的恢复资源的工具 | 帮助检索云备份或恢复数据。 |
CloudRestoreLauncher.dll |
C:\Windows\System32\CloudRestoreLauncher.dll |
启动基于云的恢复操作 | 从云备份或恢复数据启动系统恢复。 |
| DLL名称 | 路径 | 描述 | 应用场景 |
|---|---|---|---|
AppxProvider.dll |
C:\Windows\System32\Dism\AppxProvider.dll |
AppX包提供程序 | 处理和安装Windows应用程序包(AppX) |
AssocProvider.dll |
C:\Windows\System32\Dism\AssocProvider.dll |
文件关联提供程序 | 管理文件类型与程序之间的关联 |
CbmrProvider.dll |
C:\Windows\System32\Dism\CbmrProvider.dll |
Cbmr(组件化服务)提供程序 | 处理与组件化应用有关的服务 |
CbsProvider.dll |
C:\Windows\System32\Dism\CbsProvider.dll |
CBS(组件基于服务)提供程序 | 处理操作系统的组件管理与服务 |
DismCore.dll |
C:\Windows\System32\Dism\DismCore.dll |
DISM核心库 | 核心服务库,用于图像部署与维护 |
DismCorePS.dll |
C:\Windows\System32\Dism\DismCorePS.dll |
DISM PowerShell支持库 | 提供PowerShell命令支持,用于DISM工具的自动化 |
DismProv.dll |
C:\Windows\System32\Dism\DismProv.dll |
DISM提供程序 | 管理DISM操作过程中的服务与资源 |
DmiProvider.dll |
C:\Windows\System32\Dism\DmiProvider.dll |
DMI(设备管理接口)提供程序 | 处理硬件设备信息的提供与管理 |
EdgeProvider.dll |
C:\Windows\System32\Dism\EdgeProvider.dll |
Edge浏览器提供程序 | 管理与Edge浏览器相关的图像服务 |
FfuProvider.dll |
C:\Windows\System32\Dism\FfuProvider.dll |
固件升级提供程序 | 处理固件更新过程中的服务 |
FolderProvider.dll |
C:\Windows\System32\Dism\FolderProvider.dll |
文件夹提供程序 | 处理与文件夹和目录结构相关的服务 |
GenericProvider.dll |
C:\Windows\System32\Dism\GenericProvider.dll |
通用提供程序 | 提供一般性功能支持 |
IBSProvider.dll |
C:\Windows\System32\Dism\IBSProvider.dll |
安装程序脚本(IBS)提供程序 | 处理Windows安装过程中的脚本与资源 |
ImagingProvider.dll |
C:\Windows\System32\Dism\ImagingProvider.dll |
图像处理提供程序 | 处理Windows映像的创建与管理 |
IntlProvider.dll |
C:\Windows\System32\Dism\IntlProvider.dll |
国际化支持提供程序 | 管理语言和地区设置的支持 |
LogProvider.dll |
C:\Windows\System32\Dism\LogProvider.dll |
日志记录提供程序 | 管理DISM操作中的日志记录 |
MsiProvider.dll |
C:\Windows\System32\Dism\MsiProvider.dll |
MSI安装程序提供程序 | 支持Windows安装文件的管理 |
OfflineSetupProvider.dll |
C:\Windows\System32\Dism\OfflineSetupProvider.dll |
离线设置提供程序 | 管理离线Windows安装和设置 |
OSProvider.dll |
C:\Windows\System32\Dism\OSProvider.dll |
操作系统提供程序 | 管理Windows操作系统的安装与配置 |
ProvProvider.dll |
C:\Windows\System32\Dism\ProvProvider.dll |
提供程序接口提供程序 | 提供操作系统与应用程序接口支持 |
SetupPlatformProvider.dll |
C:\Windows\System32\Dism\SetupPlatformProvider.dll |
设置平台提供程序 | 处理Windows安装平台的相关服务 |
SmiProvider.dll |
C:\Windows\System32\Dism\SmiProvider.dll |
系统管理接口提供程序 | 处理系统管理接口的提供与资源 |
SysprepProvider.dll |
C:\Windows\System32\Dism\SysprepProvider.dll |
Sysprep提供程序 | 处理Windows系统准备(Sysprep)相关服务 |
TransmogProvider.dll |
C:\Windows\System32\Dism\TransmogProvider.dll |
转换提供程序 | 处理转换Windows映像格式的相关服务 |
UnattendProvider.dll |
C:\Windows\System32\Dism\UnattendProvider.dll |
无人值守安装提供程序 | 支持无人值守安装过程中的配置与设置 |
VhdProvider.dll |
C:\Windows\System32\Dism\VhdProvider.dll |
虚拟硬盘提供程序 | 管理虚拟硬盘映像的相关服务 |
WimProvider.dll |
C:\Windows\System32\Dism\WimProvider.dll |
Windows映像提供程序 | 处理WIM(Windows映像格式)映像文件的操作与服务 |
| DLL名称 | 路径 | 描述 | 应用场景 |
|---|---|---|---|
mxdwdrv.dll |
C:\Windows\System32\spool\drivers\W32X86\3\mxdwdrv.dll |
打印机驱动 | 用于文档渲染的打印过程 |
PrintConfig.dll |
C:\Windows\System32\spool\drivers\W32X86\3\PrintConfig.dll |
打印配置文件 | 管理打印机设置和配置 |
mxdwdrv.dll |
C:\Windows\System32\spool\drivers\x64\3\mxdwdrv.dll |
打印机驱动 | 用于文档渲染的打印过程 |
PCL4RES.DLL |
C:\Windows\System32\spool\drivers\x64\3\PCL4RES.DLL |
PCL(打印控制语言)资源 | 支持PCL4打印机的打印 |
PCL5ERES.DLL |
C:\Windows\System32\spool\drivers\x64\3\PCL5ERES.DLL |
PCL5资源 | 支持PCL5打印机的打印 |
PCL5URES.DLL |
C:\Windows\System32\spool\drivers\x64\3\PCL5URES.DLL |
PCL5 Unicode资源 | PCL5打印的Unicode支持 |
PCLXL.DLL |
C:\Windows\System32\spool\drivers\x64\3\PCLXL.DLL |
PCL XL(扩展语言) | 支持PCL XL高级打印 |
PJLMON.DLL |
C:\Windows\System32\spool\drivers\x64\3\PJLMON.DLL |
打印监控工具 | 监控网络环境中的打印作业 |
PrintConfig.dll |
C:\Windows\System32\spool\drivers\x64\3\PrintConfig.dll |
打印配置文件 | 管理打印机设置和配置 |
PS5UI.DLL |
C:\Windows\System32\spool\drivers\x64\3\PS5UI.DLL |
PostScript UI界面 | 管理PostScript打印机配置 |
PSCRIPT5.DLL |
C:\Windows\System32\spool\drivers\x64\3\PSCRIPT5.DLL |
PostScript脚本 | 将打印作业转换为PostScript格式 |
UNIDRV.DLL |
C:\Windows\System32\spool\drivers\x64\3\UNIDRV.DLL |
通用打印机驱动 | 各种打印机的通用驱动 |
UNIDRVUI.DLL |
C:\Windows\System32\spool\drivers\x64\3\UNIDRVUI.DLL |
通用驱动UI界面 | 通用打印机驱动的用户界面 |
UNIRES.DLL |
C:\Windows\System32\spool\drivers\x64\3\UNIRES.DLL |
通用资源 | 通用打印机驱动的资源文件 |
winprint.dll |
C:\Windows\System32\spool\prtprocs\x64\winprint.dll |
Windows打印处理器 | 在Windows中处理打印作业 |
PrintBrmPs.dll |
C:\Windows\System32\spool\tools\PrintBrmPs.dll |
打印机备份与恢复 | 备份和恢复打印机设置 |
DLL侧载(DLL Side-Loading) 是一种攻击技术,通常被黑客利用来执行恶意代码。它发生在应用程序加载动态链接库(DLL)文件时,攻击者通过某些手段将恶意的DLL文件植入到应用程序的正常路径或不受限制的目录中,从而欺骗操作系统或应用程序加载恶意DLL,导致执行攻击者控制的代码。
1. 什么是DLL侧载?
DLL(动态链接库,Dynamic Link Library)是Windows操作系统中用于存储代码、数据和资源的文件。它们可以被多个程序共享,避免重复代码并提高效率。DLL文件通常通过操作系统或应用程序在运行时加载和调用。
DLL侧载是一种攻击方式,黑客将恶意的DLL文件以与合法的DLL文件相同的名称放置在特定位置。当应用程序加载这些合法DLL文件时,操作系统实际上会加载恶意的DLL文件,从而执行攻击者所植入的恶意代码。
2. DLL侧载攻击的过程:
攻击者利用DLL侧载攻击的基本流程如下:
-
寻找漏洞或合适的应用程序: 攻击者通常会寻找那些不使用完全限定路径的应用程序,或是那些在加载DLL时没有正确验证DLL来源的应用程序。例如,有些应用程序可能会在不安全的目录(如用户目录或临时文件夹)中查找DLL文件。
-
创建恶意DLL: 攻击者会编写一个恶意的DLL文件,其中包含恶意代码,这些代码可能会被用来进行远程控制、窃取信息、破坏系统或进行其他恶意行为。
-
将恶意DLL放入可被应用程序加载的路径中: 攻击者会将这个恶意DLL文件放入目标程序可能加载的目录,通常这个目录与应用程序的合法DLL文件所在位置相同,或是某个系统不会引起注意的位置。
-
应用程序加载恶意DLL: 当目标应用程序启动并试图加载所需的DLL时,由于DLL侧载技术,操作系统加载的是恶意DLL,而不是合法的DLL文件,导致恶意代码被执行。
3. 为什么DLL侧载有效?
DLL侧载之所以有效,主要依赖于以下几个因素:
-
DLL查找路径问题: 操作系统在查找DLL时,会按照一定的顺序搜索多个路径,包括应用程序的目录、系统目录等。如果在这些路径中存在一个恶意DLL,操作系统可能会加载它,而不是找到正确的合法DLL。
-
程序未正确验证DLL: 很多应用程序在加载DLL时,未进行完整的验证,也没有采用数字签名、路径检查等安全措施,导致恶意DLL可以伪装成正常的DLL。
-
不安全的文件路径: 有些应用程序在加载DLL时,允许从不受信任的文件夹中加载DLL,例如临时文件夹、用户文件夹等,这些地方可能被攻击者控制,容易被用于放置恶意DLL。
-
代码注入与执行: 通过DLL侧载,攻击者可以在应用程序执行过程中注入恶意代码,从而实现对目标系统的控制、数据窃取等恶意行为。
4. DLL侧载的常见场景和攻击示例:
-
常见场景:攻击者可能利用DLL侧载攻击:
- 安装软件或游戏程序时,通过捆绑恶意DLL文件。
- 攻击某些系统管理工具,利用DLL侧载注入恶意代码。
- 通过钓鱼邮件或伪造合法的软件下载链接,诱导用户下载恶意应用或更新,导致DLL侧载。
-
攻击示例:有许多知名的网络攻击案例使用了DLL侧载,例如:
- APT攻击:APT(高级持续性威胁)攻击者经常使用DLL侧载技术来潜伏在受害者系统中,获取管理员权限并进行持续的攻击。
- 恶意软件传播:恶意软件和勒索病毒也可能利用DLL侧载来通过合法的应用程序传播,躲避杀毒软件的检测。
5. 如何防范DLL侧载攻击?
1. 限制DLL加载路径
确保应用程序只从可信的、预定义的路径加载DLL,避免从临时目录或不安全的路径加载DLL。
2. 使用完全限定路径
应用程序应使用完全限定的路径来加载DLL,而不是依赖操作系统的默认搜索路径。这可以防止加载错误的DLL。
3. 数字签名验证
使用数字签名对DLL文件进行验证,确保加载的DLL来自合法的发布者。操作系统和应用程序可以通过验证签名来防止加载未经授权的DLL。
4. 强制代码完整性检查
Windows系统提供了一些安全机制,如 Windows Defender Application Control (WDAC) 和 AppLocker,可以限制应用程序只能加载经过签名和验证的DLL文件。
5. 定期扫描和监控
使用反病毒软件和端点保护系统(如EDR)定期扫描系统文件和应用程序,检测潜在的恶意DLL文件和行为。
6. 最小权限原则
将应用程序的执行权限限制在最小范围内,防止攻击者利用DLL侧载获得管理员权限。
7. 避免使用易受攻击的应用程序
避免使用存在已知DLL侧载漏洞的应用程序,及时更新软件,修补已知的安全漏洞。
DLL侧载是一种通过将恶意DLL文件放置在程序加载路径中,利用程序加载DLL时的不当验证来执行恶意代码的攻击技术。其有效性依赖于操作系统和应用程序在加载DLL时没有正确的验证机制,或者程序加载的路径不安全。为了防范DLL侧载攻击,开发者和系统管理员应当加强路径管理、使用数字签名验证、实施最小权限原则等安全措施,以降低系统和网络的风险。
**DLL侧载(DLL Side-Loading)**的底层原理涉及到操作系统如何处理动态链接库(DLL)文件的加载过程,以及攻击者如何利用这个过程将恶意DLL文件注入到目标应用程序中。DLL侧载攻击通常依赖于操作系统的DLL加载机制和路径查找顺序中的漏洞,下面我们将详细分析这一原理。
1. Windows的DLL加载机制
在Windows操作系统中,应用程序通常会使用**动态链接库(DLL)**来共享代码。一个程序在运行时会加载多个DLL文件来执行某些功能。操作系统会根据一定的规则来查找和加载这些DLL文件。
DLL加载的查找顺序
操作系统会按照一定的顺序查找需要加载的DLL文件,具体顺序如下:
-
应用程序的当前目录: 操作系统首先会在应用程序所在的目录中查找需要的DLL。如果找到了目标DLL,就会加载它。
-
系统目录: 接下来,操作系统会查找Windows系统目录(如
C:\Windows\System32)中的DLL文件。 -
Windows目录: 如果在系统目录中没有找到DLL,操作系统会检查Windows目录(如
C:\Windows)中是否存在该DLL。 -
路径环境变量中的目录: 如果DLL仍然没有找到,操作系统会检查系统的PATH环境变量所包含的目录。
-
最后是用户目录或应用程序的其他目录: 操作系统还可能会在其他一些临时目录、用户文件夹等地方查找。
2. DLL侧载的底层原理
DLL侧载攻击利用了上述DLL加载顺序中的漏洞。攻击者通过在应用程序的查找路径中放置恶意的DLL文件,迫使操作系统加载这些恶意DLL,而不是加载原本的合法DLL文件。详细过程如下:
1. 找到目标应用程序的DLL依赖关系
攻击者首先会分析目标应用程序,确定它依赖于哪些DLL文件。通过工具(如Dependency Walker)可以查看程序的动态链接库依赖关系图,了解程序启动时加载了哪些DLL文件。
2. 伪造恶意DLL
攻击者会编写恶意DLL,通常这个DLL的功能是执行恶意代码或进行信息窃取等。为了能够成功实施攻击,恶意DLL的名称必须与目标程序依赖的合法DLL名称相同。
3. 放置恶意DLL文件
一旦攻击者确认了合法的DLL名称,他们会将恶意DLL文件放置在应用程序会首先查找的目录中,例如应用程序的当前工作目录。攻击者可能通过社交工程手段让受害者将恶意DLL文件放入正确的路径,或者直接在软件安装过程中捆绑恶意DLL。
4. 操作系统加载恶意DLL
当目标程序启动时,操作系统按照前述的查找顺序加载DLL文件。由于恶意DLL的名称与合法DLL相同,并且它被放置在程序的工作目录(或系统的其他优先搜索路径)中,操作系统会加载恶意DLL文件,而不是合法的DLL。
5. 执行恶意代码
一旦恶意DLL被加载,它会执行其中包含的恶意代码。攻击者可以通过这种方式控制受害者的程序,进行任意操作,比如远程代码执行、信息窃取、系统权限提升等。
3. 为何DLL侧载攻击有效?
DLL侧载攻击之所以有效,主要是因为以下几个因素:
1. DLL查找路径的问题
Windows的DLL查找机制有时会优先加载当前工作目录中的DLL文件,而不是系统目录中的文件。如果一个应用程序依赖于多个DLL,并且其中一个DLL文件能够被恶意替换,攻击者就可以通过将恶意DLL文件放入程序的工作目录,利用DLL侧载进行攻击。
2. 应用程序没有验证DLL的来源
很多应用程序在加载DLL时,并不会验证DLL的完整性或来源,尤其是在使用默认查找路径时。如果攻击者能控制程序的工作目录或使用其他漏洞,便能够成功注入恶意DLL。
3. 数字签名和完整性检查的缺失
如果程序没有启用代码签名验证或完整性检查机制,攻击者可以将恶意DLL伪装成合法的DLL文件进行加载,而不会被系统或应用程序所察觉。
4. 路径污染
如果程序使用了环境变量或临时目录等不安全的路径作为DLL查找路径,攻击者便可以在这些目录中放置恶意DLL,导致DLL侧载。
4. 如何避免DLL侧载攻击?
为了防止DLL侧载攻击,开发者和系统管理员可以采取以下措施:
1. 使用完全限定路径
程序在加载DLL时应使用绝对路径(即指定DLL的完整路径),避免操作系统使用默认的查找路径。
2. 限制DLL加载路径
限制应用程序只从可信的目录加载DLL,防止从不安全的路径(如用户目录、临时文件夹等)加载。
3. 启用数字签名和验证
对所有加载的DLL进行数字签名验证,确保它们来自可信的源。这可以防止攻击者将伪造的DLL文件注入系统。
4. 使用应用程序控制机制
Windows提供了 AppLocker 和 Windows Defender Application Control (WDAC) 等工具,允许管理员限制哪些应用程序和DLL能够在系统上运行。
5. 禁用不必要的功能
对于不需要加载外部DLL的应用程序,禁用动态链接库的加载功能或使用其他替代方案(如静态链接)。
6. 及时更新和修补
定期更新应用程序和操作系统,修补可能存在的安全漏洞,减少攻击面。
DLL侧载攻击利用了Windows操作系统在加载DLL文件时的查找机制漏洞。攻击者通过将恶意DLL文件放置在程序查找路径中的优先位置,迫使操作系统加载恶意代码。为了避免DLL侧载攻击,开发者和系统管理员应采用路径验证、数字签名、代码完整性检查等多重安全措施,确保系统的安全性。
DLL侧载(DLL Side-Loading)架构
DLL侧载(DLL Side-Loading)是一种针对Windows操作系统的攻击手段,攻击者通过利用操作系统加载动态链接库(DLL)时的机制漏洞,将恶意DLL注入到目标应用程序中。以下是DLL侧载攻击的架构分析,详细说明了攻击过程、关键技术点及防护措施。
1. 攻击架构概述
DLL侧载攻击的核心架构涉及到以下几个主要组件和步骤:
-
攻击者控制的恶意DLL文件:攻击者通过精心设计一个恶意DLL文件,伪装成一个合法的DLL,目标是让该恶意DLL在加载时执行攻击者的指令。
-
目标应用程序:攻击者选择一个存在DLL侧载漏洞的应用程序作为攻击目标,这些程序可能在某些情况下加载外部DLL。
-
操作系统的DLL加载机制:Windows操作系统根据一定的搜索路径加载应用程序需要的DLL文件。操作系统会依照DLL查找顺序逐一检查路径,直到找到匹配的DLL文件为止。如果恶意DLL位于高优先级路径(如当前目录),就会被加载并执行。
-
漏洞利用:通过操控DLL加载路径或者修改程序工作目录,攻击者使得恶意DLL文件被加载并执行,从而实现代码注入、权限提升或其他恶意行为。
2. DLL加载过程(Windows操作系统)
Windows操作系统在加载应用程序的依赖DLL时,会按照一系列的优先级路径进行搜索。具体路径查找顺序如下:
- 当前工作目录:操作系统首先在运行的应用程序所在的目录查找所需的DLL文件。
- 系统目录(如
C:\Windows\System32):如果在当前目录中找不到,操作系统会查找系统目录中的DLL。 - Windows目录(如
C:\Windows):如果在系统目录中找不到,操作系统会进一步查找Windows目录中的DLL。 - PATH环境变量中的目录:操作系统会查找环境变量
PATH中指定的目录。 - 其他用户目录和临时目录:最终,操作系统还可能在用户目录、临时文件夹等位置查找。
攻击者可以利用这些查找路径的特点,通过将恶意DLL放置在优先级较高的位置(如当前工作目录),迫使目标应用程序加载恶意DLL。
3. DLL侧载攻击的架构细节
3.1 步骤1:分析目标应用程序
攻击者首先要分析目标应用程序,确定它依赖哪些DLL文件。使用一些工具(如Dependency Walker、Process Monitor等)可以帮助识别应用程序在运行时加载的DLL文件。
3.2 步骤2:伪造恶意DLL
攻击者编写一个恶意DLL,通常这个DLL的行为包括:
- 执行恶意操作(如后门程序、远程控制)。
- 向受害者系统注入恶意代码。
- 执行窃取敏感信息等行为。
恶意DLL需要与目标应用程序依赖的合法DLL具有相同的名称和导出符号,以确保其能够正确加载并运行。
3.3 步骤3:将恶意DLL文件放置到目标路径
攻击者将恶意DLL放置在目标应用程序查找DLL的路径中,通常是应用程序的工作目录。这样,当目标程序启动时,操作系统会先在该目录中查找DLL,导致加载到恶意DLL。
如果攻击者能访问到目标程序的文件夹或能够利用漏洞来篡改该程序的工作目录,就能够轻松实现DLL侧载。
3.4 步骤4:程序加载恶意DLL
当目标应用程序启动时,它会按照DLL加载路径查找所依赖的DLL。由于恶意DLL与合法DLL同名且位于当前目录中,操作系统会加载这个恶意DLL,而非合法的DLL。
3.5 步骤5:执行恶意代码
恶意DLL成功加载后,DLL中的恶意代码会被执行。此时,攻击者可以利用恶意DLL执行各种恶意操作,如远程控制、权限提升、信息窃取等。
4. 关键技术点
4.1 路径查找机制
Windows的DLL加载机制,尤其是当前目录优先的查找顺序,是DLL侧载攻击的核心漏洞。攻击者利用这个机制可以控制DLL加载的路径,进而注入恶意代码。
4.2 DLL重定向
攻击者不仅仅可以利用当前目录,还可以通过修改环境变量或使用注册表等方式,使得恶意DLL的加载路径得以修改或重定向。
4.3 合法性验证缺失
很多应用程序在加载外部DLL时没有进行合法性验证,尤其是在未启用代码签名验证的情况下,这为DLL侧载提供了可乘之机。
4.4 系统路径污染
Windows的系统路径、临时目录以及用户文件夹等地方都有可能被用于DLL的加载,攻击者可以在这些目录中放置恶意DLL文件,达到侧载的目的。
5. 防护措施
为了防止DLL侧载攻击,可以采取以下防护措施:
5.1 使用完整路径加载DLL
开发者应当使用完整路径来加载DLL,而不是依赖操作系统的默认路径查找机制。避免使用相对路径或仅依赖当前工作目录来查找DLL。
5.2 启用数字签名验证
启用代码签名和数字证书验证,确保程序加载的DLL来源可靠,防止恶意DLL伪装成合法DLL进行加载。
5.3 限制加载路径
应用程序应当严格限制只能从特定的目录加载DLL,防止从不安全的路径(如临时目录、用户文件夹等)加载DLL。
5.4 使用AppLocker和WDAC
Windows提供了AppLocker和**Windows Defender Application Control (WDAC)**等工具,可以限制哪些应用程序和DLL能够在系统上运行。通过这些工具,管理员可以有效防止不受信任的DLL文件加载。
5.5 最小化DLL依赖
尽量避免应用程序依赖外部DLL,使用静态链接或者其他更安全的方式来处理外部代码依赖,减少DLL侧载攻击的风险。
5.6 定期安全更新和审计
保持操作系统和应用程序的更新,及时修补已知的安全漏洞。此外,定期进行安全审计和监控,检测是否有不正常的DLL加载行为。
DLL侧载攻击是一种利用Windows操作系统DLL加载机制漏洞的攻击方式,通过在应用程序的DLL查找路径中放置恶意DLL,攻击者能够执行恶意代码并利用目标应用程序进行进一步的攻击。理解DLL加载机制、识别潜在的安全漏洞并采取防护措施,对于降低此类攻击的风险至关重要。开发人员和系统管理员需要结合完整路径加载、代码签名、路径限制等多重措施来有效防范DLL侧载攻击。

浙公网安备 33010602011771号