Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- issue
- Python
- DART
- Algorithm
- C++
- django
- 안드로이드
- 분할정복
- 코딩테스트
- 파이썬
- Flutter
- 개발
- android
- codingtest
- 안드로이드스튜디오
- DFS
- 백준
- 동적계획법과최단거리역추적
- Vue
- cos
- 코드품앗이
- 코테
- DFS와BFS
- vuejs
- cos pro 1급
- AndroidStudio
- 알고리즘
- BAEKJOON
- 동적계획법
- cos pro
Archives
- Today
- Total
Development Artist
[Issue, Vuejs, Powershell] vue : 이 시스템에서 스크립트를 실행할 수 없으므로 파일을 로드할 수 없습니다. CategoryInfo : 보안 오류: (:) [],PSSecurityException 본문
TroubleShooting/VueJs Issue
[Issue, Vuejs, Powershell] vue : 이 시스템에서 스크립트를 실행할 수 없으므로 파일을 로드할 수 없습니다. CategoryInfo : 보안 오류: (:) [],PSSecurityException
JMcunst 2022. 4. 1. 13:18728x90
반응형
이슈
1. vue create '프로젝트이름' 명령어 입력시 다음과 같이 이슈 발생.
해결
1. 일단 보안정책 확인. // 기댓값 : Restricted
get-executionpolicy
2. 보안정책 수정.
set-executionpolicy remotesigned
3. 보안정책 변경 확인. // 기댓값 : Remotesigned
get-executionpolicy
원인
1. Powershell의 보안정책 중 하나로, Powershell이 실행할 스크립트 제어를 위하여 기본적으로 Restricted로 제한이 된다.
728x90
반응형
Comments