Created
July 10, 2021 09:26
-
-
Save sorie/7f48c8b83184bec68f47da7e458ab031 to your computer and use it in GitHub Desktop.
vs code powershell 에서 PSSecurityException에러를 만났을 때
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
에러이유 : 관리자가 아닌 ms 계정으로 로그인한 윈도우10에서 Visual Studio Code 에서 Vue 개발환경을 설정하던 중 보안 오류가 발생함. | |
해결방법 : | |
d:\sori> Get-ExecutionPolicy -Scope CurrentUser | |
d:\sori> Set-ExecutionPolicy -ExecutionPolicy Unrestricted -Scope CurrentUser | |
d:\sori> Get-ExecutionPolicy -List | |
관련문서 | |
https://docs.microsoft.com/ko-kr/powershell/module/microsoft.powershell.core/about/about_execution_policies?view=powershell-7 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment