powershell PowerShell脚本,用于替换Web应用程序中网站集中所有网站中的所有徽标。

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell PowerShell脚本,用于替换Web应用程序中网站集中所有网站中的所有徽标。相关的知识,希望对你有一定的参考价值。

$sitelogo="http://scushp01/SiteAssets/SoundLogo.png"
$Site="http://scushp01/"
$Sites=Get-SPWebApplication $Site|Get-SPSite -Limit All|Get-SPWeb -Limit All|Select URL
$Sites|ForEach-Object {
$CurrentSite=$_.URL
$CurrentSiteObject=new-object Microsoft.SharePoint.SPSite($CurrentSite)
foreach($web in $CurrentSiteObject.Allwebs) {
$web.SiteLogoUrl=$sitelogo
$web.Update()}
$CurrentSiteObject.Dispose()}

以上是关于powershell PowerShell脚本,用于替换Web应用程序中网站集中所有网站中的所有徽标。的主要内容,如果未能解决你的问题,请参考以下文章

SQLServer用powershell实现多台服务器批量执行SQL脚本

利用 Powershell 编写简单的浏览器脚本

PowerShell脚本授权最佳实践

暂停程序,直到 powershell 脚本完成

如何使用 Python 中的参数运行 PowerShell 脚本

win2008如何在用bat调出的powershell窗口里运行命令