KB ID 0001556
Problem
There are a lot of things that can be customised on the ADFS logon page, but most people just want to change the image, and the ‘Company Logo’. Note: By default the company logo is just the Federation Service Display Name but you can replace that with a logo of you own.
Replace ADFS Logon Page Main Image
As per Microsoft recommendations;
“We recommend the dimensions for the illustration to be 1420×1080 pixels @ 96 DPI with a file size of no greater than 200 KB.”
[box]
Set-AdfsWebTheme -TargetName default -Illustration @{path="c:\Folder\image-name.png"}
[/box]
Result;
Replace ADFS Logon Page Company Logo
As per Microsoft recommendations;
“We recommend the dimensions for the logo to be 260×35 @ 96 dpi with a file size of no greater than 10 KB.”
[box]
Set-AdfsWebTheme -TargetName default -Logo @{path="c:\Folder\image-name.png"}
[/box]
Result;
Related Articles, References, Credits, or External Links
NA
Do you know a way to add another image to the page? I have an additional image to add and am not well versed in PowerShell to know how to do this. Thanks
I do not, I suspect its fixed unless you can code an entire new page? I’ll throw it open for discussion.
P