Set-RASPubItem

NAME

Set-RASPubItem

SYNOPSIS

Modifies settings of a published resource of any type (folder, app, desktop).

SYNTAX

Set-RASPubItem [-Idarrow-up-right] <uint> [-Descriptionarrow-up-right <string>] [-Enabledarrow-up-right <bool>] [-EnabledModearrow-up-right {Disabled | Enabled | Maintenance}] [-Iconarrow-up-right <string>] [-IconIndexarrow-up-right <uint>] [-InheritMaintenancearrow-up-right <bool>] [-MaintenanceMessage_de_DEarrow-up-right <string>] [-MaintenanceMessage_en_USarrow-up-right <string>] [-MaintenanceMessage_es_ESarrow-up-right <string>] [-MaintenanceMessage_fr_FRarrow-up-right <string>] [-MaintenanceMessage_it_ITarrow-up-right <string>] [-MaintenanceMessage_ja_JParrow-up-right <string>] [-MaintenanceMessage_ko_KRarrow-up-right <string>] [-MaintenanceMessage_nl_NLarrow-up-right <string>] [-MaintenanceMessage_pt_BRarrow-up-right <string>] [-MaintenanceMessage_zh_CNarrow-up-right <string>] [-MaintenanceMessage_zh_TWarrow-up-right <string>] [-Namearrow-up-right <string>] [-PreferredRoutingEnabledarrow-up-right <bool>] [-PublishToSitearrow-up-right <Site[]arrow-up-right>] [-PublishToSiteIdsarrow-up-right <uint[]>] [-ReplicateMaintenancearrow-up-right <bool>] [-SiteIdarrow-up-right <uint>] [<CommonParametersarrow-up-right>] Set-RASPubItem [-InputObjectarrow-up-right] <PubItemarrow-up-right> [-Descriptionarrow-up-right <string>] [-Enabledarrow-up-right <bool>] [-EnabledModearrow-up-right {Disabled | Enabled | Maintenance}] [-Iconarrow-up-right <string>] [-IconIndexarrow-up-right <uint>] [-InheritMaintenancearrow-up-right <bool>] [-MaintenanceMessage_de_DEarrow-up-right <string>] [-MaintenanceMessage_en_USarrow-up-right <string>] [-MaintenanceMessage_es_ESarrow-up-right <string>] [-MaintenanceMessage_fr_FRarrow-up-right <string>] [-MaintenanceMessage_it_ITarrow-up-right <string>] [-MaintenanceMessage_ja_JParrow-up-right <string>] [-MaintenanceMessage_ko_KRarrow-up-right <string>] [-MaintenanceMessage_nl_NLarrow-up-right <string>] [-MaintenanceMessage_pt_BRarrow-up-right <string>] [-MaintenanceMessage_zh_CNarrow-up-right <string>] [-MaintenanceMessage_zh_TWarrow-up-right <string>] [-Namearrow-up-right <string>] [-PreferredRoutingEnabledarrow-up-right <bool>] [-PublishToSitearrow-up-right <Site[]arrow-up-right>] [-PublishToSiteIdsarrow-up-right <uint[]>] [-ReplicateMaintenancearrow-up-right <bool>] [-SiteIdarrow-up-right <uint>] [<CommonParametersarrow-up-right>]

DESCRIPTION

Modifies settings of a published resource. Modifies settings which are common to published resources of all types. For resource type-specific options, use Set-RASPubFolder, Set-RASRDSApp, and Set-RASRDSDesktop cmdlets. A resource can be specified using either its name, ID, or an object containing the resource properties. You can include only the parameters (resource properties) that you want to modify.

PARAMETERS

-Name <string> A new name to assign to the published resource.

        Required?                    false
        Position?                    named
        Default value                
        Accept pipeline input?       false
        Accept wildcard characters?  false

-Icon <string> Published resource icon file name. Can be an executable (.exe), a .dll or a .ico file.

-IconIndex <uint> Icon index Specifies the index of the icon that will be loaded from the binary specified in the Icon property

-ReplicateMaintenance <bool> Replicate Maintenance

-InheritMaintenance <bool> Inherit Maintenance

-Enabled <bool> Enable or disable a published resource.

-EnabledMode <PubResourceEnabledModearrow-up-right> Changes the availability status of the published resource. Possible values: Disabled, Enabled, Maintenance

-MaintenanceMessage_en_US <string> Maintenance message for the published resource in English.

-MaintenanceMessage_ja_JP <string> Maintenance message for the published resource in Japanese.

-MaintenanceMessage_fr_FR <string> Maintenance message for the published resource in French.

-MaintenanceMessage_es_ES <string> Maintenance message for the published resource in Spanish.

-MaintenanceMessage_it_IT <string> Maintenance message for the published resource in Italian.

-MaintenanceMessage_pt_BR <string> Maintenance message for the published resource in Portuguese.

-MaintenanceMessage_nl_NL <string> Maintenance message for the published resource in Dutch.

-MaintenanceMessage_de_DE <string> Maintenance message for the published resource in German.

-MaintenanceMessage_zh_TW <string> Maintenance message for the published resource in Chinese (Traditional).

-MaintenanceMessage_zh_CN <string> Maintenance message for the published resource in Chinese (Simplified).

-MaintenanceMessage_ko_KR <string> Maintenance message for the published resource in Korean.

-Description <string> Published resource description.

-PublishToSite <Site[]arrow-up-right> An array of sites to which to publish a resource.

-PublishToSiteIds <uint[]> An array of sites to which to publish a resource.

-PreferredRoutingEnabled <bool> Enable or disable Preferred Routing.

-Id <uint> Published resource ID.

-InputObject <PubItemarrow-up-right> An object specifying the published resource. To obtain the object, use the Get-PubItem cmdlet.

-SiteId <uint> Site ID.

<CommonParameters>

INPUTS

PubItemarrow-up-right

OUTPUTS

-none-

EXAMPLES

---------- EXAMPLE 1 ---------- Set-RASPubItem 1 -Enabled $false Enables a published resource specified by ID. ---------- EXAMPLE 2 ---------- Set-RASPubItem -InputObject $PubItem -Enabled $false Modifies a published resource specified in the $PubItem variable, which is an object identifying a resource. The obtain the object, use the Get-RASPubItem cmdlet. ---------- EXAMPLE 3 ---------- Get-RASPubItem -Id 1 | Set-RASPubItem -Enabled $false Modifies a published resource which is specified by an object obtained from the pipeline output.

Last updated