PowerShell 常用命令
阿新 • • 發佈:2018-09-19
運行 結果 com execution exec 內容 res div 所有
查看 PowerShell 版本
get-host 或 $host.version 或 $PSVersionTable.PSVERSION
命令執行情況
新建目錄
New-Item test -type Directory
命令執行情況
新建文件
New-Item test.txt -type File
命令執行情況
-type 指定創建的是文件還是目錄
刪除目錄或文件
Remove-Item 文件或目錄
命令執行結果
顯示文本內容
get-content 1.txt
命令執行結果
設置文本的內容
set-content 1.txt -value "hello"
命令執行結果
追加文本內容
add-content 1.txt -value "world"
命令執行結果
查看 PowerShell 的執行策略
Get-ExecutionPolicy
命令執行結果
Restricted 為腳本不能運行,是默認設置
Unrestricted 為允許所有的腳本運行
RemoteSigned 為只能運行本地創建的腳本,不能運行從網上下載的腳本,除了有數字簽名證書
Allsigned 為只運行有受信任的發布者簽名的腳本
設置 Powershell 的執行策略
Set-ExecutionPolicy Unrestricted
命令執行結果
PowerShell 常用命令