Technology Questions

Go Back   Technology Questions > Software Questions > Operating System Questions > Windows XP

Windows XP Discuss the Microsoft Windows XP Operating System

Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old 07-23-2007, 07:10 PM
Dave Candi
Newsgroup Contributor
 
Posts: n/a
How do i remove symantec live update?

I want to remove this program but cannot find the uninstall and its not
listed in the list? I tried to remove the directorys manually but it wouldn't
let me? Is this anti virus software? What is it? I already have live one
care. I have reason to believe this software is preventing me from running
chkdsk and defrag. Any help much appreciated.
check this page for the low down

http://entkb.symantec.com/security/o...108192148.html
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

 
Old 07-23-2007, 07:10 PM
  #2 (permalink)  
Old 07-23-2007, 07:40 PM
steve7132@yahoo.com
Newsgroup Contributor
 
Posts: n/a
RE: How do i remove symantec live update?

Check this, I did a google search of "remove symantec live update" without
the quotes, brought me here to this

http://ict.cas.psu.edu/training/howt.../removenav.htm

"Dave Candi" wrote:

> I want to remove this program but cannot find the uninstall and its not
> listed in the list? I tried to remove the directorys manually but it wouldn't
> let me? Is this anti virus software? What is it? I already have live one
> care. I have reason to believe this software is preventing me from running
> chkdsk and defrag. Any help much appreciated.
> check this page for the low down
>
> http://entkb.symantec.com/security/o...108192148.html

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #3 (permalink)  
Old 07-23-2007, 07:50 PM
JS
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

If you just want to stop Live update run the script below each time you boot
your PC
Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
Place a shortcut on your desktop

' Begin script
' Stop LiveUpdate Service.vbs
' Example VBScript to Stop Services
' Author Guy Thomas http://computerperformance.co.uk/
' Version 1.3 - March 20th 2005
' Modified for stop LiveUpdate service by JS
' -----------------------------------------------------------------'
Option Explicit
Dim objShell, intShortSleep, intLongSleep
Dim strService
Set objShell = CreateObject("WScript.Shell")

' Values set

strService = " "" Automatic LiveUpdate Scheduler"" "
intShortSleep = 1500
intLongSleep = 5500

' Cmd prompt opened
objShell.Run "cmd"
Wscript.Sleep intShortSleep

' Service stopped with 'Net' command
objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"
Wscript.Sleep intLongSleep

' Cmd prompt exited
objShell.SendKeys "Exit"
Wscript.Sleep intShortSleep
objShell.SendKeys "{Enter}"

Wscript.Echo strService & " service stopped "
WScript.Quit

' End of Example VBScript

JS

"Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>I want to remove this program but cannot find the uninstall and its not
> listed in the list? I tried to remove the directorys manually but it
> wouldn't
> let me? Is this anti virus software? What is it? I already have live one
> care. I have reason to believe this software is preventing me from running
> chkdsk and defrag. Any help much appreciated.
> check this page for the low down
>
> http://entkb.symantec.com/security/o...108192148.html



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #4 (permalink)  
Old 07-23-2007, 08:30 PM
Dave Candi
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

cheers guys it was listed as live update and not symantec. Duh! Hopefully
this will solve my problem. Will let you know. Dave

"JS" wrote:

> If you just want to stop Live update run the script below each time you boot
> your PC
> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
> Place a shortcut on your desktop
>
> ' Begin script
> ' Stop LiveUpdate Service.vbs
> ' Example VBScript to Stop Services
> ' Author Guy Thomas http://computerperformance.co.uk/
> ' Version 1.3 - March 20th 2005
> ' Modified for stop LiveUpdate service by JS
> ' -----------------------------------------------------------------'
> Option Explicit
> Dim objShell, intShortSleep, intLongSleep
> Dim strService
> Set objShell = CreateObject("WScript.Shell")
>
> ' Values set
>
> strService = " "" Automatic LiveUpdate Scheduler"" "
> intShortSleep = 1500
> intLongSleep = 5500
>
> ' Cmd prompt opened
> objShell.Run "cmd"
> Wscript.Sleep intShortSleep
>
> ' Service stopped with 'Net' command
> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
> Wscript.Sleep intShortSleep
> objShell.SendKeys "{Enter}"
> Wscript.Sleep intLongSleep
>
> ' Cmd prompt exited
> objShell.SendKeys "Exit"
> Wscript.Sleep intShortSleep
> objShell.SendKeys "{Enter}"
>
> Wscript.Echo strService & " service stopped "
> WScript.Quit
>
> ' End of Example VBScript
>
> JS
>
> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
> >I want to remove this program but cannot find the uninstall and its not
> > listed in the list? I tried to remove the directorys manually but it
> > wouldn't
> > let me? Is this anti virus software? What is it? I already have live one
> > care. I have reason to believe this software is preventing me from running
> > chkdsk and defrag. Any help much appreciated.
> > check this page for the low down
> >
> > http://entkb.symantec.com/security/o...108192148.html

>
>
>

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #5 (permalink)  
Old 07-23-2007, 11:00 PM
Allan
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?


"JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
> If you just want to stop Live update run the script below each time you
> boot your PC
> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
> Place a shortcut on your desktop
>
> ' Begin script
> ' Stop LiveUpdate Service.vbs
> ' Example VBScript to Stop Services
> ' Author Guy Thomas http://computerperformance.co.uk/
> ' Version 1.3 - March 20th 2005
> ' Modified for stop LiveUpdate service by JS
> ' -----------------------------------------------------------------'
> Option Explicit
> Dim objShell, intShortSleep, intLongSleep
> Dim strService
> Set objShell = CreateObject("WScript.Shell")
>
> ' Values set
>
> strService = " "" Automatic LiveUpdate Scheduler"" "
> intShortSleep = 1500
> intLongSleep = 5500
>
> ' Cmd prompt opened
> objShell.Run "cmd"
> Wscript.Sleep intShortSleep
>
> ' Service stopped with 'Net' command
> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
> Wscript.Sleep intShortSleep
> objShell.SendKeys "{Enter}"
> Wscript.Sleep intLongSleep
>
> ' Cmd prompt exited
> objShell.SendKeys "Exit"
> Wscript.Sleep intShortSleep
> objShell.SendKeys "{Enter}"
>
> Wscript.Echo strService & " service stopped "
> WScript.Quit
>
> ' End of Example VBScript
>
> JS
>
> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>I want to remove this program but cannot find the uninstall and its not
>> listed in the list? I tried to remove the directorys manually but it
>> wouldn't
>> let me? Is this anti virus software? What is it? I already have live one
>> care. I have reason to believe this software is preventing me from
>> running
>> chkdsk and defrag. Any help much appreciated.
>> check this page for the low down
>>
>> http://entkb.symantec.com/security/o...108192148.html

>
>

Thanks for sharing that script with us; I just tried it but Norton AV script
blocking issued a warning and I allowed it. Too bad there is no way to
disable the service from starting automatically at bootup, short of
uninstalling LU completely. I tried disabling the service previously to no
avail.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #6 (permalink)  
Old 07-24-2007, 12:50 AM
Brian A.
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

"Allan" <mu8ja0i@earthlink.net> wrote in message
news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>
> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>> If you just want to stop Live update run the script below each time you boot your
>> PC
>> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
>> Place a shortcut on your desktop
>>
>> ' Begin script
>> ' Stop LiveUpdate Service.vbs
>> ' Example VBScript to Stop Services
>> ' Author Guy Thomas http://computerperformance.co.uk/
>> ' Version 1.3 - March 20th 2005
>> ' Modified for stop LiveUpdate service by JS
>> ' -----------------------------------------------------------------'
>> Option Explicit
>> Dim objShell, intShortSleep, intLongSleep
>> Dim strService
>> Set objShell = CreateObject("WScript.Shell")
>>
>> ' Values set
>>
>> strService = " "" Automatic LiveUpdate Scheduler"" "
>> intShortSleep = 1500
>> intLongSleep = 5500
>>
>> ' Cmd prompt opened
>> objShell.Run "cmd"
>> Wscript.Sleep intShortSleep
>>
>> ' Service stopped with 'Net' command
>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>> Wscript.Sleep intShortSleep
>> objShell.SendKeys "{Enter}"
>> Wscript.Sleep intLongSleep
>>
>> ' Cmd prompt exited
>> objShell.SendKeys "Exit"
>> Wscript.Sleep intShortSleep
>> objShell.SendKeys "{Enter}"
>>
>> Wscript.Echo strService & " service stopped "
>> WScript.Quit
>>
>> ' End of Example VBScript
>>
>> JS
>>
>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>I want to remove this program but cannot find the uninstall and its not
>>> listed in the list? I tried to remove the directorys manually but it wouldn't
>>> let me? Is this anti virus software? What is it? I already have live one
>>> care. I have reason to believe this software is preventing me from running
>>> chkdsk and defrag. Any help much appreciated.
>>> check this page for the low down
>>>
>>> http://entkb.symantec.com/security/o...108192148.html

>>
>>

> Thanks for sharing that script with us; I just tried it but Norton AV script
> blocking issued a warning and I allowed it. Too bad there is no way to disable the
> service from starting automatically at bootup, short of uninstalling LU completely.
> I tried disabling the service previously to no avail.


Which Symantec app/version do you have installed? You should be able to disable
automatic live update in any version.
If you have issues with it try setting these in Services to Manual:

Automatic LiveUpdate Scheduler
LiveUpdate
LiveUpdate Notice Service
LiveUpdate Notice Service Ex

--

Brian A. Sesko { MS MVP_Shell/User }
Conflicts start where information lacks.
http://basconotw.mvps.org/

Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
How to ask a question: http://support.microsoft.com/kb/555375


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #7 (permalink)  
Old 07-24-2007, 08:00 AM
JS
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

I just use the script to kill this particular service after I download the
updates each day. Once the service is stopped I no longer get those ugly
slow downs as Live Update (if not stopped) periodically keeps checking for
more updates throughout the day.

JS

"Brian A." <gonefish'n@afarawaylake> wrote in message
news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
> "Allan" <mu8ja0i@earthlink.net> wrote in message
> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>
>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>> If you just want to stop Live update run the script below each time you
>>> boot your PC
>>> Cut and past to notepad and save the file as 'Stop LiveUpdate
>>> Service.vbs'
>>> Place a shortcut on your desktop
>>>
>>> ' Begin script
>>> ' Stop LiveUpdate Service.vbs
>>> ' Example VBScript to Stop Services
>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>> ' Version 1.3 - March 20th 2005
>>> ' Modified for stop LiveUpdate service by JS
>>> ' -----------------------------------------------------------------'
>>> Option Explicit
>>> Dim objShell, intShortSleep, intLongSleep
>>> Dim strService
>>> Set objShell = CreateObject("WScript.Shell")
>>>
>>> ' Values set
>>>
>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>> intShortSleep = 1500
>>> intLongSleep = 5500
>>>
>>> ' Cmd prompt opened
>>> objShell.Run "cmd"
>>> Wscript.Sleep intShortSleep
>>>
>>> ' Service stopped with 'Net' command
>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>> Wscript.Sleep intShortSleep
>>> objShell.SendKeys "{Enter}"
>>> Wscript.Sleep intLongSleep
>>>
>>> ' Cmd prompt exited
>>> objShell.SendKeys "Exit"
>>> Wscript.Sleep intShortSleep
>>> objShell.SendKeys "{Enter}"
>>>
>>> Wscript.Echo strService & " service stopped "
>>> WScript.Quit
>>>
>>> ' End of Example VBScript
>>>
>>> JS
>>>
>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>I want to remove this program but cannot find the uninstall and its not
>>>> listed in the list? I tried to remove the directorys manually but it
>>>> wouldn't
>>>> let me? Is this anti virus software? What is it? I already have live
>>>> one
>>>> care. I have reason to believe this software is preventing me from
>>>> running
>>>> chkdsk and defrag. Any help much appreciated.
>>>> check this page for the low down
>>>>
>>>> http://entkb.symantec.com/security/o...108192148.html
>>>
>>>

>> Thanks for sharing that script with us; I just tried it but Norton AV
>> script blocking issued a warning and I allowed it. Too bad there is no
>> way to disable the service from starting automatically at bootup, short
>> of uninstalling LU completely. I tried disabling the service previously
>> to no avail.

>
> Which Symantec app/version do you have installed? You should be able to
> disable automatic live update in any version.
> If you have issues with it try setting these in Services to Manual:
>
> Automatic LiveUpdate Scheduler
> LiveUpdate
> LiveUpdate Notice Service
> LiveUpdate Notice Service Ex
>
> --
>
> Brian A. Sesko { MS MVP_Shell/User }
> Conflicts start where information lacks.
> http://basconotw.mvps.org/
>
> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
> How to ask a question: http://support.microsoft.com/kb/555375
>
>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #8 (permalink)  
Old 07-24-2007, 10:10 AM
Brian A.
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

Automatic LiveUpdate runs at first connection to the web.
If updates are available it downloads/installs them.
It checks every 5 minutes as long as updates remain available to download/install.
If no updates are available it resets to the default check of every 4 hrs (240 mins).
The time frequency to check is user configurable (at least for 2007) via Control
Panel > Symantec LiveUpdate > Automatic LiveUpdate tab > Update Frequency.
I have set mine to check every 12 hrs (720 mins).

Take note that after changing the update frequency it does not go into effect until
either the next live update runs or the Automatic LiveUpdate services is stopped and
restarted.

--

Brian A. Sesko { MS MVP_Shell/User }
Conflicts start where information lacks.
http://basconotw.mvps.org/

Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
How to ask a question: http://support.microsoft.com/kb/555375


"JS" <@> wrote in message news:Ov9FHHgzHHA.2312@TK2MSFTNGP05.phx.gbl...
>I just use the script to kill this particular service after I download the updates
>each day. Once the service is stopped I no longer get those ugly slow downs as Live
>Update (if not stopped) periodically keeps checking for more updates throughout the
>day.
>
> JS
>
> "Brian A." <gonefish'n@afarawaylake> wrote in message
> news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>>
>>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>>> If you just want to stop Live update run the script below each time you boot
>>>> your PC
>>>> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
>>>> Place a shortcut on your desktop
>>>>
>>>> ' Begin script
>>>> ' Stop LiveUpdate Service.vbs
>>>> ' Example VBScript to Stop Services
>>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>>> ' Version 1.3 - March 20th 2005
>>>> ' Modified for stop LiveUpdate service by JS
>>>> ' -----------------------------------------------------------------'
>>>> Option Explicit
>>>> Dim objShell, intShortSleep, intLongSleep
>>>> Dim strService
>>>> Set objShell = CreateObject("WScript.Shell")
>>>>
>>>> ' Values set
>>>>
>>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>>> intShortSleep = 1500
>>>> intLongSleep = 5500
>>>>
>>>> ' Cmd prompt opened
>>>> objShell.Run "cmd"
>>>> Wscript.Sleep intShortSleep
>>>>
>>>> ' Service stopped with 'Net' command
>>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>>> Wscript.Sleep intShortSleep
>>>> objShell.SendKeys "{Enter}"
>>>> Wscript.Sleep intLongSleep
>>>>
>>>> ' Cmd prompt exited
>>>> objShell.SendKeys "Exit"
>>>> Wscript.Sleep intShortSleep
>>>> objShell.SendKeys "{Enter}"
>>>>
>>>> Wscript.Echo strService & " service stopped "
>>>> WScript.Quit
>>>>
>>>> ' End of Example VBScript
>>>>
>>>> JS
>>>>
>>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>>I want to remove this program but cannot find the uninstall and its not
>>>>> listed in the list? I tried to remove the directorys manually but it wouldn't
>>>>> let me? Is this anti virus software? What is it? I already have live one
>>>>> care. I have reason to believe this software is preventing me from running
>>>>> chkdsk and defrag. Any help much appreciated.
>>>>> check this page for the low down
>>>>>
>>>>> http://entkb.symantec.com/security/o...108192148.html
>>>>
>>>>
>>> Thanks for sharing that script with us; I just tried it but Norton AV script
>>> blocking issued a warning and I allowed it. Too bad there is no way to disable
>>> the service from starting automatically at bootup, short of uninstalling LU
>>> completely. I tried disabling the service previously to no avail.

>>
>> Which Symantec app/version do you have installed? You should be able to disable
>> automatic live update in any version.
>> If you have issues with it try setting these in Services to Manual:
>>
>> Automatic LiveUpdate Scheduler
>> LiveUpdate
>> LiveUpdate Notice Service
>> LiveUpdate Notice Service Ex
>>
>> --
>>
>> Brian A. Sesko { MS MVP_Shell/User }
>> Conflicts start where information lacks.
>> http://basconotw.mvps.org/
>>
>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>> How to ask a question: http://support.microsoft.com/kb/555375
>>
>>

>
>


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #9 (permalink)  
Old 07-24-2007, 11:00 AM
JS
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

Wish that was the case with my PC, but even if all updates have been
downloaded it still goes out and checks for updates at random times (240 is
my default also) during the day.

JS

"Brian A." <gonefish'n@afarawaylake> wrote in message
news:e0CO7ShzHHA.3448@TK2MSFTNGP03.phx.gbl...
> Automatic LiveUpdate runs at first connection to the web.
> If updates are available it downloads/installs them.
> It checks every 5 minutes as long as updates remain available to
> download/install.
> If no updates are available it resets to the default check of every 4 hrs
> (240 mins).
> The time frequency to check is user configurable (at least for 2007) via
> Control Panel > Symantec LiveUpdate > Automatic LiveUpdate tab > Update
> Frequency.
> I have set mine to check every 12 hrs (720 mins).
>
> Take note that after changing the update frequency it does not go into
> effect until either the next live update runs or the Automatic LiveUpdate
> services is stopped and restarted.
>
> --
>
> Brian A. Sesko { MS MVP_Shell/User }
> Conflicts start where information lacks.
> http://basconotw.mvps.org/
>
> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
> How to ask a question: http://support.microsoft.com/kb/555375
>
>
> "JS" <@> wrote in message news:Ov9FHHgzHHA.2312@TK2MSFTNGP05.phx.gbl...
>>I just use the script to kill this particular service after I download the
>>updates each day. Once the service is stopped I no longer get those ugly
>>slow downs as Live Update (if not stopped) periodically keeps checking for
>>more updates throughout the day.
>>
>> JS
>>
>> "Brian A." <gonefish'n@afarawaylake> wrote in message
>> news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
>>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>>> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>>>
>>>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>>>> If you just want to stop Live update run the script below each time
>>>>> you boot your PC
>>>>> Cut and past to notepad and save the file as 'Stop LiveUpdate
>>>>> Service.vbs'
>>>>> Place a shortcut on your desktop
>>>>>
>>>>> ' Begin script
>>>>> ' Stop LiveUpdate Service.vbs
>>>>> ' Example VBScript to Stop Services
>>>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>>>> ' Version 1.3 - March 20th 2005
>>>>> ' Modified for stop LiveUpdate service by JS
>>>>> ' -----------------------------------------------------------------'
>>>>> Option Explicit
>>>>> Dim objShell, intShortSleep, intLongSleep
>>>>> Dim strService
>>>>> Set objShell = CreateObject("WScript.Shell")
>>>>>
>>>>> ' Values set
>>>>>
>>>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>>>> intShortSleep = 1500
>>>>> intLongSleep = 5500
>>>>>
>>>>> ' Cmd prompt opened
>>>>> objShell.Run "cmd"
>>>>> Wscript.Sleep intShortSleep
>>>>>
>>>>> ' Service stopped with 'Net' command
>>>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>>>> Wscript.Sleep intShortSleep
>>>>> objShell.SendKeys "{Enter}"
>>>>> Wscript.Sleep intLongSleep
>>>>>
>>>>> ' Cmd prompt exited
>>>>> objShell.SendKeys "Exit"
>>>>> Wscript.Sleep intShortSleep
>>>>> objShell.SendKeys "{Enter}"
>>>>>
>>>>> Wscript.Echo strService & " service stopped "
>>>>> WScript.Quit
>>>>>
>>>>> ' End of Example VBScript
>>>>>
>>>>> JS
>>>>>
>>>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>>>I want to remove this program but cannot find the uninstall and its
>>>>>>not
>>>>>> listed in the list? I tried to remove the directorys manually but it
>>>>>> wouldn't
>>>>>> let me? Is this anti virus software? What is it? I already have live
>>>>>> one
>>>>>> care. I have reason to believe this software is preventing me from
>>>>>> running
>>>>>> chkdsk and defrag. Any help much appreciated.
>>>>>> check this page for the low down
>>>>>>
>>>>>> http://entkb.symantec.com/security/o...108192148.html
>>>>>
>>>>>
>>>> Thanks for sharing that script with us; I just tried it but Norton AV
>>>> script blocking issued a warning and I allowed it. Too bad there is no
>>>> way to disable the service from starting automatically at bootup, short
>>>> of uninstalling LU completely. I tried disabling the service previously
>>>> to no avail.
>>>
>>> Which Symantec app/version do you have installed? You should be able to
>>> disable automatic live update in any version.
>>> If you have issues with it try setting these in Services to Manual:
>>>
>>> Automatic LiveUpdate Scheduler
>>> LiveUpdate
>>> LiveUpdate Notice Service
>>> LiveUpdate Notice Service Ex
>>>
>>> --
>>>
>>> Brian A. Sesko { MS MVP_Shell/User }
>>> Conflicts start where information lacks.
>>> http://basconotw.mvps.org/
>>>
>>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>>> How to ask a question: http://support.microsoft.com/kb/555375
>>>
>>>

>>
>>

>



Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #10 (permalink)  
Old 07-24-2007, 05:11 PM
Plato
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

=?Utf-8?B?RGF2ZSBDYW5kaQ==?= wrote:
>
> I want to remove this program but cannot find the uninstall and its not


Symantec removal tools:

http://www.bootdisk.com/helpdesk.htm
MORE UTILITIES

--
http://www.bootdisk.com/


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #11 (permalink)  
Old 07-24-2007, 08:10 PM
Allan
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?


"Brian A." <gonefish'n@afarawaylake> wrote in message
news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
> "Allan" <mu8ja0i@earthlink.net> wrote in message
> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>
>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>> If you just want to stop Live update run the script below each time you
>>> boot your PC
>>> Cut and past to notepad and save the file as 'Stop LiveUpdate
>>> Service.vbs'
>>> Place a shortcut on your desktop
>>>
>>> ' Begin script
>>> ' Stop LiveUpdate Service.vbs
>>> ' Example VBScript to Stop Services
>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>> ' Version 1.3 - March 20th 2005
>>> ' Modified for stop LiveUpdate service by JS
>>> ' -----------------------------------------------------------------'
>>> Option Explicit
>>> Dim objShell, intShortSleep, intLongSleep
>>> Dim strService
>>> Set objShell = CreateObject("WScript.Shell")
>>>
>>> ' Values set
>>>
>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>> intShortSleep = 1500
>>> intLongSleep = 5500
>>>
>>> ' Cmd prompt opened
>>> objShell.Run "cmd"
>>> Wscript.Sleep intShortSleep
>>>
>>> ' Service stopped with 'Net' command
>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>> Wscript.Sleep intShortSleep
>>> objShell.SendKeys "{Enter}"
>>> Wscript.Sleep intLongSleep
>>>
>>> ' Cmd prompt exited
>>> objShell.SendKeys "Exit"
>>> Wscript.Sleep intShortSleep
>>> objShell.SendKeys "{Enter}"
>>>
>>> Wscript.Echo strService & " service stopped "
>>> WScript.Quit
>>>
>>> ' End of Example VBScript
>>>
>>> JS
>>>
>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>I want to remove this program but cannot find the uninstall and its not
>>>> listed in the list? I tried to remove the directorys manually but it
>>>> wouldn't
>>>> let me? Is this anti virus software? What is it? I already have live
>>>> one
>>>> care. I have reason to believe this software is preventing me from
>>>> running
>>>> chkdsk and defrag. Any help much appreciated.
>>>> check this page for the low down
>>>>
>>>> http://entkb.symantec.com/security/o...108192148.html
>>>
>>>

>> Thanks for sharing that script with us; I just tried it but Norton AV
>> script blocking issued a warning and I allowed it. Too bad there is no
>> way to disable the service from starting automatically at bootup, short
>> of uninstalling LU completely. I tried disabling the service previously
>> to no avail.

>
> Which Symantec app/version do you have installed? You should be able to
> disable automatic live update in any version.
> If you have issues with it try setting these in Services to Manual:
>
> Automatic LiveUpdate Scheduler
> LiveUpdate
> LiveUpdate Notice Service
> LiveUpdate Notice Service Ex
>
> --
>
> Brian A. Sesko { MS MVP_Shell/User }
> Conflicts start where information lacks.
> http://basconotw.mvps.org/
>
> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
> How to ask a question: http://support.microsoft.com/kb/555375
>
>

Thanks, I have Auto update checking disabled it in the Control Panel
LiveUpdate applet. I am running LiveUpdate 3.0 and NIS 2004 (with update
subscriptions expired two years ago.) I run it manually once a week. I will
try again in "Services"; I don't think I changed "LiveUpdate" last time I
tried, only "Automatic LiveUpdate Scheduler".

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #12 (permalink)  
Old 07-24-2007, 09:30 PM
Brian A.
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

"Allan" <mu8ja0i@earthlink.net> wrote in message
news:OzuSHkmzHHA.2484@TK2MSFTNGP06.phx.gbl...
>
> "Brian A." <gonefish'n@afarawaylake> wrote in message
> news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>>
>>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>>> If you just want to stop Live update run the script below each time you boot
>>>> your PC
>>>> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
>>>> Place a shortcut on your desktop
>>>>
>>>> ' Begin script
>>>> ' Stop LiveUpdate Service.vbs
>>>> ' Example VBScript to Stop Services
>>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>>> ' Version 1.3 - March 20th 2005
>>>> ' Modified for stop LiveUpdate service by JS
>>>> ' -----------------------------------------------------------------'
>>>> Option Explicit
>>>> Dim objShell, intShortSleep, intLongSleep
>>>> Dim strService
>>>> Set objShell = CreateObject("WScript.Shell")
>>>>
>>>> ' Values set
>>>>
>>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>>> intShortSleep = 1500
>>>> intLongSleep = 5500
>>>>
>>>> ' Cmd prompt opened
>>>> objShell.Run "cmd"
>>>> Wscript.Sleep intShortSleep
>>>>
>>>> ' Service stopped with 'Net' command
>>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>>> Wscript.Sleep intShortSleep
>>>> objShell.SendKeys "{Enter}"
>>>> Wscript.Sleep intLongSleep
>>>>
>>>> ' Cmd prompt exited
>>>> objShell.SendKeys "Exit"
>>>> Wscript.Sleep intShortSleep
>>>> objShell.SendKeys "{Enter}"
>>>>
>>>> Wscript.Echo strService & " service stopped "
>>>> WScript.Quit
>>>>
>>>> ' End of Example VBScript
>>>>
>>>> JS
>>>>
>>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>>I want to remove this program but cannot find the uninstall and its not
>>>>> listed in the list? I tried to remove the directorys manually but it wouldn't
>>>>> let me? Is this anti virus software? What is it? I already have live one
>>>>> care. I have reason to believe this software is preventing me from running
>>>>> chkdsk and defrag. Any help much appreciated.
>>>>> check this page for the low down
>>>>>
>>>>> http://entkb.symantec.com/security/o...108192148.html
>>>>
>>>>
>>> Thanks for sharing that script with us; I just tried it but Norton AV script
>>> blocking issued a warning and I allowed it. Too bad there is no way to disable
>>> the service from starting automatically at bootup, short of uninstalling LU
>>> completely. I tried disabling the service previously to no avail.

>>
>> Which Symantec app/version do you have installed? You should be able to disable
>> automatic live update in any version.
>> If you have issues with it try setting these in Services to Manual:
>>
>> Automatic LiveUpdate Scheduler
>> LiveUpdate
>> LiveUpdate Notice Service
>> LiveUpdate Notice Service Ex
>>
>> --
>>
>> Brian A. Sesko { MS MVP_Shell/User }
>> Conflicts start where information lacks.
>> http://basconotw.mvps.org/
>>
>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>> How to ask a question: http://support.microsoft.com/kb/555375
>>
>>

> Thanks, I have Auto update checking disabled it in the Control Panel LiveUpdate
> applet. I am running LiveUpdate 3.0 and NIS 2004 (with update subscriptions expired
> two years ago.) I run it manually once a week. I will try again in "Services"; I
> don't think I changed "LiveUpdate" last time I tried, only "Automatic LiveUpdate
> Scheduler".


ALU is responsible for Ndetect.exe at boot, which it schedules to check for a net
connection every 5 mins. If one is present it attempts to connect to Symantec's
LiveUpdate server to download/install available updates. If no updates aren't
available it sends a command to Ndetect.exe to not check for 4 hrs., however there is
an issue if any third party dial-up connection managers that can change the detection
frequency.

For info see:
Modem dials every five minutes when Automatic LiveUpdate is enabled
http://service1.symantec.com/SUPPORT...hm&lg=en&ct=us

For more on Ndetect and ALU see:
http://searchg.symantec.com/search?q...ang_en&numgm=0

or if link wraps/breaks: http://tinyurl.com/ysj4x6

Did you originally attempt to disable ALU via start/run NIS > Options > NAV or NIS
> LiveUpdate tab > uncheck "Turn automatic Live Update on" > Ok out?


--

Brian A. Sesko { MS MVP_Shell/User }
Conflicts start where information lacks.
http://basconotw.mvps.org/

Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
How to ask a question: http://support.microsoft.com/kb/555375


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #13 (permalink)  
Old 07-25-2007, 06:25 PM
Allan
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?


"Brian A." <gonefish'n@afarawaylake> wrote in message
news:OfK2QOnzHHA.3600@TK2MSFTNGP04.phx.gbl...
> "Allan" <mu8ja0i@earthlink.net> wrote in message
> news:OzuSHkmzHHA.2484@TK2MSFTNGP06.phx.gbl...
>>
>> "Brian A." <gonefish'n@afarawaylake> wrote in message
>> news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
>>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>>> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>>>
>>>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>>>> If you just want to stop Live update run the script below each time
>>>>> you boot your PC
>>>>> Cut and past to notepad and save the file as 'Stop LiveUpdate
>>>>> Service.vbs'
>>>>> Place a shortcut on your desktop
>>>>>
>>>>> ' Begin script
>>>>> ' Stop LiveUpdate Service.vbs
>>>>> ' Example VBScript to Stop Services
>>>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>>>> ' Version 1.3 - March 20th 2005
>>>>> ' Modified for stop LiveUpdate service by JS
>>>>> ' -----------------------------------------------------------------'
>>>>> Option Explicit
>>>>> Dim objShell, intShortSleep, intLongSleep
>>>>> Dim strService
>>>>> Set objShell = CreateObject("WScript.Shell")
>>>>>
>>>>> ' Values set
>>>>>
>>>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>>>> intShortSleep = 1500
>>>>> intLongSleep = 5500
>>>>>
>>>>> ' Cmd prompt opened
>>>>> objShell.Run "cmd"
>>>>> Wscript.Sleep intShortSleep
>>>>>
>>>>> ' Service stopped with 'Net' command
>>>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>>>> Wscript.Sleep intShortSleep
>>>>> objShell.SendKeys "{Enter}"
>>>>> Wscript.Sleep intLongSleep
>>>>>
>>>>> ' Cmd prompt exited
>>>>> objShell.SendKeys "Exit"
>>>>> Wscript.Sleep intShortSleep
>>>>> objShell.SendKeys "{Enter}"
>>>>>
>>>>> Wscript.Echo strService & " service stopped "
>>>>> WScript.Quit
>>>>>
>>>>> ' End of Example VBScript
>>>>>
>>>>> JS
>>>>>
>>>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>>>I want to remove this program but cannot find the uninstall and its
>>>>>>not
>>>>>> listed in the list? I tried to remove the directorys manually but it
>>>>>> wouldn't
>>>>>> let me? Is this anti virus software? What is it? I already have live
>>>>>> one
>>>>>> care. I have reason to believe this software is preventing me from
>>>>>> running
>>>>>> chkdsk and defrag. Any help much appreciated.
>>>>>> check this page for the low down
>>>>>>
>>>>>> http://entkb.symantec.com/security/o...108192148.html
>>>>>
>>>>>
>>>> Thanks for sharing that script with us; I just tried it but Norton AV
>>>> script blocking issued a warning and I allowed it. Too bad there is no
>>>> way to disable the service from starting automatically at bootup, short
>>>> of uninstalling LU completely. I tried disabling the service previously
>>>> to no avail.
>>>
>>> Which Symantec app/version do you have installed? You should be able to
>>> disable automatic live update in any version.
>>> If you have issues with it try setting these in Services to Manual:
>>>
>>> Automatic LiveUpdate Scheduler
>>> LiveUpdate
>>> LiveUpdate Notice Service
>>> LiveUpdate Notice Service Ex
>>>
>>> --
>>>
>>> Brian A. Sesko { MS MVP_Shell/User }
>>> Conflicts start where information lacks.
>>> http://basconotw.mvps.org/
>>>
>>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>>> How to ask a question: http://support.microsoft.com/kb/555375
>>>
>>>

>> Thanks, I have Auto update checking disabled it in the Control Panel
>> LiveUpdate applet. I am running LiveUpdate 3.0 and NIS 2004 (with update
>> subscriptions expired two years ago.) I run it manually once a week. I
>> will try again in "Services"; I don't think I changed "LiveUpdate" last
>> time I tried, only "Automatic LiveUpdate Scheduler".

>
> ALU is responsible for Ndetect.exe at boot, which it schedules to check
> for a net connection every 5 mins. If one is present it attempts to
> connect to Symantec's LiveUpdate server to download/install available
> updates. If no updates aren't available it sends a command to Ndetect.exe
> to not check for 4 hrs., however there is an issue if any third party
> dial-up connection managers that can change the detection frequency.
>
> For info see:
> Modem dials every five minutes when Automatic LiveUpdate is enabled
> http://service1.symantec.com/SUPPORT...hm&lg=en&ct=us
>
> For more on Ndetect and ALU see:
> http://searchg.symantec.com/search?q...ang_en&numgm=0
>
> or if link wraps/breaks: http://tinyurl.com/ysj4x6
>
> Did you originally attempt to disable ALU via start/run NIS > Options >
> NAV or NIS
> > LiveUpdate tab > uncheck "Turn automatic Live Update on" > Ok out?

>
> --
>
> Brian A. Sesko { MS MVP_Shell/User }
> Conflicts start where information lacks.
> http://basconotw.mvps.org/
>
> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
> How to ask a question: http://support.microsoft.com/kb/555375
>
>

In NIS 2004 there is no option when you run "LiveUpdate" to disable
Automatic Live Update; you must disable it in the "Options" section. It is
not checking for updates automatically but the Auto LiveUpdate Scheduler
service is running continuously anyway. I checked and I already had set Live
Update service to "manual"; whether you set Auto LiveUpdate Scheduler to
"manual" or "disable" it makes no difference; it resets to "automatic" upon
reboot after logon. I really am not worried about it unlike the OP who
apparently was annoyed by it.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

  #14 (permalink)  
Old 07-25-2007, 06:25 PM
Brian A.
Newsgroup Contributor
 
Posts: n/a
Re: How do i remove symantec live update?

"Allan" <mu8ja0i@earthlink.net> wrote in message
news:eqG2QjxzHHA.2484@TK2MSFTNGP06.phx.gbl...
>
> "Brian A." <gonefish'n@afarawaylake> wrote in message
> news:OfK2QOnzHHA.3600@TK2MSFTNGP04.phx.gbl...
>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>> news:OzuSHkmzHHA.2484@TK2MSFTNGP06.phx.gbl...
>>>
>>> "Brian A." <gonefish'n@afarawaylake> wrote in message
>>> news:uHpaZbczHHA.748@TK2MSFTNGP04.phx.gbl...
>>>> "Allan" <mu8ja0i@earthlink.net> wrote in message
>>>> news:uEqmsbbzHHA.5992@TK2MSFTNGP02.phx.gbl...
>>>>>
>>>>> "JS" <@> wrote in message news:OiIyUwZzHHA.1204@TK2MSFTNGP03.phx.gbl...
>>>>>> If you just want to stop Live update run the script below each time you boot
>>>>>> your PC
>>>>>> Cut and past to notepad and save the file as 'Stop LiveUpdate Service.vbs'
>>>>>> Place a shortcut on your desktop
>>>>>>
>>>>>> ' Begin script
>>>>>> ' Stop LiveUpdate Service.vbs
>>>>>> ' Example VBScript to Stop Services
>>>>>> ' Author Guy Thomas http://computerperformance.co.uk/
>>>>>> ' Version 1.3 - March 20th 2005
>>>>>> ' Modified for stop LiveUpdate service by JS
>>>>>> ' -----------------------------------------------------------------'
>>>>>> Option Explicit
>>>>>> Dim objShell, intShortSleep, intLongSleep
>>>>>> Dim strService
>>>>>> Set objShell = CreateObject("WScript.Shell")
>>>>>>
>>>>>> ' Values set
>>>>>>
>>>>>> strService = " "" Automatic LiveUpdate Scheduler"" "
>>>>>> intShortSleep = 1500
>>>>>> intLongSleep = 5500
>>>>>>
>>>>>> ' Cmd prompt opened
>>>>>> objShell.Run "cmd"
>>>>>> Wscript.Sleep intShortSleep
>>>>>>
>>>>>> ' Service stopped with 'Net' command
>>>>>> objShell.SendKeys "net stop" & " ""Automatic LiveUpdate Scheduler"" "
>>>>>> Wscript.Sleep intShortSleep
>>>>>> objShell.SendKeys "{Enter}"
>>>>>> Wscript.Sleep intLongSleep
>>>>>>
>>>>>> ' Cmd prompt exited
>>>>>> objShell.SendKeys "Exit"
>>>>>> Wscript.Sleep intShortSleep
>>>>>> objShell.SendKeys "{Enter}"
>>>>>>
>>>>>> Wscript.Echo strService & " service stopped "
>>>>>> WScript.Quit
>>>>>>
>>>>>> ' End of Example VBScript
>>>>>>
>>>>>> JS
>>>>>>
>>>>>> "Dave Candi" <DaveCandi@discussions.microsoft.com> wrote in message
>>>>>> news:A079B011-1786-486D-9AD5-752A8A8965B5@microsoft.com...
>>>>>>>I want to remove this program but cannot find the uninstall and its not
>>>>>>> listed in the list? I tried to remove the directorys manually but it wouldn't
>>>>>>> let me? Is this anti virus software? What is it? I already have live one
>>>>>>> care. I have reason to believe this software is preventing me from running
>>>>>>> chkdsk and defrag. Any help much appreciated.
>>>>>>> check this page for the low down
>>>>>>>
>>>>>>> http://entkb.symantec.com/security/o...108192148.html
>>>>>>
>>>>>>
>>>>> Thanks for sharing that script with us; I just tried it but Norton AV script
>>>>> blocking issued a warning and I allowed it. Too bad there is no way to disable
>>>>> the service from starting automatically at bootup, short of uninstalling LU
>>>>> completely. I tried disabling the service previously to no avail.
>>>>
>>>> Which Symantec app/version do you have installed? You should be able to disable
>>>> automatic live update in any version.
>>>> If you have issues with it try setting these in Services to Manual:
>>>>
>>>> Automatic LiveUpdate Scheduler
>>>> LiveUpdate
>>>> LiveUpdate Notice Service
>>>> LiveUpdate Notice Service Ex
>>>>
>>>> --
>>>>
>>>> Brian A. Sesko { MS MVP_Shell/User }
>>>> Conflicts start where information lacks.
>>>> http://basconotw.mvps.org/
>>>>
>>>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>>>> How to ask a question: http://support.microsoft.com/kb/555375
>>>>
>>>>
>>> Thanks, I have Auto update checking disabled it in the Control Panel LiveUpdate
>>> applet. I am running LiveUpdate 3.0 and NIS 2004 (with update subscriptions
>>> expired two years ago.) I run it manually once a week. I will try again in
>>> "Services"; I don't think I changed "LiveUpdate" last time I tried, only
>>> "Automatic LiveUpdate Scheduler".

>>
>> ALU is responsible for Ndetect.exe at boot, which it schedules to check for a net
>> connection every 5 mins. If one is present it attempts to connect to Symantec's
>> LiveUpdate server to download/install available updates. If no updates aren't
>> available it sends a command to Ndetect.exe to not check for 4 hrs., however there
>> is an issue if any third party dial-up connection managers that can change the
>> detection frequency.
>>
>> For info see:
>> Modem dials every five minutes when Automatic LiveUpdate is enabled
>> http://service1.symantec.com/SUPPORT...hm&lg=en&ct=us
>>
>> For more on Ndetect and ALU see:
>> http://searchg.symantec.com/search?q...ang_en&numgm=0
>>
>> or if link wraps/breaks: http://tinyurl.com/ysj4x6
>>
>> Did you originally attempt to disable ALU via start/run NIS > Options > NAV or
>> NIS
>> > LiveUpdate tab > uncheck "Turn automatic Live Update on" > Ok out?

>>
>> --
>>
>> Brian A. Sesko { MS MVP_Shell/User }
>> Conflicts start where information lacks.
>> http://basconotw.mvps.org/
>>
>> Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
>> How to ask a question: http://support.microsoft.com/kb/555375
>>
>>

> In NIS 2004 there is no option when you run "LiveUpdate" to disable Automatic Live
> Update; you must disable it in the "Options" section.


That's what I wrote:
<quote>
Did you originally attempt to disable ALU via start/run NIS > Options > NAV or NIS
LiveUpdate tab > uncheck "Turn automatic Live Update on" > Ok out?

It is
> not checking for updates automatically but the Auto LiveUpdate Scheduler service is
> running continuously anyway. I checked and I already had set Live Update service to
> "manual"; whether you set Auto LiveUpdate Scheduler to "manual" or "disable" it
> makes no difference; it resets to "automatic" upon reboot after logon. I really am
> not worried about it unlike the OP who apparently was annoyed by it.


I'm out of options and I haven't had NIS 2004 installed for 3 yrs.


--

Brian A. Sesko { MS MVP_Shell/User }
Conflicts start where information lacks.
http://basconotw.mvps.org/

Suggested posting do's/don'ts: http://www.dts-l.org/goodpost.htm
How to ask a question: http://support.microsoft.com/kb/555375


Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Reply

Bookmarks

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Norton Live Update requires Administrator status Gene Windows Vista 5 07-08-2007 06:40 PM
Remove Live Search relder Internet Explorer 1 05-06-2007 09:01 AM
Live Messenger Update or Installation ac7 Windows Vista 1 02-04-2007 01:00 PM
Major Problem with Live Messenger UpDate 12-15-06 OpeXp Windows Vista 3 01-02-2007 11:10 AM
C3500 Onenote live update solution kjdiver Tablet PC - Averatec 1 09-05-2004 12:10 AM


New To Technology Questions? Do You Need Help with Your Computer or Device? Do You Need Help with this site?

All times are GMT -8. The time now is 05:45 PM.


2003 - 2009 All Rights Reserved. Technology Questions

Search Engine Friendly URLs by vBSEO 3.3.0