* モジュールリポジトリ [#o8e8a9d6]
** リポジトリの登録 [#r1ca7375]
Register-PSRepository –Name DemoRepo –SourceLocation "https://www.myget.org/F/powershellgetdemo/api/v2"
–PublishLocation “https://www.myget.org/F/powershellgetdemo/api/v2/package” –InstallationPolicy –Tusted
** 登録されたリポジトリの確認 [#re5cc4f3]
Get-PSRepository
** リポジトリの登録解除 [#he703d83]
Unregister-PSRepository DemoRepo
** リポジトリを指定してモジュールを探す [#xf2d8f95]
Find-Module -Repository DemoRepo
** 参考 [#pa0b3e72]
- https://docs.microsoft.com/ja-jp/powershell/wmf/5.0/psget_psrepository
- http://gallery.technet.microsoft.com/ScriptCenter/