【翻译WINDOWS NT FILE SYSTEM INTERNAL】NT缓存管理器一(7)

本文介绍了NT缓存管理器的四种主要接口:文件流操作函数、拷贝接口、MDL接口和锁定接口,详细解释了每种接口的功能及其应用场景。

缓存管理器接口

现在我们探讨了一般情况下文件系统驱动怎么使用缓存,让我们系统组件使用NT缓存管理器的不同方式。文件系统驱动和WINDOWS NT操作系统中其他组件可以通过四组接口例程来使用缓存管理器提供的服务。第一组接口历程提供对文件流访问和操作的支持,但是其他三组可以用作不同系统缓存访问方法。

NT缓存管理器提供四组接口是文件流操作函数,拷贝接口,MDL接口,锁定接口(pinning interface)。

文件流操作函数

缓存管理器提供对初始化文件流缓存,终止缓存,(在需要时)回写缓存到磁盘,修改文件大小,清除缓存数据,清零文件数据的支持,还支持还支持文件系统日志,以及一些其他的常用的维护性功能。缓存管理器这个接口集包括以下函数:

1.CcInitializeCacheMap

2.CcUninitializeCacheMap

3.CcSetFileSizes

4.CcPurgeCacheSection

5.CcSetDirtyPageThreshold

6.CcFlushCache

7.CcZeroData

8.CcGetFileObjectFromSectionPtrs

9.CcSetLogHandleForFile

10.CcSetAdditionalCacheAttributes

11.CcGetDirtyPages

12.CcIsThereDirtyData

13.CcGetLsnForFileObject

拷贝接口

拷贝接口是最简单的缓存访问形式。客户端模型,使用缓存管理器,可以使用这些接口来从一个内存缓冲区缓冲区中拷贝一个字节范围到文件流缓存中指定的虚拟字节偏移,或者(一个字节范围)从文件流缓存中一个指定的虚拟字节偏移复制到一个内存缓冲区.

接口包括一个初始化预读(read-ahead)的调用,和一些支持write throttling的调用。如果系统运行在低可用或可修改页数的情况下(我理解意思是可用内存或可修改内存少的时候) ,write throttling允许缓存管理器客户端(一般是一个文件系统驱动)延迟真正的写操作。如果一些应用程序极端频繁的修改数据,大于 延迟写者和修改页写者可以初始化传输修改数据到磁盘或者通过网络到一个存储服务器 的频率(greater than the rate

at which the lazy writer ormodified page writer can initiate the transfer of modified

data to disk oracross the network to a storage server),这个条件可以发生。注意,这是完全可能的,磁盘或者网络驱动可能没有能力与修改页写者(the modified page writer)或者延迟写者(lazy writer)正在生成的写数据的I/O请求的速度并驾齐驱(keep pace with sth)。这可能会导致未修改页可用数量降低。

缓存管理器这个接口集合包括以下例程:

1.CcCopyRead/CcFastCopyRead

2.CcCopyWrite/CcFastCopyWrite

3.CcCanlWrite

4.CcDeferWrite

5.CcSetReadAheadGranularity

6.CcScheduleReadAhead

MDL接口

一个内存描述列表(MDL)是一个不透明的映射实际虚拟地址范围到一个或多个基于页的物理地址范围的内存管理定义的数据接口。对于缓存管理器,MDL接口允许通过DMA(Direct Memory Access)直接访问系统缓存。这个例程集合组成MDL接口返回一个MDL给调用者,这个MDL包括请求中描述的字节范围,这个字节范围可以接连被调用者用来直接传输数据进或出系统缓存。

这个接口对于需要直接访问系统缓存内容的子系统是很有用的。例如,需要使用DMA通过网络设备直接进入或取出缓存管理器虚拟地址范围的网络文件服务,使用MDL接口来实现高性能。当这个接口不在的时候(in the absence of this interface),从系统缓存向外传送数据的网络驱动程序第一次可能会分配一个临时缓冲区,用来从系统缓存拷贝数据到这个临时缓冲区,让网络设备执行传输,最后释放临时缓冲区。如果数据可以直接被网络设备通过网络从系统缓存向外传输,分配释放临时缓冲区的额外调用以及冗余的拷贝可以全部被避免。通过使用CcMdlRead和CcMdlReadComplete顺序调用可以实现这个目的,是确定无疑的。

注意,像拷贝接口一样,这些接口共享相同的预读调用。MDL接口和那些属于拷贝接口的例程可以被同时用在相同的文件流。缓存管理器这个例程集提供的例程:

1.CcMdlRead

2.CcMdlReadComplete

3.CcPrepareMdlWrite

4.CcMdlWriteComplete

值得一提的一个有兴趣的点是,当缓存管理器中大多数其他关于文件数据传输的例程(例如CcMdlRead,CcCopyRead)执行接口自身提供的数据传输功能时,CcPrepareMdlWrite()例程简单的创建一个包含原始数据的MDL,原始数据可以被之后的优先调用者修改,通过调用CcMdlWriteComplete()。因此,尽管在CcPrepareMdlWrite()被调用的时候,一些数据传输可能被缓存管理器执(为了从磁盘或者通过网络和MDL描述的页内存中获取当前文件流数据),但这个例程更像是一个使能器例程,允许调用者使用返回的MDL延迟传输数据。

锁定接口

缓存管理器提供的这个接口可以被用来执行两种任务:

1.为了使用缓冲区指针直接访问数据,映射数据到系统缓存。

2.锁住支持映射数据的物理页

另外,可以使用缓冲区指针直接读数据,调用者可以仅仅在系统缓存里直接修改数据。

当被映射数据不再需要被访问时,数据可以被解锁。这将仅仅导致被锁定的页正在解锁,并对其他可用。一旦数据被解锁,数据指针不能被继续使用。锁定数据一般用来提供效率,当文件系统驱动或者其他系统组件需要使用内存里的数据结构频繁直接访问时。这个仅仅用来保证,正在被访问的数据不能从系统内存中移除。无论如何,锁定被映射数据消耗物理内存,因此会减少其他系统组件大量可用内存。

注意,锁定接口不能直接与拷贝接口或者MDL接口一起使用。

在操作被缓存的文件系统元数据的时候,这个接口经常被文件系统驱动用来处理被缓存的文件系统元数据。锁定接口由以下例程组成:

1.CcMapData

2.CcPinMappedData

3.CcPinRead

4.CcSetDirtyPinnedData

5.CcPreparePinWrite

6.CcUnpinData

7.CcUnpinDataForThread

8.CcRepinBcb

9.CcUnpinRepinnedBcb

10.CcGetFileObjectFromBcb

上面的函数将在第七章,NT缓存管理器二,中详细描述。

平台版本信息 Windows : 6.1.7601.65536 (Win32NT) Common Language Runtime : 4.0.30319.42000 System.Deployment.dll : 4.8.3761.0 built by: NET48REL1 clr.dll : 4.8.3928.0 built by: NET48REL1 dfdll.dll : 4.8.3761.0 built by: NET48REL1 dfshim.dll : 4.0.31106.0 (Main.031106-0000) 源 部署 URL : file:///D:/Users/0082994/Downloads/HKC.Main.application 部署提供方 URL : http://10.8.151.96/PRD/YMS/HKC.Main.application 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 应用程序 URL : http://10.8.151.96/PRD/YMS/Application%20Files/HKC.Main_1_0_0_119/HKC.Main.exe.manifest 服务器 : Microsoft-IIS/10.0 X-Powered-By : ASP.NET 标识 部署标识 : HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 应用程序标识 : HKC.Main.exe, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86, type=win32 应用程序摘要 * 可安装的应用程序。 错误摘要 以下是错误摘要,这些错误的详细信息列在该日志的后面。 * 激活 D:\Users\0082994\Downloads\HKC.Main.application 导致异常。 检测到下列失败消息: + 存储操作期间发生异常。 + 另个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) 组件存储事务失败摘要 * [2025/11/9 8:47:27] 处的事务 - 暂存组件文件(HKC.Main.exe)未成功。 - 暂存组件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll)未成功。 - 暂存组件(Infragistics4.Documents.Word.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Documents.Word.v17.2.dll)未成功。 - 暂存组件(RDotNet.dll.genman)未成功。 - 暂存组件文件(RDotNet.dll)未成功。 - 暂存组件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.UltraWinCalcManager.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.UI.Service.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.UI.Service.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.View.Admin.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.View.Admin.dll)未成功。 - 暂存组件(NPOI.OOXML.dll.genman)未成功。 - 暂存组件文件(NPOI.OOXML.dll)未成功。 - 暂存组件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Olap.DataProvider.Adomd.v17.2.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.View.CF.dll)未成功。 - 暂存组件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman)未成功。 - 暂存组件文件(AIM.AimBrain.HKC.UI.EDA.ValueObject.dll)未成功。 - 暂存组件(NPOI.OpenXml4Net.dll.genman)未成功。 - 暂存组件文件(NPOI.OpenXml4Net.dll)未成功。 - 暂存组件(Infragistics4.Win.SupportDialogs.v17.2.dll.genman)未成功。 - 暂存组件文件(Infragistics4.Win.SupportDialogs.v17.2.dll)未成功。 - 安装部署(http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86)未成功。 - 设置个或多个部署元数据未成功。 警告 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 * 此应用程序清单无签名。签名验证将被忽略。 操作进度状态 * [2025/11/9 8:47:17] : 已启动 D:\Users\0082994\Downloads\HKC.Main.application 的激活过程。 * [2025/11/9 8:47:17] : 部署清单处理已成功完成。 * [2025/11/9 8:47:17] : 已启动应用程序的安装过程。 * [2025/11/9 8:47:17] : 应用程序清单处理已成功完成。 * [2025/11/9 8:47:19] : 已找到兼容运行时版本 4.0.30319。 * [2025/11/9 8:47:19] : 信任请求和平台检测已完成。 * [2025/11/9 8:47:26] : 预订依赖项下载已完成。 * [2025/11/9 8:47:26] : 已启动下载的应用程序的提交过程。 错误详细信息 执行此操作期间检测到下列错误。 * [2025/11/9 8:47:27] System.Deployment.Application.DeploymentException (ComponentStore) - 存储操作期间发生异常。 - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState)System.Deployment.Application.ComponentStore.SubmitStoreTransactionCheckQuota(StoreTransactionContext storeTxn, SubscriptionState subState)System.Deployment.Application.ComponentStore.CommitApplication(SubscriptionState subState, CommitApplicationParams commitParams)System.Deployment.Application.SubscriptionStore.CommitApplication(SubscriptionState& subState, CommitApplicationParams commitParams)System.Deployment.Application.ApplicationActivator.InstallApplication(SubscriptionState& subState, ActivationDescription actDesc)System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl, Uri& deploymentUri)System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) --- 引发异常的上位置中堆栈跟踪的末尾 --- 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()System.Deployment.Application.ApplicationActivator.PerformDeploymentActivationWithRetry(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state) --- 内部异常 --- System.IO.FileLoadException - 另个程序正在使用此文件,进程无法访问。 (异常来自 HRESULT:0x80070020) - 源: System.Deployment - 堆栈跟踪: 在 System.Deployment.Internal.Isolation.IStore.Transact(IntPtr cOperation, StoreTransactionOperation[] rgOperations, UInt32[] rgDispositions, Int32[] rgResults)System.Deployment.Internal.Isolation.Store.Transact(StoreTransactionOperation[] operations, UInt32[] rgDispositions, Int32[] rgResults)System.Deployment.Application.ComponentStore.SubmitStoreTransaction(StoreTransactionContext storeTxn, SubscriptionState subState) 组件存储事务详细信息 * [2025/11/9 8:47:27] 处的事务 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: MY665HR1.G4K.application + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Set - HRESULT: 0x0 + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.manifest + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogIn.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\System.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: tibrv.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: SPCControlRuleList.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: HKC.Main.exe.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_yms.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\LogOut.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_eda.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseConnectSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\ListenTIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\FileTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_time.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_user.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Index\index.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\DatabaseSourceFactory.xml + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\header_back.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_max.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_min.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\TIB\TIBConnection.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\TSqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Config\Database\SqlMap.config + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\InitializeMenu.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\LEAKAGE.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\icon_exit.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Bottom\icon_message.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Menu\OfflineTrend.png + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: icon.ico + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: View\AOI\DefectImage\NOGRAB.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Resource\NA.jpg + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Images\MainFrom\Header\system_logo_edaspc.png + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.MapLib.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.MapLib.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.DataMapper.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.DataMapper.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: log4net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: log4net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Archive.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinLiveTileView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpellChecker.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraGeographicMap.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSpreadsheet.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraGauge.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraGauge.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.TSql.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.TSql.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Oracle.ManagedDataAccess.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Oracle.ManagedDataAccess.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Calulation.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Calulation.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Systems.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Systems.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Module.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Module.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDock.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDock.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.Map.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.Map.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Portable.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Portable.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.Misc.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.Misc.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinEditors.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinEditors.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WF.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WF.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Controls.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Controls.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.FormulaBuilder.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TIBCO.Rendezvous.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TIBCO.Rendezvous.netmodule + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Shared.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Shared.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: IBatisNet.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: IBatisNet.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabbedMdi.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPrintPreviewDialog.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGauge.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGauge.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Castle.DynamicProxy.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Castle.DynamicProxy.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraSparkline.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Office.Interop.Excel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Office.Interop.Excel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinInkProvider.Ink17.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: RDotNet.NativeLibrary.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: RDotNet.NativeLibrary.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTabControl.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTabControl.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Controls.Search.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Controls.Search.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Analyzer.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinFormattedText.WordWriter.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Option.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Option.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinRadialMenu.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.WorkFlow.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.WorkFlow.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinToolbars.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinToolbars.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.IO.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.IO.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraChart.v17.2.Design.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraChart.v17.2.Design.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.DataVisualization.UltraDataChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Excel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Excel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinCarousel.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinCarousel.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Quartz.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Quartz.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinStatusBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinStatusBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Newtonsoft.Json.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Newtonsoft.Json.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Math.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Math.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinPivotGrid.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGanttView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGanttView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Vbe.Interop.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Vbe.Interop.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.ViewModel.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.ViewModel.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinListView.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinListView.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.SPC.View.Setting.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinTree.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinTree.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinDataSource.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinDataSource.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Mdx.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Mdx.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinSchedule.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinSchedule.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.Core.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.Core.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Chart.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Chart.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: NPOI.OpenXmlFormats.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: NPOI.OpenXmlFormats.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Cell.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.EDA.View.Array.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.EDA.View.Array.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Xmla.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Xmla.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Renci.SshNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Renci.SshNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: office.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: office.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: TeeChart.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: TeeChart.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Undo.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Undo.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.View.Common.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.View.Common.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinMaskedEdit.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.SPC.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.SPC.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: stdole.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: stdole.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Entity.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Entity.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Service.Extract.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Service.Extract.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Microsoft.Ink.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Microsoft.Ink.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinExplorerBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.CSharp.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.UI.Core.R.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.UI.Core.R.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinGrid.ExcelExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataSource.Flat.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataSource.Flat.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: AIM.AimBrain.HKC.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: AIM.AimBrain.HKC.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.TextDocument.VisualBasic.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinChart.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinChart.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: InfragisticsWPF4.Controls.Layouts.XamTileManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.UltraWinOfficeNavBar.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Win.AppStylistSupport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Win.AppStylistSupport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Olap.DataProvider.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Olap.DataProvider.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: Infragistics4.Documents.Reports.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Installed - HRESULT: 0x0 - 文件: Infragistics4.Documents.Reports.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Installed - HRESULT: 0x0 - 清单: HKC.Main.exe.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x80070020 - 文件: HKC.Main.exe + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinGrid.DocumentExport.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Documents.Word.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Documents.Word.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: RDotNet.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: RDotNet.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.UltraWinCalcManager.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.UltraWinCalcManager.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.UI.Service.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.UI.Service.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.View.Admin.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.View.Admin.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OOXML.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OOXML.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Olap.DataProvider.Adomd.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.View.CF.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.View.CF.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: AIM.AimBrain.HKC.UI.EDA.ValueObject.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: NPOI.OpenXml4Net.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: NPOI.OpenXml4Net.dll + System.Deployment.Internal.Isolation.StoreOperationStageComponent - 状态: Failed - HRESULT: 0x1 - 清单: Infragistics4.Win.SupportDialogs.v17.2.dll.genman + System.Deployment.Internal.Isolation.StoreOperationStageComponentFile - 状态: Failed - HRESULT: 0x1 - 文件: Infragistics4.Win.SupportDialogs.v17.2.dll + System.Deployment.Internal.Isolation.StoreOperationInstallDeployment - 状态: Failed - HRESULT: 0x1 - AppId: http://10.8.151.96/PRD/YMS/HKC.Main.application#HKC.Main.application, Version=1.0.0.119, Culture=en, PublicKeyToken=0000000000000000, processorArchitecture=x86 + System.Deployment.Internal.Isolation.StoreOperationSetDeploymentMetadata - 状态: Failed - HRESULT: 0x1 + System.Deployment.Internal.Isolation.StoreTransactionOperationType (27) - HRESULT: 0x1
最新发布
11-10
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值