1 属性可以描述一个对象,对象的属性可以被Powershell自动转换成文本,并且输 […] Powershell属性:描述对象是什么2011年12月31日 在 Powershell 标签 Powershell教程 / 对象 / 属性 / 控制台 / 本地化 来自 Mooser Lee
在现实世界中,你可能已经了解对象就是那些能够摸到的东西。Powershell中的 […] Powershell对象=属性+方法2011年12月31日 在 Powershell 标签 Powershell教程 / 动作 / 对象 / 属性 / 数据 / 方法 来自 Mooser Lee
3 Powershell一个最吸引人的功能是它能够将任何对象转换成文本,我们已经使用 […] Powershell扩展类型系统2011年12月23日 在 Powershell 标签 Powershell教程 / WMI / 增强 / 格式化 / 管道 / 类型 来自 Mooser Lee
6 可以将管道的结果转换成文本输出,默认是Out-Default。可以通过Get-C […] Powershell导出管道结果2011年12月23日 在 Powershell 标签 Powershell教程 / 导出 / 管道 来自 Mooser Lee
4 使用Measure-Object和Compare-Object可以统计和对比管道 […] Powershell分析和比较管道结果2011年12月23日 在 Powershell 标签 Powershell教程 / 导出 / 管道 来自 Mooser Lee
2 通过管道可以过滤某些对象和对象的属性,这个功能很实用,因为很多时候我们并不是对所 […] Powershell过滤管道结果2011年12月20日 在 Powershell 标签 Powershell教程 / 管道 / 过滤 来自 Mooser Lee
使用Sort-Object和Group-Object可以对管道结果进行分组。 其 […] Powershell排序和分组管道结果2011年12月20日 在 Powershell 标签 Powershell教程 / 关键字 / 分组 / 排序 / 管道 来自 Mooser Lee
2 怎样将Powershell的对象结果转换成文本并显示在控制台上。Powershe […] Powershell对象转换成文本2011年12月20日 在 Powershell 标签 Powershell教程 / 对象 / 属性 / 文本 来自 Mooser Lee
3 管道并不是什么新事物,以前的Cmd控制台也有重定向的命令,例如Dir | More可以将结果分屏显示。 传统的Cmd管道是基于文本的,但是Powershell是基于对象。面向对象的管道,转换命令执行的结果为文本,管道的处理模式,管道命令的阻塞 Powershell使用管道2011年12月14日 在 Powershell 标签 管道 来自 Mooser Lee
4 数组属于引用类型,使用默认的的赋值运算符在两个变量之间赋值只是复制了一个引用,两 […] Powershell复制数组2011年12月14日 在 Powershell 标签 Powershell教程 / 变量 / 引用 / 数组 来自 Mooser Lee
2 哈希表存放的是对,在哈希表中不再仅仅限制使用数字寻址,可以使用任意类型的数据类型 […] Powershell使用哈希表2011年12月14日 在 Powershell 标签 Powershell教程 / 变量 / 哈希表 / 数组 / 格式化 来自 Mooser Lee
3 数组的元素可以使用索引寻址,第一个元素的索引为0,第i个元素的索引为i-1,最后 […] Powershell访问数组2011年12月14日 在 Powershell 标签 Powershell教程 / 变量 / 寻址 / 数组 / 索引 / 访问 来自 Mooser Lee