0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Powershell get-wmiobject 実行時の結果取得に関して

Posted at

みなさん、こんにちは。
Powershell初心者です。

Powershell version 5.1 (x86 ISE)on Win7 を使っています。

2つ疑問があります。
1.下記コマンドを実行したときに、Nameという(property名?)がついてきてしまいます。 
MYPCJP-123345 だけを結果としてとりたい場合にはどうしたらいいでしょうか。 結果を変数に入れたいと思っています。

Get-WmiObject -query "select * from win32_computersystem" | select name

name

MYPCJP-123345

2.Get-WmiObject -query "select name from win32_computersystem"

上記で name だけを選択しているはずなのに、結果に他のものも付いてくる理由

__GENUS : 2
__CLASS : Win32_ComputerSystem
__SUPERCLASS :
__DYNASTY :
__RELPATH : Win32_ComputerSystem.Name="MYPCJP-123345"
__PROPERTY_COUNT : 1
__DERIVATION : {}
__SERVER :
__NAMESPACE :
__PATH :
Name : MYPCJP-123345
PSComputerName :

Googleで検索してみたのですがうまく答えを探せ出せませんでした。

Powershellにお詳しい方、アドバイス頂けると幸いです。
その他必要な情報があればおしらせください。

どうぞよろしくお願い致します。

0
0
5

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?