external help file | Module Name | online version | schema |
---|---|---|---|
OutSystems.SetupTools-help.xml |
OutSystems.SetupTools |
2.0.0 |
Returns the list of applications installed on an Outsystems environment.
Get-OSPlatformApplications [-ServiceCenter <String>] [-Credential <PSCredential>] [-Filter <ScriptBlock>]
[-PassThru] [<CommonParameters>]
This will return the list of applications installed on an OutSystems environment. The function can be used to query a remote Outsystems environment for the list of applications installed using the ServiceCenterHost parameter. If not specified, the function will query the local machine.
$Credential = Get-Credential
Get-OSPlatformApplications -ServiceCenterHost "8.8.8.8" -Credential $Credential
$password = ConvertTo-SecureString "superpass" -AsPlainText -Force
$Credential = New-Object System.Management.Automation.PSCredential ("superuser", $password) Get-OSPlatformApplications -ServiceCenterHost "8.8.8.8" -Credential $Credential
Get-OSPlatformModules -Credential $SCCreds -Filter {$_.StatusMessages.Id -eq 6}
Service Center hostname or IP. If not specified, defaults to localhost.
Type: String
Parameter Sets: (All)
Aliases: Host, Environment, ServiceCenterHost
Required: False
Position: Named
Default value: 127.0.0.1
Accept pipeline input: True (ByValue)
Accept wildcard characters: False
Username or PSCredential object with credentials for Service Center. If not specified defaults to admin/admin
Type: PSCredential
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: $OSSCCred
Accept pipeline input: False
Accept wildcard characters: False
Filter script block
Type: ScriptBlock
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
{{ Fill PassThru Description }}
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Required: False
Position: Named
Default value: False
Accept pipeline input: False
Accept wildcard characters: False
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutVariable, -OutBuffer, -PipelineVariable, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.
You can run this cmdlet on any machine with HTTP access to Service Center.