(*).<String>

(result).title 是该方法的标准格式

(Get-ADUser hexingxing -Properties * | Select-Object Name).Name 候补参考属性

(Get-ADUser hexingxing).name 仅可查询 TypeName 常见属性,通过 Get-Member 查询全部。

获取数据并回显

(Get-ADUser hexingxing -Properties *).Name
测试

导入数据并回显

(import-csv .\list.csv).name
liuxi
lihua
yusha

Format-Table

ftFormat-Table 的合法简写或系统别名

核心参数为 -hide,其是 -hidetableheaders 的系统内置合法简写,该方法同时保留了顶部空行。

Get-ADUser hexingxing -Properties * | ft Name -hidetableheaders

测试

Select-Object

selectSelect-Object 的合法简写或系统别名

核心参数为 -ExpandProperty <String>,该方法仅输出实体字符。

Get-ADUser hexingxing -Properties * | select Name -ExpandProperty Name
测试

友情提示:本站所有文章,如无特殊说明或标注,均为何星星原创发布。与此同时,趋于近年来本站的文章内容频繁被他站盗用与机器采集,现已全局禁用网站文字内容操作,了解详情或转载文章请 点此 继续!

0 条评论

发表回复

Avatar placeholder

您的电子邮箱地址不会被公开。 必填项已用*标注