Jump to content

How do i remove symantec live update?


Recommended Posts

Guest Dave Candi
Posted

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/output/n2004060108192148.html

  • Replies 13
  • Created
  • Last Reply
Guest steve7132@yahoo.com
Posted

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/howto/util/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/output/n2004060108192148.html

Posted

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/output/n2004060108192148.html

Guest Dave Candi
Posted

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/output/n2004060108192148.html

>

>

>

Guest Allan
Posted

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/output/n2004060108192148.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.

Guest Brian A.
Posted

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/output/n2004060108192148.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

Posted

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/output/n2004060108192148.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

>

>

Guest Brian A.
Posted

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/output/n2004060108192148.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

>>

>>

>

>

Posted

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/output/n2004060108192148.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

>>>

>>>

>>

>>

>

Guest Allan
Posted

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/output/n2004060108192148.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".

Guest Brian A.
Posted

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/output/n2004060108192148.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/sharedtech.nsf/0/acae405254e40de488256b26007175d2?OpenDocument&seg=hm&lg=en&ct=us

 

For more on Ndetect and ALU see:

http://searchg.symantec.com/search?q=disable+automatic+liveupdate&context=hho&output=xml_no_dtd&client=symc_en_US&site=symc_en_US&proxystylesheet=symc_en_US&partialfields=product%3ANorton+Internet+Security+Professional+2004+7-0%7Cproduct%3ATS+Gen%7Cproduct%3AShared+Tech%7Cproduct%3ACustomer+Service&pvname=Norton+Internet+Security+2004+Professional&returnurl=%2Fen%2Fus%2Fhome_homeoffice%2Fsupport%2Fproductdetail%2Findex.jsp%3Fpvid%3Dnis_2004_pro&charset=UTF-8&lr=lang_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

Guest Allan
Posted

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/output/n2004060108192148.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/sharedtech.nsf/0/acae405254e40de488256b26007175d2?OpenDocument&seg=hm&lg=en&ct=us

>

> For more on Ndetect and ALU see:

> http://searchg.symantec.com/search?q=disable+automatic+liveupdate&context=hho&output=xml_no_dtd&client=symc_en_US&site=symc_en_US&proxystylesheet=symc_en_US&partialfields=product%3ANorton+Internet+Security+Professional+2004+7-0%7Cproduct%3ATS+Gen%7Cproduct%3AShared+Tech%7Cproduct%3ACustomer+Service&pvname=Norton+Internet+Security+2004+Professional&returnurl=%2Fen%2Fus%2Fhome_homeoffice%2Fsupport%2Fproductdetail%2Findex.jsp%3Fpvid%3Dnis_2004_pro&charset=UTF-8&lr=lang_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.

Guest Brian A.
Posted

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/output/n2004060108192148.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/sharedtech.nsf/0/acae405254e40de488256b26007175d2?OpenDocument&seg=hm&lg=en&ct=us

>>

>> For more on Ndetect and ALU see:

>> http://searchg.symantec.com/search?q=disable+automatic+liveupdate&context=hho&output=xml_no_dtd&client=symc_en_US&site=symc_en_US&proxystylesheet=symc_en_US&partialfields=product%3ANorton+Internet+Security+Professional+2004+7-0%7Cproduct%3ATS+Gen%7Cproduct%3AShared+Tech%7Cproduct%3ACustomer+Service&pvname=Norton+Internet+Security+2004+Professional&returnurl=%2Fen%2Fus%2Fhome_homeoffice%2Fsupport%2Fproductdetail%2Findex.jsp%3Fpvid%3Dnis_2004_pro&charset=UTF-8&lr=lang_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


×
×
  • Create New...