[Fixed] VSSERV service keeps stopping/crashing
Comments
-
I have had this issue for almost a year now. BD 2016 had the same exact issue for me, and I was hoping 2017 would resolve it. If you search through the forum it seems this issue has been around since at least 2009 in one form or another.
I have been running Plex for several years now so I certainly recall a time when BD and Plex got along, but I can't recall any specific updates that may have broken it.0 -
/index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@GeorgiaAny other suggestions? shall i uninstall 2015 edition and reinstall 2017? let me know. So far i have scheduled my PC to restart everyday. Not an ideal situation bu can't afford to not have virus and firewall protection for hours on end.0 -
1 hour ago, maseren said:
/index.php?/profile/209053-dawgtanion/&do=hovercard" data-mentionid="209053" href="<___base_url___>/index.php?/profile/209053-dawgtanion/" rel="">@DawgtanionThats very strange. Considering i just tested 2016 and 2015 and the issue happened on all of them.
hmmm perhaps its due to a specific plex setting or something with Windows, maybe i made a change that activated the bitdefender bug.0 -
That might make sense. In the transcoding section, those values can be changed, but i'm unsure, so i'm not touching it yet. Besides, i linked my plex settings previously on this thread.0 -
I wish they would let us set the service to auto recover upon crashing, at least as a temporary patch.0 -
/index.php?/profile/208816-sirace135/&do=hovercard" data-mentionid="208816" href="<___base_url___>/index.php?/profile/208816-sirace135/" rel="">@sirace135This makes sense, but the fear is, if they allow it, then, a virus could possibly switch off the service in a malicious way as well is my guess.0 -
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" rel="">@maseren They could always make it a default function to auto recover instead of failing in silence like this.0 -
1 minute ago, sirace135 said:
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" rel="">@maseren They could always make it a default function to auto recover instead of failing in silence like this.
I use Growl and the SystemMonitor plugin to monitor the Event Viewer logs and send a notification to my phone (via the Prowl app) when BitDefender crashes.0 -
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyNice suggestion, thanks, but it'd be a pain to have to go to the pc and reactive every single time0 -
Just now, maseren said:
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyNice suggestion, thanks, but it'd be a pain to have to go to the pc and reactive every single time
Indeed, but you can also trigger a PowerShell ****** to sleep 5 seconds and restart. ;-)0 -
Just now, MAscooby said:
Indeed, but you can also trigger a PowerShell ****** to sleep 5 seconds and restart. ;-)
That's a bit beyond my knowledge sadly0 -
Yeah, understandable. And it shouldn't really be necessary, either. Hopefully they figure what's going on and provide a fix!0 -
/index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@GeorgiaI need to know if i should go back to bitdefender 2017? i'm still on trial of 2015.0 -
4 hours ago, maseren said:
/index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@GeorgiaI need to know if i should go back to bitdefender 2017? i'm still on trial of 2015.
I'd say if the same problem's happening on 2015 and it's happening just as often, then you might as well go back to 2017.
0 -
If anyone wants to tackle this, it's been working well for me over the past few days...
I've got my system set up to monitor for the VSSERV service crashes in Task Scheduler using an "On an event" custom event filter trigger with the following XML:
<QueryList>
<Query Id="0" Path="System">
<Select Path="System">
*[System[(Level=2) and (EventID=7034)]]
and
*[EventData[Data[@Name='param1'] and (Data='Bitdefender Virus Shield')]]
</Select>
</Query>
</QueryList>
Basically, it watches the System event log for a specific VSSERV "Error" (level 2) event ID (7034). When it triggers, it kicks off a PowerShell ****** that starts the service if it hasn't restarted itself.
I run powershell.exe via the task's "Start a program" action (and it runs as the user that I have logged in 24x7) with the following parameters:
powershell.exe -NoProfile -NoLogo -NonInteractive -ExecutionPolicy Bypass -File "C:\Scripts\Restart_VSSERV.ps1"
Here's the PowerShell ****** itself, which also updates the Application event log when it runs.
# PowerShell cmdlet to restart Bitdefender virus scan service (VSSERV)
$Service = Get-Service -ComputerName "Localhost" -Name VSSERV
# Check to see whether "VSSERV Restart" source exists in Application event log; if not, create it
$logSourceExists = [System.Diagnostics.EventLog]::SourceExists("VSSERV Restart");
if (! $logSourceExists) {
New-EventLog –LogName Application –Source “VSSERV Restart”
}
# Check whether service is running; if yes do nothing, else start service.
if ($Service.status -eq "Running")
{
Write-EventLog -LogName Application -Source “VSSERV Restart” -EntryType Information –EventID 1 –Message "Service is running and no action has been taken."
} else
{
Start-Service $Service
Write-EventLog –LogName Application –Source “VSSERV Restart” –EntryType Information –EventID 1 –Message "Started the service because it was not running."
}
Pretty sure the user executing the Task Scheduler action has to be an admin & the task has to be set to run with highest privileges as well, but I haven't tinkered with that to know for sure how it'd run under an admin user that isn't logged in.0 -
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" id="ips_uid_9939_6" rel="">@maseren Indeed, Bitdefender 2015 installs as a 30-day trial since it's not using the Central system for activation; it relies on license keys. I will keep in touch with you via the e-mail ticket 2017032418220003.
I am interested to know if others experience the crash with Bitdefender 2016 and 2015 as well. If you do, please post back and let us know. My colleague Sorin will update this topic from now on.
---------------
Thank you all for your valuable help.
G.0 -
Having the exact same problem when I am using Plex sending to my Roku or other devices. After using Plex Bitdefender will be disabled.
Windows 10 Creators Update and latest version of Bitdefender. Usually don't even notice it is offline until I start a game or something that suddenly pops up MS Firewall and I realize Bitdefender has shutdown again. Really annoying and no way around it so far. Restarting the service sort of works as the tools don't fully startup again. They simply keep saying to wait a few moments.0 -
On 5/5/2017 at 9:23 PM, MAscooby said:
If anyone wants to tackle this, it's been working well for me over the past few days...
I've got my system set up to monitor for the VSSERV service crashes in Task Scheduler using an "On an event" custom event filter trigger with the following XML:
<QueryList>
<Query Id="0" Path="System">
<Select Path="System">
*[System[(Level=2) and (EventID=7034)]]
and
*[EventData[Data[@Name='param1'] and (Data='Bitdefender Virus Shield')]]
</Select>
</Query>
</QueryList>
Basically, it watches the System event log for a specific VSSERV "Error" (level 2) event ID (7034). When it triggers, it kicks off a PowerShell ****** that starts the service if it hasn't restarted itself.
I run powershell.exe via the task's "Start a program" action (and it runs as the user that I have logged in 24x7) with the following parameters:
powershell.exe -NoProfile -NoLogo -NonInteractive -ExecutionPolicy Bypass -File "C:\Scripts\Restart_VSSERV.ps1"
Here's the PowerShell ****** itself, which also updates the Application event log when it runs.
# PowerShell cmdlet to restart Bitdefender virus scan service (VSSERV)
$Service = Get-Service -ComputerName "Localhost" -Name VSSERV
# Check to see whether "VSSERV Restart" source exists in Application event log; if not, create it
$logSourceExists = [System.Diagnostics.EventLog]::SourceExists("VSSERV Restart");
if (! $logSourceExists) {
New-EventLog –LogName Application –Source “VSSERV Restart”
}
# Check whether service is running; if yes do nothing, else start service.
if ($Service.status -eq "Running")
{
Write-EventLog -LogName Application -Source “VSSERV Restart” -EntryType Information –EventID 1 –Message "Service is running and no action has been taken."
} else
{
Start-Service $Service
Write-EventLog –LogName Application –Source “VSSERV Restart” –EntryType Information –EventID 1 –Message "Started the service because it was not running."
}
Pretty sure the user executing the Task Scheduler action has to be an admin & the task has to be set to run with highest privileges as well, but I haven't tinkered with that to know for sure how it'd run under an admin user that isn't logged in.
At the moment doing this has fixed the issue, but would prefer a proper fix from Bitdefender. Thanks MAscooby!!0 -
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyyour fix is doing the job for now, anyway to have the auto restart for the service be behind the scenes? its sometimes popping up in front of my plex media player. That said, /index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@Georgiaany updates on a permanent fix? MAscooby's solution is temporary and not very easy to implement for the general populace. Please let us know.0 -
Hello,
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" style="" rel="">@maseren At this time our developers are working on said fix.
When it will be released I will update this thread to let you all know.0 -
-
-
6 hours ago, Yartting said:
i was unable to complete the method above provided
so i tried this way but cannot save it? any help would be awesome.
/index.php?/profile/209290-yartting/&do=hovercard" data-mentionid="209290" href="<___base_url___>/index.php?/profile/209290-yartting/" rel="">@Yartting I don't think BitDefender lets you modify the Service properties. There might be a way around it (maybe boot into Safe Mode and see if you can save the changes), but I suspect it's intentional to stop malware from tinkering with the processes and services. It's also possible that BitDefender will reset itself to default even if you manage to change it in Safe Mode (although I haven't tried it).
0 -
/index.php?/profile/209058-mascooby/&do=hovercard&referrer=https%253A%252F%252Fforum.bitdefender.com%252Findex.php%253F%252Ftopic%252F75792-sent2devel-vsserv-service-keeps-stoppingcrashing%252F%2526page%253D3%2526csrfKey%253D7086413b75d14a9993f9fa0c764e8336" href="<___base_url___>/index.php?/profile/209058-mascooby/" style="color:#ad1457;" title="Go to MAscooby's profile" rel="">MAscooby/index.php?/profile/209053-dawgtanion/&do=hovercard&referrer=https%253A%252F%252Fforum.bitdefender.com%252Findex.php%253F%252Ftopic%252F75792-sent2devel-vsserv-service-keeps-stoppingcrashing%252F%2526page%253D3%2526csrfKey%253D7086413b75d14a9993f9fa0c764e8336" href="<___base_url___>/index.php?/profile/209053-dawgtanion/" style="color:inherit;" title="Go to Dawgtanion's profile" rel="">Dawgtanion Thank you for both your suggestions, I guess ill manually just restart it, as it is not the end of the world just an inconvenience.0 -
11 hours ago, maseren said:
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyyour fix is doing the job for now, anyway to have the auto restart for the service be behind the scenes? its sometimes popping up in front of my plex media player. That said, /index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@Georgiaany updates on a permanent fix? MAscooby's solution is temporary and not very easy to implement for the general populace. Please let us know.
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" rel="">@maseren Make sure you select "Hidden" on the "General" tab of the task properties (ee the attached image), and make sure you have these command line switches added when you call PowerShell.exe: -NoProfile -NoLogo -NonInteractive -ExecutionPolicy Bypass0 -
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyyou my friend are a genius! thanks for all of it.0 -
Any update or ETA on a fix?
This has been going on for over a month, crashes have been happening more often -- and even when I'm not streaming media through Plex -- and if I hadn't hacked together a PowerShell deadman ******, my PC would be completely exposed to malware despite the fact that I'm paying for a subscription to BitDefender.
More to the point, do I need to look for an alternative antivirus solution?
Still happening as of version 21.0.25.92.0 -
Hello,
There is no ETA, however our dev team is working on resolving this issue.
Me or my colleague Georgia will update the thread when there is a fix released.0 -
Can you tell us whether excluding a particular binary or folder might help? I tried excluding the transcoder but it's still crashing.0 -
Hello,
I am using BitDefender since almost half a year. The problem mentioned above started only few days ago for me even with the latest BD2017 version.
I did the repair method and also a new fresh install. Unfortunately "services not responding" is still there.
I have Win10 - 64 bit up to date and I do not use any kind of streaming as some of you mentioned above.
I do not know what could have caused this behavior.
Q: How vulnerable is my laptop now with these "services not responding"?
Looking forward for a fix.
Daniel.
0 -
On 5/31/2017 at 5:14 PM, MAscooby said:
Can you tell us whether excluding a particular binary or folder might help? I tried excluding the transcoder but it's still crashing.
In case anyone's wondering, I tried excluding the entire Plex program files directory, and I still get the crashes.0 -
So wait, now it's crashing without transcode??
Ok folks at bitdefender I'd like an answer, do your engineers know what the cause of this is? If so, is there any danger? Is it some kind of malicious code running in the background causing this? Please clarify work some details to encourage us to keep waiting for a fix.
Bitdefender is highly rated currently, but something like this would end up counting against it at av comparative . Org.
Thanks0 -
7 hours ago, maseren said:
So wait, now it's crashing without transcode??
Ok folks at bitdefender I'd like an answer, do your engineers know what the cause of this is? If so, is there any danger? Is it some kind of malicious code running in the background causing this? Please clarify work some details to encourage us to keep waiting for a fix.
Bitdefender is highly rated currently, but something like this would end up counting against it at av comparative . Org.
Thanks
I'm also now getting very frustrated with the lack of response from bitdefender, perhaps this is a fundamental problem with the application that's why its taking them so long to resolve.
Would like to start looking for alternative Antivirus applications but have almost a year left on my subscription, /index.php?/profile/34114-georgia/&do=hovercard" data-mentionid="34114" href="<___base_url___>/index.php?/profile/34114-georgia/" rel="">@Georgia would it be possible to arrange a refund?0 -
It's crashing about every 15 minutes or so now... I can't keep babysitting this like this... I also don't feel like messing around with Powershell scripts to make this work. I shouldn't have to do that for a solution I paid for and is touted as being the best and easiest around.0 -
15 hours ago, maseren said:
So wait, now it's crashing without transcode??
Ok folks at bitdefender I'd like an answer, do your engineers know what the cause of this is? If so, is there any danger? Is it some kind of malicious code running in the background causing this? Please clarify work some details to encourage us to keep waiting for a fix.
Bitdefender is highly rated currently, but something like this would end up counting against it at av comparative . Org.
Thanks
No... I was trying to exclude the transcoder and other Plex processes from causing the crash by excluding them from antivirus scans, but it doesn't seem to make a difference.
If BitDefender devs could advise whether excluding certain files or processes might stop the crashes, that might be a better bandaid than the PowerShell ****** that I provided.0 -
Hello,
/index.php?/profile/209020-maseren/&do=hovercard" data-mentionid="209020" href="<___base_url___>/index.php?/profile/209020-maseren/" style="" rel="">@maseren There is no malicious code, this is a incompatibility issue.
/index.php?/profile/209053-dawgtanion/&do=hovercard" data-mentionid="209053" href="<___base_url___>/index.php?/profile/209053-dawgtanion/" id="ips_uid_374_8" style="" rel="">@Dawgtanion Our position regarding this issue has been made clear, we are currently working on resolving the issue. Should any new info be available the thread will be updated by either me or Georgia. You can request a refund via bitsy@bitdefender.com
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" id="ips_uid_374_10" style="" rel="">@MAscooby As you found out for yourself excluding the process will not avoid this glitch sadly. Best workaround is to avoid transcoding until a fix is released0 -
3 hours ago, Sorin G. said:
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscooby As you found out for yourself excluding the process will not avoid this glitch sadly. Best workaround is to avoid transcoding until a fix is released
/index.php?/profile/201429-sorin-g/&do=hovercard" data-mentionid="201429" href="<___base_url___>/index.php?/profile/201429-sorin-g/" rel="">@Sorin G. Can you clarify for us whether the VSSERV crash and "Bitdefender services are unavailable" error means the that antivirus services (and protection) are actually not working once this happens? Or is it simply that the UI is not responsive?0 -
I've given up. After reading this thread I can see this serious bug has existed for over 2 months. It makes Bitdefender unusable for me, as the primary use of my system is Plex, I need a antivirus that doesn't crash every time I fire up Plex. I also wonder if it an application can cause Bitdefender to crash, how safe is it from malicious code crashing it?
I have installed another antivirus option.0 -
On 6/8/2017 at 8:31 PM, Sorin G. said:
Hello,
Sadly, the best option isn't not to transcode, but to not use Bitdefender.
I agree with the comment about questioning how secure Bitdefender is if it can be so easily crashed by another process.
As loyal, paying customers of your product, can we please be told when this will be fixed? It's been several months and, with the trial period of another product about it end on my PC, I need to know if I'm buying another product or sticking with Bitdefender.
Like many, this will be the final straw. A previous Bitdefender bug already cost me thousands. I won't be back. And, as many of us are IT professionals, it is more than just one or two people. We can't recommend a product whose solution, when one is provided, is "don't use that other software as ours is broken" and then says nothing.
So please, be vocal, tell us something. Better yet, fix it so your software doesn't crash!0 -
For those with this problem, I've had confirmation that the fix will be rolled out within the next week.0 -
1 minute ago, arranh said:
For those with this problem, I've had confirmation that the fix will be rolled out within the next week.
Thanks for the heads up. Really looking forward to this getting resolved...
Who did you hear the news from?0 -
On 7/4/2017 at 8:12 AM, sirace135 said:
Thanks for the heads up. Really looking forward to this getting resolved...
Who did you hear the news from?
One of the support staff with whom I have been emailing.0 -
Thanks for the update. Good, Scooby's temporary solution has been good, but it often pops up in the middle of movie watching as it restarts the service. It'll be nice to do away with that.0 -
9 minutes ago, maseren said:
Thanks for the update. Good, Scooby's temporary solution has been good, but it often pops up in the middle of movie watching as it restarts the service. It'll be nice to do away with that.
Yeah, the only way around that pop-up is to wrap the PowerShell in another ****** that squelches the noise... If this doesn't get resolved soon, shout out, and I'll post some changes that'll help.
I've actually tossed BitDefender & installed another product on all of the PCs that I support at home, and for friends & family. The fact that the main AV binary completely dies in a way that seems to leave the door wide open is completely unacceptable. The fact that BitDefender failed to confirm whether that's occurring when I specifically asked (above) is even more so. The fact that it's taken 2+ months (and counting) to deliver a solution ... Yeah. I'm done.0 -
58 minutes ago, arranh said:
One of the support staff with whom I have been emailing.
That's great news. I am REALLY tired of dealing with this issue....
I wish they would be considerate enough to acknowledge it and give us a sturdy timeline.0 -
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyYeah i can appreciate the frustration. Bitdefender has been a solid wall thus far, and no viruses have come through and in AV Comparatives they rank consistently high, but then again, so does Kaspersky, which is the main people i'd go to if this doesn't get fixed soon. It IS concerning that the service can be dropped so quickly.
Anyways,i'm holding for now...0 -
27 minutes ago, maseren said:
/index.php?/profile/209058-mascooby/&do=hovercard" data-mentionid="209058" href="<___base_url___>/index.php?/profile/209058-mascooby/" rel="">@MAscoobyYeah i can appreciate the frustration. Bitdefender has been a solid wall thus far, and no viruses have come through and in AV Comparatives they rank consistently high, but then again, so does Kaspersky, which is the main people i'd go to if this doesn't get fixed soon. It IS concerning that the service can be dropped so quickly.
Anyways,i'm holding for now...
Yep, no argument that it's been solid. I also understand that the number of people experiencing this issue is extremely small compared to the number of people who use BitDefender.
But the fact that the AV engine dies and is never restarted... That's worrying. It's pretty obvious that the service *can* be restarted -- since that's just what my PowerShell's doing -- so I'd feel a lot better about keeping it if someone from BitDefender could tell me that I'm still protected even when this condition strikes.
In any case, Kasperksy's good (as long as you're not too worried about their ties to Moscow ), as are several others. WebRoot is another option (although it's a fundamentally different beast and not for everyone), and its extremely small footprint's awfully nice.0 -
So yeah I'm definitely experiencing this issue but mine seems to be going one step further and my system has been locking up every couple of days and I'm trying to troubleshoot that - not sure if it's related to this or not.
So I finally submitted a ticket and did some troubleshooting (https://www.bitdefender.com/support/bitdefender-modules-are-not-working-1713.html) and then came here . . .
Anyone else experiencing their system locking up?
Thanks!
0 -
On 7/3/2017 at 2:10 PM, arranh said:
For those with this problem, I've had confirmation that the fix will be rolled out within the next week.
Any news?0 -
4 hours ago, EricB said:
So yeah I'm definitely experiencing this issue but mine seems to be going one step further and my system has been locking up every couple of days and I'm trying to troubleshoot that - not sure if it's related to this or not.
So I finally submitted a ticket and did some troubleshooting (https://www.bitdefender.com/support/bitdefender-modules-are-not-working-1713.html) and then came here . . .
Anyone else experiencing their system locking up?
I haven't had the entire system lock up, but I did have a few times where manually restarting the services left them in a funky zombie state and I had to reboot. I never experienced that with the PowerShell ****** that I posted above though.0