OS/windows
윈도우 powershell 사용법
python24
2020. 3. 20. 22:58
윈도우 powershell 사용법
* 실행권한 설정 (관리자로 powershell 실행 후)
PS> Get-ExecutionPolicy # 실행권한 확인
PS> Set-ExecutionPolicy unrestricted # 실행권한 설정 (Restricted, RemoteSigned, ...)
* 오류 발생 후 세부 오류 내용 확인
PS> $error[0] | fl * -force