Skip to content

Latest commit

 

History

History
60 lines (40 loc) · 1.83 KB

Remove-the-Microsoft-copyright.md

File metadata and controls

60 lines (40 loc) · 1.83 KB
description ms.assetid title author ms.author manager ms.date ms.topic
Learn more about: Remove the Microsoft copyright
c89a977c-b09f-44ec-be42-41e76a6cf3ad
Remove the Microsoft copyright
billmath
billmath
amycolannino
02/13/2024
article

Remove the Microsoft copyright

By default, the AD FS pages contain the Microsoft copyright. To remove this copyright from your customized pages, you can use the following procedure.

Screenshot that shows the login page for with the copyright at the bottom.

To remove the Microsoft copyright

  1. Create a custom theme that is based on the default.

    New-AdfsWebTheme –Name custom –SourceName default
  2. Export the theme by specifying the output folder.

    Export-AdfsWebTheme -Name custom -DirectoryPath C:\CustomWebTheme
  3. Locate the Style.css file that is located in the output folder. By using the previous example, the path would be C:\CustomWebTheme\Css\Style.css.

  4. Open the Style.css file with an editor, such as Notepad.

  5. Locate the #copyright portion, and then change it to the following:

    #copyright {color:#696969; display:none;}
  6. Create a custom theme that is based on the new Style.css file.

    Set-AdfsWebTheme -TargetName custom -StyleSheet @{locale="";path="C:\customWebTheme\css\style.css"}
  7. Activate the new theme.

    Set-AdfsWebConfig -ActiveThemeName custom

Now, you should no longer see the copyright at the bottom of the sign-in page.

remove copyright

Additional references

AD FS User Sign-in Customization