PowerShell Community Extensions 2のインストール手順Pscxのダウンロードと設置
スクリプトの実行ポリシーを変更するSet-ExecutionPolicy RemoteSigned Get-ExecutionPolicy PowerShell設定ファイルを変更するC:\Users\taro\Documents\WindowsPowerShellにMicrosoft.PowerShell_profile.ps1というファイルを作り、以下のように記述する。 import-module pscx ユーザ設定ファイルを利用する場合は以下のようにする。 import-module Pscx -arg $(Join-Path -Path $profile -ChildPath "..\Pscx.UserPreferences.ps1") スクリプトの実行ポリシーを変更せずに自分で署名する場合事前準備Makecert.exeが必要なので、Visual Studioをインストールする。 鍵の作成
スクリプトの署名
参考
|
|