windows:powershell:commands:execution_policy

差分

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

この比較画面へのリンク

両方とも前のリビジョン 前のリビジョン
次のリビジョン
前のリビジョン
windows:powershell:commands:execution_policy [2020/02/23 01:52] ともやんwindows:powershell:commands:execution_policy [2020/05/29 13:50] (現在) – 削除 ともやん
行 1: 行 1:
-====== Get-ExecutionPolicy/Set-ExecutionPolicy ====== 
-コンピューターの PowerShell 実行ポリシーを取得/設定する。\\ 
-**動作: Windows/Linux**\\ 
-\\ 
-===== Get-ExecutionPolicy ===== 
-**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> 
- 
-===== Set-ExecutionPolicy ===== 
-**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> 
- 
-===== ExecutionPolicy ===== 
-^  ポリシー  ^  説明  ^ 
-| AllSigned  | ローカルコンピューターで記述されたスクリプトを含む、すべてのスクリプトと構成ファイルが信頼できる発行元によって署名されている必要がある。  | 
-| Bypass  | 何もブロックされず、警告もプロンプトも表示されない。  | 
-| Default  | デフォルトの実行ポリシーを設定する。Windows クライアントの場合は **Restricted**、Windows Server の場合は **RemoteSigned**。  | 
-| RemoteSigned  | インターネットからダウンロードしたすべてのスクリプトと構成ファイルは、信頼できる発行元によって署名されている必要がある。Windows Server の既定の実行ポリシー。  | 
-| Restricted  | 構成ファイルをロードしたり、スクリプトを実行したりしない。Windows クライアントの既定の実行ポリシー。  | 
-| Undefined  | スコープに実行ポリシーは設定されていない。グループポリシーによって設定されていないスコープから、割り当てられた実行ポリシーを削除する。すべてのスコープの実行ポリシーが **Undefined** の場合、有効な実行ポリシーは **Restricted**。  | 
-| Unrestricted | PowerShell 6.0 以降、これは Windows 以外のコンピューターのデフォルトの実行ポリシーであり、変更できない。すべての構成ファイルをロードし、すべてのスクリプトを実行する。インターネットからダウンロードした未署名のスクリプトを実行すると、実行する前に許可を求められる。  | 
- 
-===== 参考文献 ===== 
-[[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]]\\ 
  • windows/powershell/commands/execution_policy.1582390324.txt.gz
  • 最終更新: 2020/02/23 01:52
  • by ともやん