PowerShell 常用命令

2022-07-10 20:18:08 字數 2259 閱讀 4975

remove-item

[-path] [-filter ]

[-include ]

[-exclude ]

[-recurse]

[-force]

[-credential ]

[-whatif]

[-confirm]

[-stream ]

使用示例:

remove-item c:\test\*.*

remove-item * -include *.doc -exclude *1*

# 刪除隱藏檔案和唯讀檔案

remove-item -path c:\test\hidden-ro-file.txt -force

# 遞迴刪除子資料夾中的檔案

get-childitem * -include *.csv -recurse | remove-item

# 遞迴刪除登錄檔項

# 刪除帶有特殊字元的檔案

get-childitem | where-object name -like '*`[*' | foreach-object

# 刪除備用資料流

remove-item c:\test\copy-script.ps1 -stream zone.identifier

官方文件

rename-item

[-path] [-newname] [-force]

[-passthru]

[-credential ]

[-whatif]

[-confirm]

使用示例:

rename-item -path "c:\logfiles\daily_file.txt" -newname "monday_file.txt"

# 重新命名和移動檔案

rename-item -path "project.txt" -newname "d:\archive\old-project.txt"

# 重新命名登錄檔項

rename-item -path "hklm:\software\mycompany\advertising" -newname "marketing"

# 重新命名多個檔案

get-childitem *.txt | rename-item -newname

官方文件

get-childitem

[[-path] ]

[[-filter] ]

[-include ]

[-exclude ]

[-recurse]

[-depth ]

[-force]

[-name]

[-attributes ]

[-followsymlink]

[-directory]

[-file]

[-hidden]

[-readonly]

[-system]

使用示例:

get-childitem -path c:\test

get-childitem -path c:\test -name

get-childitem -path c:\test\*.txt -recurse -force

get-childitem -path c:\test\* -include *.txt

get-childitem -path c:\test\logs\* -exclude a*

# 從登錄檔配置單元獲取登錄檔項

get-childitem -path hklm:\hardware -exclude d*

# 獲取具有**簽名許可權的所有證書

get-childitem -path cert:\* -recurse -codesigningcert

# 使用深度引數獲取專案

get-childitem -path c:\parent -depth 2

# 獲取硬鏈結資訊

get-childitem -path c:\pathcontaininghardlink | format-table -view childrenwithhardlink

# 非windows作業系統的輸出

get-childitem /etc/r*

官方文件

官方文件首頁

官方api

Powershell常用命令

powershell常用命令 1.get command 得到powshell所有命令 2.get process 獲取所有程序 3.set alias 給指定命令重新命名 如 set alias aaa get command 4.set executionpolicy remotesigned ...

docker常用命令 Docker 常用命令筆錄

格式docker run 選項 映象 命令 引數.示例docker run it rm ubuntu 16.04 bash 示例解釋 it 這是兩個引數,乙個是 i,表示互動式操作,乙個是 t表示終端 rm 這個引數是說容器退出後隨之將其刪除 ubuntu 16.04 這是指用ubuntu 16.0...

常用命令 Git 常用命令大全

安裝教程可參照 廖雪峰老師的安裝教程。git config 在git中,使用git config 命令來配置 git 的配置檔案,git配置級別主要有3類 1 倉庫級別 local 本地 git 倉庫級別配置檔案,作用於當前倉庫。優先順序最高 2 使用者級別 global,全域性配置檔案,作用於所有...