Set-RASPubFolder
NAME
Set-RASPubFolder
SYNOPSIS
Modifies properties of a published folder.
SYNTAX
Set-RASPubFolder [Id] (uint)** [AdminOnly (bool)] [Description (string)] [-EnabledMode {Disabled | Enabled | Maintenance}] [Icon (string)] [IconIndex (uint)] [InheritMaintenance (bool)] [-MaintenanceMessage_de_DE (string)] [-MaintenanceMessage_en_US (string)] [-MaintenanceMessage_es_ES (string)] [-MaintenanceMessage_fr_FR (string)] [-MaintenanceMessage_it_IT (string)] [-MaintenanceMessage_ja_JP (string)] [-MaintenanceMessage_ko_KR (string)] [-MaintenanceMessage_nl_NL (string)] [-MaintenanceMessage_pt_BR (string)] [-MaintenanceMessage_zh_CN (string)] [-MaintenanceMessage_zh_TW (string)] [Name (string)] [PreferredRoutingEnabled (bool)] [-PublishToSite (Site[])] [-PublishToSiteIds (uint[])] [ReplicateMaintenance (bool)] [SiteId (uint)] [(CommonParameters)]
Set-RASPubFolder [-InputObject] (PubItem) [AdminOnly (bool)] [Description (string)] [-EnabledMode {Disabled | Enabled | Maintenance}] [Icon (string)] [IconIndex (uint)] [InheritMaintenance (bool)] [-MaintenanceMessage_de_DE (string)] [-MaintenanceMessage_en_US (string)] [-MaintenanceMessage_es_ES (string)] [-MaintenanceMessage_fr_FR (string)] [-MaintenanceMessage_it_IT (string)] [-MaintenanceMessage_ja_JP (string)] [-MaintenanceMessage_ko_KR (string)] [-MaintenanceMessage_nl_NL (string)] [-MaintenanceMessage_pt_BR (string)] [-MaintenanceMessage_zh_CN (string)] [-MaintenanceMessage_zh_TW (string)] [Name (string)] [PreferredRoutingEnabled (bool)] [-PublishToSite (Site[])] [-PublishToSiteIds (uint[])] [ReplicateMaintenance (bool)] [SiteId (uint)] [(CommonParameters)]
DESCRIPTION
Modifies properties of a published folder.
You can include only the parameters (published folder properties) that you want to modify.
To set filtering options, use Pub Filtering cmdlets.
PARAMETERS
AdminOnly (bool)
Use folder for administrative purposes only.
Name (string)
A new name to assign to the published resource.
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
EnabledMode
(PubResourceEnabledMode) 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[])
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 (PubItem)
An object specifying the published resource.
To obtain the object, use the Get-PubItem cmdlet.
SiteId (uint)
Site ID.
(CommonParameters)
INPUTS
OUTPUTS
-none-
EXAMPLES
---------- EXAMPLE 1 ----------
Set-RASPubFolder 1 -Enabled $false
Disables a published folder specified by ID. ---------- EXAMPLE 2 ----------
Set-RASPubFolder $PubFolder -Enabled $false
Disables a published folder specified by the $PubFolder object.
To obtain an object, use the Get-RASPubFolder cmdlet. ---------- EXAMPLE 3 ----------
Get-RASPubFolder -Id 1 | Set-RASPubFolder -Enabled $false
Disables a folder specified by an object obtained from the pipeline output.
RELATED LINKS
Last updated