windows:powershell:commands:execution_policy

差分

このページの2つのバージョン間の差分を表示します。

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
windows:powershell:commands:execution_policy [2020/02/23 01:30] – [Get-ExecutionPolicy/Set-ExecutionPolicy] ともやんwindows:powershell:commands:execution_policy [2020/05/29 13:50] (現在) – 削除 ともやん
行 1: 行 1:
-====== Get-ExecutionPolicy/Set-ExecutionPolicy ====== 
-コンピューターの PowerShell 実行ポリシーを取得/設定する。\\ 
-**動作: Windows/Linux**\\ 
-\\ 
-**Windows**\\ 
-<code powershell> 
-PS > Get-ExecutionPolicy 
-RemoteSigned 
  
-PS > Get-ExecutionPolicy -List 
- 
-        Scope ExecutionPolicy 
-        ----- --------------- 
-MachinePolicy       Undefined 
-   UserPolicy       Undefined 
-      Process       Undefined 
-  CurrentUser       Undefined 
- LocalMachine    RemoteSigned 
-</code> 
- 
-**Linux**\\ 
-<code powershell> 
-PS > Get-ExecutionPolicy 
-Unrestricted 
-PS > Get-ExecutionPolicy -List 
- 
-        Scope ExecutionPolicy 
-        ----- --------------- 
-MachinePolicy    Unrestricted 
-   UserPolicy    Unrestricted 
-      Process    Unrestricted 
-  CurrentUser    Unrestricted 
- LocalMachine    Unrestricted 
-</code> 
- 
-**Windows**\\ 
-<code powershell> 
-PS > Set-ExecutionPolicy RemoteSigned 
-</code> 
-or 
-<code powershell> 
-PS > Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope LocalMachine 
-</code> 
- 
-**Linux**\\ 
-<code powershell> 
-PS > Set-ExecutionPolicy RemoteSigned 
-Set-ExecutionPolicy: Operation is not supported on this platform. 
-</code> 
- 
-===== 参考文献 ===== 
-[[https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/get-executionpolicy?view=powershell-7|Get-ExecutionPolicy]]\\ 
-[[https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.security/set-executionpolicy?view=powershell-7|Set-ExecutionPolicy]]\\