Цитата:
Сообщение от
gl00mie
PS. а службу MR я в DevBox обычно отключаю - она только зазря ресурсы жрет и базу грузит

Это в две стандартных команды
Код:
#region Stop and Disable Management Reporter Service <--
Write-Host "Stop and Disable Management Reporter Service (Optional)" -ForegroundColor Yellow
Write-Host "..Stopping and Disabling Management Reporter Service" -ForegroundColor Yellow
Stop-Service -Name MR2012ProcessService -Force
Set-Service -Name MR2012ProcessService -StartupType Disabled
#endregion Stop and Disable Management Reporter Service -->