我正在跑步Get-CimInstance -Namespace root/CIMV2 -ClassName CIM_Component | Out-File -Encoding utf8 .\CIM_Component.txt
并收到
Get-CimInstance : Call cancelled
At line:1 char:2
+ (Get-CimInstance -Namespace root/CIMV2 -ClassName CIM_DirectoryContai ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (:) [Get-CimInstance], CimException
+ FullyQualifiedErrorId : HRESULT 0x80041032,Microsoft.Management.Infrastructure.CimCmdlets.GetCimInstanceCommand
此操作未从键盘中断中取消。只是...超时了? 我真的不知道为什么它取消了。
我希望其他人可能知道发生了通话取消错误。
可能只是信息量太多而已,这使它丢给了管道...但是,这并不是内存不足错误...
我不知道!
答案 0 :(得分:0)
***强文本*** Hummm ...有关潜在的启发作用,请参见下文...
我看到了一个有关CIM_Component类的问题,想知道它是什么 是。所以我尝试了
Get-CimInstance -Namespace root\CIMV2 -ClassName CIM_Component | select -f 1 | fl *
# Results
GroupComponent : Win32_Directory (Name = "<directory path>")
PartComponent : CIM_DataFile (Name = "<file path>”)
PSComputerName :
CimClass : root/CIMV2:CIM_DirectoryContainsFile
CimInstanceProperties : {GroupComponent, PartComponent}
CimSystemProperties : Microsoft.Management.Infrastructure.CimSystemProperties
您将获得系统上每个文件的列表-显示 GroupComponent(父组件)中的文件夹和PartComponent中的文件 (孩子)。
该文档完全准确且完全无用 解释说你有亲子关系,但没有关系 它!
强烈建议您不要使用本课程,因为这样做更容易 获取信息的方式。