Power Shell 常用命令

ectotherm發表於2021-09-22

記錄操作並輸出到某個位置

Start-Transcript [ 地址(F:\location1\location2\log.txt) ]


結束記錄操作

Stop-Transcript


檢視powershell程式的操作記錄(關掉程式會自動清除記錄)

Get-History


檢視powershell程式的詳細操作記錄(關掉程式會自動清除記錄)

Get-History | Format-List -Property *


 

相關文章