Set-PSRepository

Sets values for a registered repository.

Syntax

Set-PSRepository
   -Name <String>
   [-SourceLocation <Uri>]
   [-PublishLocation <Uri>]
   [-InstallationPolicy <String>]
   [-PackageManagementProvider <String>]
   [<CommonParameters>]

Description

The Set-PSRepository cmdlet sets values for a registered module repository.

Examples

Example 1: Set the installation policy for a repository

PS C:\> Set-PSRepository -Name "myInternalSource" -InstallationPolicy Trusted

This command sets the installation policy for the myInternalSource repository to Trusted, so that users are not prompted before installing modules from that source.

Example 2: Set the source and publish locations for a repository

PS C:\> Set-PSRepository -Name "myInternalSource" -SourceLocation 'http://someNuGetUrl.com/api/v2' -PublishLocation 'http://someNuGetUrl.com/api/v2/packages'

This command sets the source location and publish location for myInternalSource to the specified URIs.

Parameters

-InstallationPolicy

Specifies the installation policy. Valid values are: Trusted, UnTrusted.

Type:String
Accepted values:Trusted, Untrusted
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-Name

Specifies the name of the repository.

Type:String
Position:Named
Default value:None
Required:True
Accept pipeline input:False
Accept wildcard characters:False

-PackageManagementProvider

Specifies the package management provider.

Type:String
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-PublishLocation

Specifies the URI of the publish location. For example, for NuGet-based repositories, the publish location is similar to http://someNuGetUrl.com/api/v2/Packages.

Type:Uri
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False

-SourceLocation

Specifies the URI for discovering and installing modules from this repository. For example, for NuGet-based repositories, the source location is similar to https://someNuGetUrl.com/api/v2.

Type:Uri
Position:Named
Default value:None
Required:False
Accept pipeline input:False
Accept wildcard characters:False