Set-EntraApplicationLogo
Sets the logo for an Application
Syntax
Set-EntraApplicationLogo
-ApplicationId <String>
-FilePath <String>
[<CommonParameters>]
Set-EntraApplicationLogo
-ApplicationId <String>
[<CommonParameters>]
Set-EntraApplicationLogo
-ApplicationId <String>
[<CommonParameters>]
Description
The Set-EntraApplicationLogo
cmdlet is used to set the logo for an application.
Examples
Example 1: Sets the application logo for the application specified by the ApplicationId parameter
Connect-Entra -Scopes 'Application.ReadWrite.All'
$application = Get-EntraApplication -Filter "DisplayName eq 'Demo Application'"
$params = @{
ObjectId = $application.ObjectId
FilePath = 'D:\applogo.jpg'
}
Set-EntraApplicationLogo @params
This cmdlet sets the application logo for the application specified by the -ApplicationId
parameter to the image specified with the -FilePath
parameter.
Parameters
-ApplicationId
The ApplicationId of the Application for which the logo is set.
Type: | System.String |
Aliases: | ObjectId |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
System.String
System.IO.Stream System.Byte[]
Outputs
System.Object
Notes
File uploads must be smaller than 500KB.