다음은 내가 실행중인 명령 샘플입니다.
PS C:\> Get-ExecutionPolicy -List
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Unrestricted
PS C:\> Set-ExecutionPolicy Unrestricted -Scope CurrentUser
PS C:\> Get-ExecutionPolicy -List
Scope ExecutionPolicy
----- ---------------
MachinePolicy Undefined
UserPolicy Undefined
Process Undefined
CurrentUser Undefined
LocalMachine Unrestricted
나는 설정하고자 CurrentUser
하는 Unrestricted
,하지만 난 그렇게 할 수없는 것. 이 MSDN 문서에 설명 된대로 그룹 정책이 있는지 확인 했지만 구성된 것을 찾지 못했습니다.
이것을 어떻게 설정할 수 있는지에 대한 단서가 있습니까?