http://www.techworld.com/opsys/news/index.cfm?NewsID=7907&email


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

http://support.microsoft.com/?kbid=928439


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

  • -f 與.NET中的System.String中的Format方法相同
    PS C:\> [string]::Format('{2},{1},{0}',1,2,3)
    3,2,1
    PS C:\> '{2},{1},{0}' -f 1,2,3

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

February 12 - 23, 2007

http://www.microsoft.com/technet/scriptcenter/funzone/games/default.mspx

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

Scripting Games 2007 Training
An Array of Choices

介紹VBScript以及PowerShell中Array的使用方法


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

PS C:\> $PingObj = New-Object System.Net.NetworkInformation.Ping
PS C:\> $result = $PingObj.Send("127.0.0.1")
PS C:\> $result.Status
結果:

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

PS C:\> (ping  127.0.0.1 | out-string) -match "100% loss"
結果:
False 表示成功
True 表示失敗

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

PS C:\> $result = get-wmiobject -query "select * from win32_pingstatus where address='127.0.0.1'"
PS C:\> $result.StatusCode
結果:
0 表示成功

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

真的很有意思~~
http://myitforum.com/cs2/blogs/dhite/archive/2007/01/31/life-before-the-computer-age.aspx

  • A backup happened to your commode!
  • A CD was a bank account
  • A cursor used profanity
  • A keyboard was on a piano!
  • A mouse pad was where a mouse lived
  • A program was a TV show
  • A virus was the flu!
  • A web was a spider's home
  • An application was for employment
  • Compress was something you did to garbage not something you did to a file
  • Cut is what you did with a pocket knife
  • Hard drive was a long trip on the road
  • If you unzipped anything in public you'd be in jail for awhile!
  • Log on was adding wood to a fire
  • Memory was something that you lost with age
  • Paste is what you did with glue

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

可查詢藥品的相關資訊!
http://drug.doh.gov.tw/medication_bag.php?PHPSESSID=n1a1qmeach1su81siht7baqa01&Pact=medication_bag&sn=start


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