Windows Powershell属性:描述对象是什么

属性可以描述一个对象,对象的属性可以被Powershell自动转换成文本,并且输出到控制台。因此可以通过这种方法查看任何对象,例如$host:

代码如下:

PS C:Powershell> $host

Name              : ConsoleHost

Version           : 2.0

InstanceId            : 7fefa1fa-fb2e-47c7-a867-c13b123da5c2

UI                : System.Management.Automation.Internal.Host.InternalHostUserInterface

CurrentCulture    : zh-CN

CurrentUICulture  : zh-CN

PrivateData       : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy

IsRunspacePushed  : False

Runspace          : System.Management.Automation.Runspaces.LocalRunspace

InternalHost对象存储在$host变量中,包含9个属性。输出的第一列为对象的属性,第二列为文本形式的属性值。例如要查看当前Powershell的版本号,可以访问$host对象的Version属性:

代码如下:

PS C:Powershell> $host.Version

Major  Minor  Build  Revision

-----  -----  -----  --------

2      0      -1     -1

由此可知,Version并不是以一串单独的数字存储的,它本身也是一个对象,包含 Major,Minor,Build,Revision四个属性,可以查看Version的具体类型,也可以访问它的每一个属性:

代码如下:

PS C:Powershell> $Host.Version.GetType().FullName

System.Version

PS C:Powershell> $Host.Version.Build

-1

PS C:Powershell> $Host.Version.Major

2

PS C:Powershell> $Host.Version.MajorRevision

-1

PS C:Powershell> $Host.Version.Revision

-1

查看一个对象的类型很实用,因为可以通过这个类型构造新的对象或者进行类型转换等等。

代码如下:

PS C:Powershell> [System.Version]'2012.12.20.4444'

Major  Minor  Build  Revision

-----  -----  -----  --------

2012   12     20     4444

例如CurrentCulture属性,可以通过$host的CurrentCulture访问当前系统的本地化信息和该信息的类型:

代码如下:

PS C:Powershell> $Host.CurrentCulture

LCID             Name             DisplayName

----             ----             -----------

2052             zh-CN            中文(中华人民共和国)


PS C:Powershell> $Host.CurrentCulture.GetType().FullName

System.Globalization.CultureInfo

CurrentCulture包含3个属性,LCID, Name, and DisplayName。通过MSDN查看System.Globalization.CultureInfo的构造函数可知,可以将国家代码和国家名称标志字符串转换成一个新的CultureInfo对象。

代码如下:

PS C:Powershell> [System.Globalization.CultureInfo]'zh-cn'

LCID             Name             DisplayName

----             ----             -----------

2052             zh-CN            中文(中华人民共和国)


PS C:Powershell> [System.Globalization.CultureInfo]'zh-tw'


LCID             Name             DisplayName

----             ----             -----------

1028             zh-TW            中文(台湾)


PS C:Powershell> [System.Globalization.CultureInfo]'en-us'


LCID             Name             DisplayName

----             ----             -----------

1033             en-US            英语(美国)


PS C:Powershell> [System.Globalization.CultureInfo] 55


LCID             Name             DisplayName

----             ----             -----------

55               ka               格鲁吉亚语


PS C:Powershell> [System.Globalization.CultureInfo] 1


LCID             Name             DisplayName

----             ----             -----------

1                ar               阿拉伯语


PS C:Powershell> [System.Globalization.CultureInfo] 33


LCID             Name             DisplayName

----             ----             -----------

33               id               印度尼西亚语

属性中包含对象

一个对象的属性用来存储数据,反过来这些数据又可以存储其它对象。$host有两个比较特别的属性UI和PrivateData。把$host对象输出到控制台上后,除了UI和PrivateData所有的属性都会被转换成确定的文本:

代码如下:

PS C:Powershell> $Host

Name  : ConsoleHost

Version          : 2.0

InstanceId        : 7fefa1fa-fb2e-47c7-a867-c13b123da5c2

UI                : System.Management.Automation.Internal.Host.InternalHostUserInterface

CurrentCulture    : zh-CN

CurrentUICulture  : zh-CN

PrivateData       : Microsoft.PowerShell.ConsoleHost+ConsoleColorProxy

IsRunspacePushed  : False

Runspace          : System.Management.Automation.Runspaces.LocalRunspace

原因是这两个属性中又包含了一个对象:

代码如下:

PS C:Powershell> $Host.UI

RawUI

-----

System.Management.Automation.Internal.Host.InternalHostRawUserInterface


PS C:Powershell> $Host.UI.RawUI


ForegroundColor : DarkYellow

BackgroundColor : DarkMagenta

CursorPosition : 0,23

WindowPosition : 0,0

CursorSize : 25

BufferSize  : 100,200

WindowSize  : 100,61

MaxWindowSize   : 100,62

MaxPhysicalWindowSize : 160,62

KeyAvailable       : False

WindowTitle       : Windows PowerShell

“RawUI” 为 “Raw User Interface” 提供了配置Powershell控制台用户界面的接口。上面的属性可以读取,但是个别却不能更改。

只读属性和读写属性

属性可以准确的描述对象,一旦属性更改了。这一更改也会体现在对象上。如果不能更改,属性就是“只读”属性。
通过简单地修改控制台的背景和前景的颜色,可以发现属性更改可以直接反映到对象上。

代码如下:

PS C:Powershell> $host.ui.rawui.BackgroundColor = "Green"

PS C:Powershell> $host.ui.rawui.ForegroundColor = "White"

PS C:Powershell> cls

有的属性不能更改,如果尝试修改,就会抛出异常。

代码如下:

PS C:Powershell> $Host.UI.RawUI.KeyAvailable

False

PS C:Powershell> $Host.UI.RawUI.KeyAvailable=$false

“KeyAvailable”为 ReadOnly 属性。


所在位置 行:1 字符: 16

+ $Host.UI.RawUI. <<<< KeyAvailable=$false

    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException

    + FullyQualifiedErrorId : PropertyAssignmentException

控制台是否接收到了一个按键请求,应当取决于用户的操作,因此该属性拒绝被更改,你只能读取它。

RawUI的属性

ForegroundColor:前景色
BackgroundColor:背景色
CursorPosition:光标的位置
WindowPosition:窗口的位置
CursorSize:光标的大小
BufferSize:缓冲区的大小
WindowSize:窗口的大小
MaxWindowSize:允许窗口的最大值
MaxPhysicalWindowSize:窗口可能的最大值
KeyAvailable:是否存在按键
WindowTitle:窗口的标题

属性的类型

有些属性只接受整数值,例如控制台光标的大小,值域在0-100,用来控制关闭大小的百分比。可以将光标设置为75%,但是不能超过100%,否则就会产生错误。

代码如下:

PS C:Powershell> $Host.UI.RawUI.CursorSize=75

PS C:Powershell> $Host.UI.RawUI.CursorSize=101

设置“CursorSize”时发生异常:“无法处理 CursorSize,因为指定的光标大小无效。
参数名: value
实际值是 101。”
所在位置 行:1 字符: 16

代码如下:

+ $Host.UI.RawUI. <<<< CursorSize=101

    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException

    + FullyQualifiedErrorId : PropertyAssignmentException

另一个属性ForegoundColor的类型为Color枚举值。因此给ForegoundColor所赋的值必须是已经在System.ConsoleColor中定义过的。可以将“Black”但是不能使用“Pink”

代码如下:

PS C:Powershell> $Host.UI.RawUI.ForegroundColor="Black"

PS C:Powershell> $Host.UI.RawUI.ForegroundColor="Pink"

设置“ForegroundColor”时发生异常:“由于枚举值无效,无法将值“Pink”转换为类型“System.ConsoleColor

”。请指定以下枚举值之一,然后重试。可能的枚举值为“Black、DarkBlue、DarkGreen、DarkCyan、DarkRed、

DarkMagenta、DarkYellow、Gray、DarkGray、Blue、Green、Cyan、Red、Magenta、Yellow、White”。”

所在位置 行:1 字符: 16

+ $Host.UI.RawUI. <<<< ForegroundColor="Pink"

    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException

    + FullyQualifiedErrorId : PropertyAssignmentException

可以使用[System.Enum]::GetNames 方法查看ConsoleColor定义的所有颜色。

代码如下:

PS C:Powershell> [System.Enum]::GetNames([System.ConsoleColor])

Black

DarkBlue

DarkGreen

DarkCyan

DarkRed

DarkMagenta

DarkYellow

Gray

DarkGray

Blue

Green

Cyan

Red

Magenta

Yellow

White

有时一个属性期望的赋值必须是一个指定类型的对象。例如WindowSize,如果想改变Powershell的窗口大小,可是设置WindowSize属性,但是它是一个System.Management.Automation.Host.Size对象,怎样获取这个对象呢?
1.先读取属性,保存为临时变量,更改临时变量,将临时变量赋给WindowSize
2.直接创建一个System.Management.Automation.Host.Size,赋给WindowSize

代码如下:

PS C:Powershell> $tmp=$Host.UI.RawUI.WindowSize

PS C:Powershell> $tmp

Width Height

----- ------

  100     60


PS C:Powershell> $tmp.Height=30

PS C:Powershell> $tmp.Width=60

PS C:Powershell> $Host.UI.RawUI.WindowSize=$tmp

Width Height

----- ------

  60     30


PS C:Powershell> $Host.UI.RawUI.WindowSize=New-Object System.Management.Automation.Host.Size(60,40)

PS C:Powershell> $Host.UI.RawUI.WindowSize


Width Height

----- ------

   60     40

查看所有属性

因为属性和方法都是对象的成员,可以使用Get-Member可以返回它们的成员的详细信息,如果只显示属性可以使用参数 memberType 为“Property”

代码如下:

PS C:Powershell> $host | Get-Member -memberType property

   TypeName: System.Management.Automation.Internal.Host.InternalHost


Name             MemberType Definition

----             ---------- ----------

CurrentCulture    Property   System.Globalization.CultureInfo CurrentCulture {get;}

CurrentUICulture  Property   System.Globalization.CultureInfo CurrentUICulture {get;}

InstanceId        Property   System.Guid InstanceId {get;}

IsRunspacePushed  Property   System.Boolean IsRunspacePushed {get;}

Name              Property   System.String Name {get;}

PrivateData       Property   System.Management.Automation.PSObject PrivateData {get;}

Runspace          Property   System.Management.Automation.Runspaces.Runspace Runspace {get;}

UI                Property   System.Management.Automation.Host.PSHostUserInterface UI {get;}

Version           Property   System.Version Version {get;}

在Name列,可以看到$host支持的所有属性。在Definition列首先列出属性的具体类型,然后列出构造器,如果一个构造器中只有Get方法,没有Set方法,表示该属性为只读属性。

相关推荐