Set-AzureADApplicationLogo
Sets the logo for an Application
Syntax
Set-AzureADApplicationLogo
[-ObjectId <String>]
-FilePath <String>
[<CommonParameters>]
Set-AzureADApplicationLogo
[-ObjectId <String>]
-FileStream <Stream>
[<CommonParameters>]
Set-AzureADApplicationLogo
[-ObjectId <String>]
-ImageByteArray <Byte[]>
[<CommonParameters>]
Description
This cmdlet is used to set the logo for an application
Examples
Example 1
PS C:\WINDOWS\system32> Set-AzureADApplicationLogo -ObjectId 79592454-dea7-4660-9d91-f1768e5055ac -FilePath D:\applogo.jpg
This cmdlet sets the application logo for the application specified by the the ObjectID parameter to the image specified with the FIlepath parameter
Parameters
-FilePath
The file path of the file that is to be uploaded as the application logo
Type: | String |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-FileStream
A fileStream that is to be used as the application logo
Type: | Stream |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ImageByteArray
And ImageByteArray that is to be used as the application logo
Type: | Byte[] |
Position: | Named |
Default value: | None |
Required: | True |
Accept pipeline input: | True |
Accept wildcard characters: | False |
-ObjectId
The ObjectID of the Application for which the logo is set
Type: | String |
Position: | Named |
Default value: | None |
Required: | False |
Accept pipeline input: | False |
Accept wildcard characters: | False |
Inputs
System.IO.Stream System.Byte[]