New-RASPubLocalApp

NAME

New-RASPubLocalApp

SYNOPSIS

Creates a published application to a Site.

SYNTAX

New-RASPubLocalApp [Name]** (string) [AndroidEnabled (bool)] [Description (string)] [-EnabledMode {Disabled | Enabled | Maintenance}] [Icon (string)] [IconIndex (uint)] [iOSEnabled (bool)] [LinuxEnabled (bool)] [MacEnabled (bool)] [-ParentFolder (PubFolder)] [ParentId (uint)] [PreviousId (uint)] [-PreviousItem (PubItem)] [-PublishToSite (Site[])] [-PublishToSiteIds (uint[])] [ReplicateLocalAppSettings (bool)] [SiteId (uint)] [URL (string)] [UserPortalEnabled (bool)] [WindowsEnabled (bool)] [WindowsParameters (string)] [WindowsStartIn (string)] [WindowsTarget (string)] [WindowsUseIfAvailable (bool)] [-WindowsWinType {Normal | Maximized | Minimized}] [(CommonParameters)]

DESCRIPTION

Creates a published application to a Site.

You must specify the -Name. All other parameters are optional.

PARAMETERS

URL (string)

URL.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsEnabled (bool)

Windows: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsUseIfAvailable (bool)

Windows: Use the following application if available on local device.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsStartIn (string)

Windows: Application working directory.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsTarget (string)

Windows: Application target file. (i.e. calc.exe, file.txt, etc.).

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsParameters (string)

Windows: Application parameters.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

WindowsWinType (WindowType)

Windows: Window Type: 0=Normal, 1=Maximized, 2=Minimized.

Possible values: Normal, Maximized, Minimized

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

MacEnabled (bool)

Mac: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

LinuxEnabled (bool)

Linux: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

iOSEnabled (bool)

iOS: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

AndroidEnabled (bool)

Android: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

UserPortalEnabled (bool)

UserPortal: Whether the application is enabled for the operating system or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

ReplicateLocalAppSettings (bool)

Whether to replicate local application settings or not.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

Name (string)

Published resource name.

        Required?                    true

        Position?                    0

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

ParentFolder (PubFolder)

Parent publishing folder.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       true (ByValue, ByPropertyName)

        Accept wildcard characters?  false

ParentId (uint)

Parent publishing folder ID.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

PreviousItem (PubItem)

Previous published item.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

PreviousId (uint)

Previous published ID.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

Icon (string)

An icon to use for a publishing resource.

This can be an executable (.exe), a .dll or a .ico file.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

IconIndex (uint)

Specifies the index of the icon that will be loaded from the binary specified in the Icon property.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

EnabledMode

(PubResourceEnabledMode) Changes the availability status of the published resource.

Possible values: Disabled, Enabled, Maintenance

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

Description (string)

Published resource description.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

PublishToSite (Site[])

An array of sites to which to publish a resource.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

PublishToSiteIds (uint[])

An array of Sites IDs to which to publish a resource.

        Required?                    false

        Position?                    named

        Default value                

        Accept pipeline input?       false

        Accept wildcard characters?  false

SiteId (uint)

Site ID in which to publish the specified Item.

If the parameter is omitted, the site ID of the Licensing Server will be used.

        Required?                    false

        Position?                    named

        Default value                0

        Accept pipeline input?       false

        Accept wildcard characters?  false

(CommonParameters)

        This cmdlet supports the common parameters: Verbose, Debug,

        ErrorAction, ErrorVariable, WarningAction, WarningVariable,

        OutBuffer, PipelineVariable, and OutVariable. For more information, see 

        about_CommonParameters documentation. 

INPUTS

PubFolder

OUTPUTS

PubLocalApp

EXAMPLES

**---------- EXAMPLE 1 ----------

New-RASPubLocalApp -Name "My Local App"

Creates a published application locally. **---------- EXAMPLE 2 ----------

New-RASPubLocalApp -Name "My Local App" -WindowsEnabled 1

Creates a published application locally and specifies the application is enabled for Windows.

Last updated