PowerShell Core

提供: Hideki Saito Wiki Japanese
2018年11月11日 (日) 19:44時点におけるHsaito (トーク | 投稿記録)による版
移動先: 案内検索

Windows PowerShell互換モジュール

WindowsPSModulePathをインストール。

# Add `-Scope CurrentUser` if you're installing as non-admin 
Install-Module WindowsPSModulePath -Force

初期化

# Add this line to your profile if you always want Windows PowerShell PSModulePath
Add-WindowsPSModulePath

Linuxに置いてUpdate-Helpが失敗する場合

バージョン6.1からはユーザー環境にインストールされるようになったため、管理者権限は必要なくなりました。

何らかの理由で書き込みに失敗する場合は、以下のように強制するしかなさそう。(ちなみにsudo pwshでrootが必要。)

Update-Help -Force