Get-EntraApplicationLogo
Retrieve the logo of an application.
Syntax
Default (Default)
Get-EntraApplicationLogo
-ApplicationId <String>
[-FileName <String>]
[-View <Boolean>]
[-FilePath <String>]
[<CommonParameters>]
Description
The Get-EntraApplicationLogo
cmdlet retrieves the logo that is set for an application. Specify the ApplicationId
parameter to get a specific application logo for an application.
Examples
Example 1: Get an application logo for an application by ID
Connect-Entra -Scopes 'Application.Read.All'
$application = Get-EntraApplication -Filter "DisplayName eq 'Helpdesk Application'"
Get-EntraApplicationLogo -ApplicationId $application.Id -FilePath 'D:\outfile1.jpg'
This example shows how to retrieve the application logo for an application that is specified through the Object ID parameter.
Parameters
-ApplicationId
The ApplicationId of the application for which the logo is to be retrieved.
Parameter properties
Type: | System.String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Aliases: | ObjectId |
Parameter sets
(All)
Position: | Named |
Mandatory: | True |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-FileName
If provided, the application logo is saved to the file using the specified file name.
Parameter properties
Type: | System.String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-FilePath
If provided, the application logo is copied with a random filename to the file path that is specified in this parameter.
Parameter properties
Type: | System.String |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
-View
If set to $true, the application's logo is displayed in a new window on the screen.
Parameter properties
Type: | System.Boolean |
Default value: | None |
Supports wildcards: | False |
DontShow: | False |
Parameter sets
(All)
Position: | Named |
Mandatory: | False |
Value from pipeline: | True |
Value from pipeline by property name: | True |
Value from remaining arguments: | False |
CommonParameters
This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.