我需要一个脚本来将IIS(W3SVC)中的默认日志文件夹重命名为网站的名称。对于每个网站

时间:2019-12-04 13:07:51

标签: powershell iis

Import-Module WebAdministration
$LogPath = “D:\Logs\IIS”
foreach($site in (dir iis:\sites\*))

{
New-Item $LogPath\$($site.Name) -type directory
Set-ItemProperty IIS:\Sites\$($site.Name) -name logFile.directory -value “$LogPath\$($site.Name)”
}

0 个答案:

没有答案