以下是 Windows PowerShell: TFM 的其中一位作者的webcast計畫


ayowu 發表在 痞客邦 留言(0) 人氣()


Tech Analysis: Microsoft's PowerShell 1.0 is a powerful new Windows interface
http://www.eweek.com/article2/0,1759,2087030,00.asp
eWEEK似乎相當喜歡PowerShell的功能:)


ayowu 發表在 痞客邦 留言(0) 人氣()

  • Jan 28 Sun 2007 00:13
  • RTFM

http://weblog.infoworld.com/dbunderground/archives/2007/01/rtfm.html
本文作者提醒DBA們要開始學PowerShell啦:)


ayowu 發表在 痞客邦 留言(0) 人氣()




使用方法:

ayowu 發表在 痞客邦 留言(0) 人氣()


首先看以下三個例子
例一:
PS D:\> @(get-process | out-string).Count
1

ayowu 發表在 痞客邦 留言(0) 人氣()

  • Jan 27 Sat 2007 22:34
  • cURL

使用命令列下載網頁的工具
以自動化使用瀏覽器手動另存新檔
http://en.wikipedia.org/wiki/CURL


ayowu 發表在 痞客邦 留言(0) 人氣()



http://www.nsoftware.com/powershell/
http://www.nsoftware.com/powershell/tutorials.aspx

試用版下載

ayowu 發表在 痞客邦 留言(0) 人氣()

What Can I Do With Windows PowerShell?
A Task-Based Guide to Windows PowerShell Cmdlets


ayowu 發表在 痞客邦 留言(0) 人氣()

  • 目前有哪些函數 
    • PS C:\> cd function:
    • PS Function:\> ls
  • 檢視函數內容
    • 方法一
      • PS Function:\> get-content  函數名稱
    • 方法二
      • PS C:\> $Function:函數名稱
    • 方法三
      • PS C:\> (dir function:函數名稱).ScriptBlock
  • 修改函數內容
    • PS C:\> $Function:函數名稱={新的內容}
  • 檢查某函數是否已經定義
    • PS C:\> test-path Function:\函數名稱
  • 新增函數
    • 方法一
      • PS C:\> new-item -path function: -name 函數名稱 -value {內容}
    • 方法二
      • PS C:\> function 函數名稱 {內容}

    ayowu 發表在 痞客邦 留言(0) 人氣()

    http://zonble.twbbs.org/etc/bw.php


    ayowu 發表在 痞客邦 留言(0) 人氣()