본문 바로가기
기타

PowerShell 스크립트 실행 - ExecutionPolicy

by 햄과함께 2018. 11. 24.
320x100

PowerShell에서 스크립트 실행을 하면 UnauthorizedAccess. 즉, 권한이 없다고 나온다.



powershell을 관리자 권한으로 실행한다.


> Get-ExecutionPolicy
cs

위 명령어로 현재 정책을 확인할 수 있다.

수정한게 없다면 아마 Restricted로 나올것이다.


> Set-ExecutionPolicy [정책]
cs

위 명령어로 실행 정책을 설정할 수 있다.

정책 종류는 Restricted, AllSigned, RemoteSigned, Unrestricted, Bypass, Undefined가 있다.


> Set-ExecutionPolicy Bypass
cs

이 중에서 스크립트 실행을 전혀 막지 않는 Bypass로 설정해준다.




정책 변경 후 스크립트 재 실행시 무사히 실행된다.


참고 : https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-6



320x100

'기타' 카테고리의 다른 글

[Nginx] 서버 라우팅  (0) 2018.11.27
hosts 파일 도메인 설정.  (0) 2018.11.27
robots.txt Nginx로 설정하기  (0) 2018.11.09
ubuntu gradle 버전 못찾을 때.  (0) 2018.11.09
aws ubuntu 서버에 jenkins 설치하기  (0) 2018.11.06

댓글