본문 바로가기
IT/System Engineering

[PowerShell] 프로필 확인 및 설정

by Jany 2020. 8. 13.
반응형

윈도우10 이후 파워쉘의 사용이 점점 많아지고 있다.

 

리눅스의 쉘 처럼 사용하고자 profile 설정이 필요할 때 다음을 참고하자.

 

1. 프로필 파일 경로 확인

$profile

 

2. 프로필 파일 생성 확인

test-path $profile

있으면 True, 없으면 False

3. 프로필 파일 생성

new-item -path $profile -itemtype file -force

생성하고 test-path를 실행해보자.

4. 프로필 파일 수정하기

notepad $profile

메모장(notepad)로 열기

 

5. alias 설정

Set-alias [단축어] [실행파일]

Set-alias np notepad.exe
반응형

댓글