Learning note for Windows Powershell Tips
文章平均质量分 74
gracestoney
这个作者很懒,什么都没留下…
展开
-
Learning note(3) for Windows powershell Tips
Windows PowerShell每周提示(7):格式化数字 1. $a=19385790464 "{0:N0}" -f $a 输出: 19,385,790,464原创 2009-07-18 11:52:00 · 366 阅读 · 0 评论 -
Learning note(1) for Windows PowerShell Tips
Windows PowerShell每周提示(1):字节转换1. 获取磁盘信息,默认情况下,WMI以字节来报告信息Get-WMIObject win32_logicaldisk 2. 显示各个磁盘的剩余空间大小,显示单位分别为GB,MB。注意1GB和1MB的用法。Get-WMIObject win32_logicaldisk | foreach-object {$_原创 2009-07-16 15:02:00 · 389 阅读 · 0 评论 -
Learning note(2) for windows powershell Tips
Windows PowerShell每周提示(4):使用Windows PowerShell “Here-Strings” 1. 当把多行并且包括很多特殊符号的字符串赋给变量时,我们可以用here-string. 2. 可以用来当注释.此时可以不用赋值给变量。 Windows PowerShell每周提示(5):在通配符查寻中使用范围操作符 1原创 2009-07-17 21:44:00 · 443 阅读 · 0 评论 -
Learning note(4) for windows powershell Tips
Windows PowerShell每周提示(10):在我们的数组里有什么? 1. 查找值 $arrColors = "blue", "red", "green", "yellow", "white", "pink", "orange", "turquoise" $arrColors –contains "bla原创 2009-07-20 12:58:00 · 439 阅读 · 0 评论 -
Learning note(6) for windows powershell Tips
Windows PowerShell每周提示(16):有关字符串的事 Windows PowerShell是基于对象的。 1. 比较两个字符串值 $a = "Scripting Guys" $b = "scripting guys" a.大小写敏感原创 2009-08-13 17:28:00 · 351 阅读 · 0 评论 -
Learning note(5) for windows powershell Tips
Windows PowerShell每周提示(14):从数组中移除项目 1. 内建在Windows PowerShell中的数组至少有一个弱点:添加新项目进数组也许很容易,但是没有相对简单的方法从一个数组中移除已存在项目。 2. 可以使用System.Collections.ArrayList a. 添加数原创 2009-08-12 21:22:00 · 439 阅读 · 0 评论 -
Learning note(7) for windows powershell Tips
Windows PowerShell每周提示(18):读取文本文件 1. Get-Content Get-Content C:/Scripts/Test.txt 2. Get-Content读取文本文件并在变量中储存内容时,数据是作为数组储存的,文件内的每一行(由一个回车换行符决定)代表了数组中的每一个项原创 2009-08-18 13:19:00 · 470 阅读 · 0 评论 -
Learning note(8) for windows powershell Tips
Windows PowerShell每周提示(22):使用Get-History进行自动化脚本编写 Id CommandLine -- ----------- 1 cd c:/scripts 2 get-childitem -recurse 3 cls 1.原创 2009-08-24 11:12:00 · 442 阅读 · 0 评论