यहाँ मैं जो आदेश चला रहा हूँ उसका एक नमूना है:
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 दस्तावेज़ में उल्लिखित समूह नीतियों के लिए जाँच की , लेकिन ऐसा कुछ भी नहीं मिला जिसे कॉन्फ़िगर किया गया हो।
मैं इसे कैसे सेट कर सकता हूं?