删除 Microsoft 版权

默认情况下,AD FS 页面包含 Microsoft 版权。 若要从自定义页面删除此版权,可以使用以下过程。

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

  1. 创建基于默认主题的自定义主题。

    New-AdfsWebTheme –Name custom –SourceName default
    
  2. 通过指定输出文件夹来导出该主题。

    Export-AdfsWebTheme -Name custom -DirectoryPath C:\CustomWebTheme
    
  3. 找到位于输出文件夹中的 Style.css 文件。 通过使用前面的示例,该路径将为 C:\CustomWebTheme\Css\Style.css.

  4. 使用编辑器(如记事本)打开 Style.css 文件。

  5. 找到 #copyright 部分,然后将其更改为以下内容:

    #copyright {color:#696969; display:none;}
    
  6. 创建基于新的 Style.css 文件的自定义主题。

    Set-AdfsWebTheme -TargetName custom -StyleSheet @{locale="";path="C:\customWebTheme\css\style.css"}
    
  7. 激活新主题。

    Set-AdfsWebConfig -ActiveThemeName custom
    

现在,登录页面底部应不再显示版权。

remove copyright

其他参考

AD FS 用户登录自定义