Angelo Lee's Blog
This is my kingdom .If i don't fight for it ,who will ?
摘要: PowerGUI:免费的PowerShell编辑器==========================下载地址:http://www.powergui.org/index.jspaPowerGUI Visual Studio Extension:集成到Visual Studio中的插件==============================================下载地址:http://powerguivsx.codeplex.com/ 阅读全文
posted @ 2011-09-06 14:37 Angelo Lee 阅读(119) 评论(0) 推荐(0) 编辑
摘要: Link:http://www.codeproject.com/KB/powershell/PowerShell.aspx?display=MobileWhat is Windows PowerShell?Windows PowerShell (a.k.a. Monad) is a new CLI (Command Line Interface) provided by Microsoft. PowerShell is based on .NET Framework 2.0, and passes data as .NET objects.What are we going to do?In 阅读全文
posted @ 2011-09-06 13:09 Angelo Lee 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 如果想自定义一个类似于PowerShell的Get-Process的cmdlet,例如Get-Proc,如何自己编写这样一个cmdlet呢?查阅msdn,其基本步骤是:1.确定cmdlet的名字:通常cmdlet都采取verb-noun的方式,确定自定义的cmdlet属于哪个cmdlet verb,并确定一个具体的名词。本例中,Get-Proc属于Verbs.Common.Get,名词则是"Proc";2. 确定cmdlet的类名,通常,以verbnoun+"command"后缀作为类名。本例中,GetProcCommand;3. 实现类:通常,自定义的 阅读全文
posted @ 2011-09-06 12:55 Angelo Lee 阅读(443) 评论(0) 推荐(0) 编辑