[PowerShell] 보안 문제 해결
by souk0721
Study note
프로젝트 나 필요시 만들었던 소스 등을 기록 정리한 포스트 입니다.
When?
PowerShell을 실행하면 보안문제라며 실행이 않될 때가 있습니다. 그 때 참고하시면 됩니다.
How?
- PowerShell 권한 주기 :
시작
-> 실행
-> CMD(관리자모드)
-> powershell 엔터
-> Set-ExecutionPolicy RemoteSigned 엔터
- 배치파일로 실행하기
아래의 명령줄에서 c:\pcldrv\test.ps1
를 수정해서 편리하게 배치파일
로 만들어 사용하시면 문제 없이 관리자 모드로 실행 될 것입니다.
창 모드
PowerShell -Command "& {Start-Process PowerShell -ArgumentList '-NoProfile -ExecutionPolicy Unrestricted -File ""c:\pcldrv\test.ps1""' -Verb RunAs}";
백 그라운드 모드
PowerShell -Command "& {Start-Process PowerShell -windowstyle hidden -ArgumentList '-NoProfile -ExecutionPolicy Unrestricted -File ""c:\pcldrv\test.ps1""' -Verb RunAs}";