在所有站点上禁用时,返回已启用日志记录

时间:2012-04-18 23:03:43

标签: iis powershell logging

使用此代码进行远程处理:

$pssessIIS = New-PSSession -ComputerName <servername>
Invoke-Command -session $pssessIIS -ScriptBlock {
if ([System.Version] (Get-ItemProperty -path \"HKLM:\\Software\\Microsoft\\Windows     NT\\CurrentVersion\").CurrentVersion -ge [System.Version] \"6.1\") { 
Import-Module WebAdministration 
} else { Add-PSSnapin WebAdministration }
Invoke-Command -scriptblock { 
IIS:
Get-ItemProperty IIS:\\Sites\\'Default Web Site' -Name LogFile | select-object enabled }
}
Remove-PSSession -Session $pssessIIS
exit

它返回“启用”远程和&amp; TS进入服务器并在本地运行ps命令,但是,从IIS mmc开始,所有网站都禁用了日志记录,当前没有任何网站被写入。

所以问题是为什么我在禁用所有日志记录时从powershell IIS“启用”?它只是报告它找到了一个日志文件吗?

1 个答案:

答案 0 :(得分:2)

你能得到正确的价值吗?

(Get-WebConfiguration -Filter system.webServer/httpLogging -PSPath 'IIS:\sites\Default Web Site').dontLog