Exchange Server\V15\TransportRoles\data\Temp\UnifiedContent - можно ли удалить ?
Занимает много место Exchange Server\V15\TransportRoles\data\Temp\UnifiedContent
Занимает много место Exchange Server\V15\TransportRoles\data\Temp\UnifiedContent
15.08.2022 13:39:32
|
|
|
15.08.2022 17:46:31
Насколько мне известно в эту папку испольхует: Get-TransportAgent "Malware Agent" | fl *
(Транспортный агент «Агент вредоносного ПО») Агент является частью встроенного сканера вредоносных программ Exchange и сохраняет копию каждого отсканированного сообщения электронной почты в указанном каталоге. В принципе, каждое письмо с вложением попадает в каталог. К сожалению, Exchange, похоже, не убирает здесь снова, или лимиты очень высоки. Однако каталог также можно очистить вручную. Поэтому, если вы найдете здесь массу файлов, вы можете удалить содержимое каталога, чтобы снова освободить место. Если ваше место ограничено и вам не нужен Malware Agent то его можно остановить: cd $exscripts .\Disable-Antimalwarescanning.ps1 Restart-Service MSExchangeTransport Если хотите повторно активировать то так: cd $exscripts .\Enable-Antimalwarescanning.ps1 Restart-Service MSExchangeTransport |
|
|
15.08.2022 18:02:15
Пример скрипта который удаляет все что старше 14 дней:
The Unified Content folder is within a “temp” folder and contains uniquely named files of several MB created multiple of times per day. Not much information is available about the purpose of the Unified Content folder but it appears to be part of the anti-malware scanning feature which many disable during installation. It was reported in Exchange 2013 releases prior to CU 5 that this folder was growing to significant sizes. It appears that this feature has been carried into Exchange 2016 (confirmed in CU 10). We can manage the growth of this folder by deleting anything greater than a month old. #Days to go back $Limit2 = (Get-Date).AddDays(-14) $Paths2 = "C:\Exchange Server\V15\TransportRoles\data\Temp\UnifiedContent" foreach ($Path in $Paths2) { # Delete files older than the $Limit2 through directory structure Get-ChildItem -Path $path -Recurse -Force | Where-Object { !$_.PSIsContainer -and $_.CreationTime -lt $Limit2 } | Remove-Item -Force } |
||||
|
||||
Читают тему (гостей: 1, пользователей: 0, из них скрытых: 0)
Форма ответов