
PowerShell
文章平均质量分 53
TADICAN
VC板块真难混
展开
-
powershell下面commands 自动格式化代码
PS C:/Users/v-anyan> get-command | select-object CommandType, Name | %{">("+ $_.CommandType +")"+$_.Name + "" } > command.txt 效果参见 Powershell V2 下面的Commands列表原创 2009-01-16 21:26:00 · 1679 阅读 · 0 评论 -
Powershell V2 下面的Commands列表
<!--function toggle(id){ //alert("Hello Script!"); if(document.getElementById(id).style.display == "none") { document.getElementById(id).style.display = "block"; }else{原创 2009-01-16 19:48:00 · 2202 阅读 · 0 评论 -
Powershell commands详解之Function "add-content/ac"
add-content, alias 为ac帮助: 可以通过get-help add-content, help ac, 或者help ac -full来得到帮助。用法: add-content , path 为你需要写入内容的目的文件,如"c:/new.txt", content 为你要写入的内容。用途: 向指定文件写入内容。例子 1: add-cont原创 2009-01-18 21:54:00 · 3108 阅读 · 0 评论 -
Powershell 下计算MD5 之二[转]
转载自http://blogs.msdn.com/powershell/archive/2006/04/25/583225.aspx function Get-MD5([System.IO.FileInfo] $file = $(throw Usage: Get-MD5 [System.IO.FileInfo])){ $stream = $null; $cryptoSe转载 2009-02-02 13:29:00 · 2230 阅读 · 0 评论 -
Powershell 下计算SHA1 以及MD5 摘要[转]
转载自http://powershellcommunity.org/Forums/tabid/54/aff/1/aft/1234/afv/topic/Default.aspx### //// ////# // - - //# @ @# ---oOOo-( )-oOOo---## PowerShell Script: CheckSum.ps1# Author转载 2009-02-02 13:23:00 · 2243 阅读 · 0 评论 -
用PowerShell删除所有指定类型的文件
ls $folder -r | % { if($_.name -match "pch$" -and $_.mode -notmatch "d"){ del $_.FullName}} 作用:删除当前目录下面所有后缀为pch的文件,文件夹保留。原创 2009-04-16 14:53:00 · 3971 阅读 · 0 评论 -
PowerShell好文章链接
http://blogs.msdn.com/powershell/archive/2007/04/14/controlling-the-scope-of-variables.aspx, 讲解variable scope的好文章。原创 2009-05-12 10:18:00 · 921 阅读 · 0 评论