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

本文详细阐述了操作系统中缓存读写操作的过程,包括应用程序如何通过I/O管理器与文件系统交互,缓存管理器如何参与数据的读取与写入等关键步骤。

缓存读操作

考虑由一个用户应用程序发起的读操作。这个读操作通过NT I/O管理器被传递到文件系统。图6-3指示,满足读请求(使用缓存管理器提供的拷贝接口)的操作顺序。

下面的列表给出了对于这个图中每个步骤的解释。注意图中的箭头表示了控制流。

1.应用程序执行一个读操作,这个操作导致系统控制传递给内核中的I/O管理器。

2.I/O管理器通过IRP把读请求导向到适当的文件系统驱动。用户缓冲区可能被映射进系统虚拟地址空间,或者I/O管理器分配一个内存描述符(MDL)来表示缓冲区,并锁定与这个MDL有关的页内存,再或者I/O管理器不做修改直接传递缓冲区的虚拟地址空间。第三部分中,你将看到文件系统驱动控制 那些I/O管理器执行的操作。

3.文件系统驱动接受将读操作导向到被缓冲打开的文件的读请求和通知。如果文件缓存尚不存在,文件系统驱动调用缓存管理器来初始化文件缓存。依次,缓存管理器请求虚拟内存管理器为将要被缓存的文件创建文件映射(段对象)。

4.文件系统驱动使用CcCopyRead()缓存管理调用将读请求传递到NT缓存管理器。缓存管理器负责执行所有必要的步骤,将数据转移到用户缓冲区。

5.缓存管理器测试数据结构来决定那里是否有包含用户请求字节范围的映射视图。如果没有存在的映射视图,缓存管理器会创建一个。

6.缓存管理器简单的执行内存拷贝操作,从被映射试图到用户缓冲区。

7.如果文件映射视图不被包含所需数据的物理页支持,一个页错误将发生,然后控制被传递给虚拟内存管理器。

8.虚拟内存管理器分配用来存储被请求数据的物理页,页错误发生,然后通过NT I/O管理器发出一个非缓存IO(noncachedpaging I/O)读操作到文件系统驱动。注意,尽管上图没有指出分页I/O请求经过I/O管理器,但这是很确定的。

9.上面所述收到非缓存读请求时,文件系统驱动创建一个对应的I/O请求来从二级存储设备获取数据,并发送这个I/O请求到底层驱动。

10.文件系统驱动下面的设备驱动从二级存储设备(或者通过网络)获取数据,并完成请求。

11.文件系统驱动完成来自NT虚拟内存管理器测的分页I/O请求。

12.导致页错误的指令重新执行。

13.缓存管理器完成从文件映射视图到用户缓冲区的拷贝操作。这时候,拷贝将完成,除非招致一个页错误,(尽管理论上说,在一个刚刚出想过页错误的页上重复发生一个页错误是可能的,但是实际上这不会发生)。

14.缓存数据被拷贝到用户缓冲区中之后,缓存管理器返回控制给文件系统驱动。注意,这些数据将仅仅在预留给缓存管理器的虚拟地址空间中被缓存下来(无论如何,这些数据可能在任意时刻,被NT缓存管理器从系统内存中丢弃)。

15.文件系统驱动完成I/O管理器发送来的原始IRP。

16.I/O管理器完成原始的用户读请求。



缓存写操作


现在,考虑一个有用户程序发起的写操作。图6-4描述了执行满足写操作的步骤顺序(使用缓存管理器提供的拷贝接口)。如你将要看见的一样,这些操作步骤与前面描述的读操作的步骤很相似。对于每一个步骤的解释被罗列在下面:

1.一个用户应用程序执行写操作,导致控制被转移给内核中的I/O管理器。

2.I/O管理器通过使用一个IRP将这个写操作导向到合适的文件系统驱动。像在读操作中一样,缓冲区可能被映射进系统虚拟地址空间,或者一个MDL被创建,再或者缓冲区的虚拟地址不作任何改变直接传递给文件系统驱动。

3.文件系统驱动注意到写操作是导向到一个以缓存访问方式打开的文件。想读操作例子中描述的那样,如果这个文件的缓存尚没有被初始化,文件系统驱动将调用缓存管理器来初始化这个文件的缓存。虚拟内存管理器位要被缓存的文件创建一个文件映射(段对象)。

4.文件系统驱动通过CcCopyWrite()缓存管理器调用简单的下发写请求到NT缓存管理器,CcCopyWrite()是缓存管理器提供的可用的拷贝接口中的一个。

5.缓存管理器测试数据结构,决定是否存在包含被用户修改字节范围的文件映射视图,如果没有找到已存在的映射视图,缓存管理器会创建一个文件映射视图。

6.缓存管理器执行从(用户缓冲区)到(与文件映射视图相关的虚拟地址范围)的内存拷贝操作。

7.如果虚拟地址范围不被物理内存页支持,一个页错误将发生,而后控制转移到虚拟内存管理器。

8.虚拟内存管理器分配物理内存页,这些页用来存储被请求数据(发生页错误)。图6-4中,假定所有页正在被用户写满。在一个场景中,既不是缓存管理器也不是虚拟内存管理器(在数据修改之前)把已经存在的数据从磁盘读出来。无论如何,如果部分页正在被修改,在页被允许修改之前,页错误将导致虚拟内存管理器发起分页I/O读操作。这个导致页错误的指令被重新执行。

9.缓存管理器完成从用户缓冲区到与文件映射视图相关的虚拟地址范围的拷贝操作。

10.缓存管理器将控制权返回给文件系统驱动。注意,用户数据现在归于系统内存,并且不会立即写回到二级存储介质。真正的到二级存储设备的数据转移,将被缓存管理器延迟执行。

11.缓存管理器完成请求。

12.文件系统驱动完成NT I/O管理器发来的原始IRP。

13.I/O管理器完成早先的用户写请求。


平台版本信息 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
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值