1. 程式人生 > >windows下的命令列

windows下的命令列

Windows PowerShell

這個東東是微軟搞出來的,個人覺得又是防linux之閒呀
下面列出它的一些功能,都是摘抄的,有機會試一試
Windows PowerShell 1.0已經發布,微軟windowsvistablog上,開發人員列舉了Windows Vista中Windows PowerShell所提供的12項酷酷的功能:

  解答PowerShell:PowerShell原來的開發代號是Monad,原計劃是用以替代Windows中的命令列工具,但是後來微軟說它只是技術上的擴充。使用PowerShell,管理員可以做任何在圖形介面下所做的事情。Windows PowerShell 1.0可以執行在Windows XP SP2、Windows Server 2003和Windows Vista上。

  1. 內建Cmdlets (即"commandlets")

  Windows PowerShell中的所有Cmdlets都允許這樣的動名詞:get-service, get-process, stop-service, get-wmiobject.

  2. 強大的萬用字元和操作物件

  要得到以w開頭的服務及其依賴服務只要輸入:

  PS> get-service w* | format-list DisplayName, DependentServices

  3. 在犯錯誤前測試命令

  Windows PowerShell 有意向獨特的功能:Whatif ,可以不執行命令就告訴你命令執行結果.如:

  PS> stop-service w3* -whatif

  4. 獲取副本

  PowerShell 可以開始和結束所有命令的副本,可以在指令碼中輕易測試命令並同時儲存.

  PS> Start-Transcript -Path c:demodfoshow.txt
  PS> Stop-Transcript

  5. 從命令列釋出Windows對話

  因為Windows PowerShell位物件而優化,可以向.NET Framework一樣從命令列訪問COM物件,下列命令告訴你的Vista機器發表"Windows Vista and PowerShell"字串.

  PS> $spVoice = new-object -com "SAPI.spvoice"
  PS> $spVoice.Speak("Windows Vista and PowerShell")

  6. 使用Windows PowerShell訪問諸如Windows Media Player 11等的應用程式

  PS> $band = "The Posies"
  PS> $player = New-object -com wmplayer.ocx
  PS> $playlist = $player.mediacollection.getbyauthor($band)
  PS> $player.openPlayer($playlist.item(0).sourceurl)
  7. Windows PowerShell作為命令列儲存計算器

  PowerShell可以完成基本的計算工作

  PS> 2*2

  不過,Windows PowerShell也可以快速解決儲存問題,例如,備份11GB的資料需要多少個700MB的CD.

  PS> 11gb/700mb

  那麼,需要多少個1000GB的儲存來備份每個320GB,共425個的Vista桌面呢?

  PS > (320gb*425)/1000GB

  8. PowerShell 用作日曆計算

  計算多少天到新年:

  PS> ([DateTime]"1/1/2007" -[datetime]::now).days

  9. 返回機器上某種型別檔案的數量

  Windows Vista有許多型別的事件記錄和組策略檔案等.下列命令是返回當前目錄及其子目錄中VBScript, Bat 和 PowerShell 指令碼的數量:

  PS> dir -include *.vbs, *.ps1, *.bat -recurse | group-object extension -noelement

  10. 從命令列收集Windows System Assessment Tool資料

  PS> get-wmiobject win32_winsat | format-table __SERVER, *SCORE -autosize
  PS> get-wmiobject win32_winsat | select *score | out-chart -Title "System Assessment Scores by PowerGadgets"

  11. 配置UAC(User Account Control)

  PS> set-itemproperty -path HKLM:SOFTWAREMICROSOFTWINDOWSCurrentVersionPoliciesSystem -name ConsentPromptBehaviorAdmin -value 0

  12. 管理BitLocker

  PS > $drives = get-wmiobject -namespace rootCIMv2SecurityMicrosoftVolumeEncryption -class Win32_EncryptableVolume
  PS> $drives | format-table DriveLetter, PersistentVolumeID -autosize
  PS> $BitLockDrive = $drives[0]
  PS> $BitLockDrive.GetProtectionStatus()
  PS> $BitLockDrive.DisableKeyProtectors()
  PS> $BitLockDrive.EnableKeyProtectors()