นี่คือตัวอย่างของคำสั่งที่ฉันใช้:
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 นี้แต่ไม่พบสิ่งใด ๆ ที่กำหนดค่าไว้
เบาะแสใด ๆ เกี่ยวกับวิธีการตั้งค่านี้?