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
- 안드로이드스튜디오
- Algorithm
- 개발
- 동적계획법
- 코딩테스트
- docker
- cos pro
- BAEKJOON
- AndroidStudio
- android
- DART
- cos pro 1급
- 안드로이드
- codingtest
- 알고리즘
- DFS
- django
- C++
- 백준
- issue
- vuejs
- Flutter
- 분할정복
- cos
- DFS와BFS
- Python
- 코드품앗이
- 파이썬
- 코테
- 동적계획법과최단거리역추적
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
반응형