powershell commands祥解
文章平均质量分 62
TADICAN
VC板块真难混
展开
-
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 · 2177 阅读 · 0 评论 -
Powershell commands 之Function A:
A:作用 相当于set-location a: , 将当前目录切换到A盘符当前目录下面(软驱) 同理有B:,C:,D:,......Y:,Z:参数: 无例子 :A: #切换到软驱cd d:/powershell #切换到目录d:/powershellC: #切换到C盘当前目录下,原创 2009-01-19 19:43:00 · 1153 阅读 · 0 评论 -
Powershell commands 之 Add-Computer
Add-Computer作用: 添加计算机到域(Domain)或者组(Group)语法: Add-Computer [-Credential ] [-OUPath ] [-Passthru] [-Reboot ] [-Server ] [-Un secure ] [[-ComputerName] ] [-DomainName] [-confirm] [-whatif]原创 2009-01-20 20:33:00 · 3012 阅读 · 0 评论 -
Powershell commands 之 Add-History
Add-History作用: 添加条目到当前会话历史记录中去。语法: Add-History [[-inputObject] ] [-passthru] []例子 1: get-history -id 6 -count 5 | add-history管道符左边的作用是取得当前会话中第2-6条记录,-id 6表示到第6条截止,-count 5表示从第6条记录开始原创 2009-01-20 20:45:00 · 1101 阅读 · 0 评论 -
Powershell commandlet 之add-member
Command 名称 add-member描述 添加一个用户自定义成员(变量,函数)给powershell 实例对象(PS Object Instance).可以添加的类型为:AliasProperty, CodeProperty, NoteProperty, ScriptProperty, PropertySet, CodeMethod, MemberSet和ScriptMe原创 2009-02-01 16:57:00 · 2594 阅读 · 0 评论 -
Powershell commands 祥解之 Add-PSSnapin
Add-PSSnapin, alias 为 asnp这个没有什么难理解的地方。Java里面有import来导入类库,同样C++里面有using 来导入库。在powershell 里面有add-pssnapin来导入内置之外的commandlets。比如你自己写了一个commandlet用来计算及验证MD5摘要,怎么在console下用你自己写的commandlet呢(现在还没有内置的算MD5的co原创 2009-02-02 15:57:00 · 5288 阅读 · 0 评论 -
Powershell commands 祥解之 Add-Type
Add-Type,巨强悍的一个东西用途 添加一个新的.NET类型到当前会话中去。支持C#,vb,javascript,dll...例子1,通过代码添加新类型 C:/PS>$source = @" public class BasicTest { public static int Add(int a, int b) {原创 2009-02-02 16:32:00 · 6149 阅读 · 0 评论