본문 바로가기
컴퓨터 & IT (Computer & IT)/Windows and Powershell

[Windows/PowerShell] 파워쉘 명령어 정리

by UltraLowTemp-Physics 2021. 1. 24.
728x90

1. Alias 설정

https://learn.microsoft.com/ko-kr/powershell/module/microsoft.powershell.utility/set-alias?view=powershell-7.41) 

2) 영구적으로 설정을 유지하고자 할 경우 
   (a) Powershell 설정 파일을 연다. 
      • 일반적으로 Powershell의 설정파일은 `C:/Users/사용자명/Document/WindowsPowerShell`에 있음 
      • 또는 이미 설정파일이 생성된 경우, `vim $profile`를 통해서 이동가능 (vim은 Powershell 내에서 내가 사용하는 텍스트 편집기) 
   (b) Powershell 설정 파일에서  

 

- 명령어

Rename-Item "old_name_file" "new_name_file"

old_name_file을 new_name_file로 이름을 변경함.

Ex) Rename-Item D:\temp\Test\Test.txt test1.txt
 - "D:\temp\Test\Test.txt"의 이름을 "test1.txt"로 변경

 

Reference:
[1] https://www.tutorialspoint.com/powershell/powershell_files_rename_files.htm
[2] https://ss64.com/ps/rename-item.html
[3] https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/rename-item?view=powershell-7.1 

728x90

댓글