- Nov 13, 2017
- 47
- 10
Be sure that you have done a complete fresh install of the operating system, thus removing any unneeded junk.
Also this:
Memory creeping up-BI
Let me try this, as i do have HA enabledOne caveat. If you're using sub streams don't use hardware acceleration in Blue Iris. It can actually add to CPU utilization rather than reduce it.
Google Charts via a custom javascript app.What are you using to graph your ram?
$ServiceName = "BlueIris"
$MemoryThresholdInMB = 7168
$Service=Get-CIMInstance Win32_Service -Filter "name = '$ServiceName'"
$ProcessID = $Service.ProcessID
$ProcessMem = Get-CIMInstance Win32_Process -Filter "ProcessId = '$ProcessID'"
$MemSizeInMB = $ProcessMem.WS/1MB
write-host $ProcessMem.WS
write-host "$MemSizeInMB : $MemoryThresholdInMB"
If ($MemSizeInMB -gt $MemoryThresholdInMB) {
write-host "$ServiceName : $MemSizeInMB"
Restart-Service -Name $ServiceName
write-host "$ServiceName Restarted"
}
Did you try changing the video driver?
Did you try changing the video driver?
Like updating my nvidia video driver?
I dont have intel video card, as far as i know once you have a real video card the internal motherboard/cpu video card gets disabled.It is usually a memory leak in the intel video driver.
I dont have intel video card, as far as i know once you have a real video card the internal motherboard/cpu video card gets disabled.
i did not, but i think it did by default on this board, is an EVGA Z390 DarkWOW - did you disable it?