首页 > 代码库 > $($_.)作用
$($_.)作用
1 $a=get-process2 foreach ($b in $a)3 {4 write-host "hello: $($b.id)"5 }
返回结果:
hello: 2536
hello: 3528
hello: 2316
hello: 608
hello: 732
hello: 1392
hello: 2456
hello: 2680
hello: 5940
hello: 3540
1 $a=get-process2 foreach ($b in $a)3 {4 write-host "hello: $b.id"5 }
返回结果:
hello: System.Diagnostics.Process (vmware-tray).id
hello: System.Diagnostics.Process (vmware-usbarbitrator64).id
hello: System.Diagnostics.Process (wininit).id
hello: System.Diagnostics.Process (winlogon).id
hello: System.Diagnostics.Process (wlanext).id
hello: System.Diagnostics.Process (WmiPrvSE).id
hello: System.Diagnostics.Process (WmiPrvSE).id
hello: System.Diagnostics.Process (WmiPrvSE).id
hello: System.Diagnostics.Process (wmpnetwk).id
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。