Powershell 처음 사용시 3가지 설정하기

update-help
- 도움말 파일 업데이트
- 빨간 글씨로 출력된 내용은 파워쉘이 영어만 지원하고 한글지원을 안헤서 한글관련 도움말은 업데이트 할 수 없다고 뜨는 것이니 업데이트 실패가 아니다.


cls
- 화면 클리어

Set-ExecutionPolicy RemoteSigned
- 파워쉘 스크립트 활성화
- Get-ExecutionPolicy 명령어를 입력하면 Unrestricted 가 출력
- Set-ExecutionPolicy RemoteSigned 명령어 입력
- 다시 Get-ExecutionPolicy 명령어를 입력하면 RemoteSigned 출력



Enable-PSRemoting
- 원격명령어 실행 활성화






'클라우드 > PoweShell' 카테고리의 다른 글

조건문, 반복문, 파라미터  (0) 2023.03.20
변수, 비교연산자  (0) 2023.03.20
PowerShell Script  (0) 2023.03.20
File & Folder  (0) 2023.03.17
PowerShell 명령어  (0) 2023.03.17

+ Recent posts