Windows Vista Forums

How to Stop IIS starting at startup
  1. #1


    Laurie Guest

    How to Stop IIS starting at startup

    Hi

    Does anyone know how to stop IIS starting at startup? I used to turn it to
    Manual in Services in XP, but I cant see it in Services in Vista. The IIS
    Control panel just has Start and Stop and I cant find anything about not
    starting it at startup.



    Thanks


      My System SpecsSystem Spec

  2. #2


    Synapse Syndrome Guest

    Re: How to Stop IIS starting at startup

    "Laurie" <lawr_1@xxxxxx> wrote in message
    news:FD2FB648-1301-4B68-921D-D7A779FD8C69@xxxxxx

    > Hi
    >
    > Does anyone know how to stop IIS starting at startup? I used to turn it to
    > Manual in Services in XP, but I cant see it in Services in Vista. The IIS
    > Control panel just has Start and Stop and I cant find anything about not
    > starting it at startup.

    You could use a startup batch script.

    http://support.microsoft.com/kb/q243486/

    And use the command:

    net stop "World Wide Web Publishing Service"

    ss.



      My System SpecsSystem Spec

  3. #3


    Mike Brannigan Guest

    Re: How to Stop IIS starting at startup

    You can access Services via running MMC (Start ... Run ... MMC) then
    Add/Remove snap-ins and add the Services snap in.

    --

    Mike Brannigan
    "Laurie" <lawr_1@xxxxxx> wrote in message
    news:FD2FB648-1301-4B68-921D-D7A779FD8C69@xxxxxx

    > Hi
    >
    > Does anyone know how to stop IIS starting at startup? I used to turn it to
    > Manual in Services in XP, but I cant see it in Services in Vista. The IIS
    > Control panel just has Start and Stop and I cant find anything about not
    > starting it at startup.
    >
    > Thanks
    >

      My System SpecsSystem Spec

  4. #4


    Synapse Syndrome Guest

    Re: How to Stop IIS starting at startup

    "Synapse Syndrome" <synapse@xxxxxx> wrote in message
    news:e87Csm4fIHA.5088@xxxxxx

    >
    > You could use a startup batch script.
    >
    > http://support.microsoft.com/kb/q243486/

    As I am not using Vista right now (I really can't be bothered with it these
    days - I'll give it another once SP1 comes out, although it is still pretty
    disappointing), I cannot check what the best way to run a startup batch
    script is, but all you need to do is figure out how to do that, and then use
    the command:

    > net stop "World Wide Web Publishing Service"
    ss.



      My System SpecsSystem Spec

  5. #5


    On the Bridge! Guest

    Re: How to Stop IIS starting at startup

    here are 2 examples of batch scripts that I have made to control services

    to start 2 services

    @echo off

    net start wuauserv
    net start Alerter

    ---to stop them---

    @echo off

    net stop wuauserv
    net stop Alerter

    where I have the names of the services you can enter your own...
    write this in a notpad, and change the extension to BAT


    if not you can always create a batch file
    "Laurie" <lawr_1@xxxxxx> wrote in message
    news:FD2FB648-1301-4B68-921D-D7A779FD8C69@xxxxxx

    > Hi
    >
    > Does anyone know how to stop IIS starting at startup? I used to turn it to
    > Manual in Services in XP, but I cant see it in Services in Vista. The IIS
    > Control panel just has Start and Stop and I cant find anything about not
    > starting it at startup.
    >
    > Thanks
    >


      My System SpecsSystem Spec

  6. #6


    C.B. Guest

    Re: How to Stop IIS starting at startup



    "Laurie" <lawr_1@xxxxxx> wrote in message
    news:FD2FB648-1301-4B68-921D-D7A779FD8C69@xxxxxx

    > Hi
    >
    > Does anyone know how to stop IIS starting at startup? I used to turn it to
    > Manual in Services in XP, but I cant see it in Services in Vista. The IIS
    > Control panel just has Start and Stop and I cant find anything about not
    > starting it at startup.
    >
    > Thanks
    >
    Laurie,

    Try this: Control Panel, Programs and Features, Turn Windows features
    on or off. Uncheck the box for Internet Information Services.

    C.B.


    --
    It is the responsibility and duty of everyone to help the underprivileged
    and unfortunate among us.


      My System SpecsSystem Spec

  7. #7


    Laurie Guest

    Re: How to Stop IIS starting at startup

    Hi

    Thanks but that just uninstalls it doesn't it? When I want to start it next
    time I would have to install it again wouldn't I? Wouldn't there be an
    easier way to keep it installed but just not start?


    "C.B." <notreallyc.b.mullen@xxxxxx> wrote in message
    news:63ACA7A7-9EC6-4FA3-B78E-B609E4DC28CF@xxxxxx

    >
    >
    > "Laurie" <lawr_1@xxxxxx> wrote in message
    > news:FD2FB648-1301-4B68-921D-D7A779FD8C69@xxxxxx

    >> Hi
    >>
    >> Does anyone know how to stop IIS starting at startup? I used to turn it
    >> to Manual in Services in XP, but I cant see it in Services in Vista. The
    >> IIS Control panel just has Start and Stop and I cant find anything about
    >> not starting it at startup.
    >>
    >> Thanks
    >>
    >
    > Laurie,
    >
    > Try this: Control Panel, Programs and Features, Turn Windows features
    > on or off. Uncheck the box for Internet Information Services.
    >
    > C.B.
    >
    >
    > --
    > It is the responsibility and duty of everyone to help the underprivileged
    > and unfortunate among us.

      My System SpecsSystem Spec

  8. #8


    Synapse Syndrome Guest

    Re: How to Stop IIS starting at startup

    "On the Bridge!" <On@xxxxxx,Bridge> wrote in message
    news:47cfeff4$1@xxxxxx-privat.org...

    > here are 2 examples of batch scripts that I have made to control services
    >
    > to start 2 services
    >
    > @echo off
    >
    > net start wuauserv
    > net start Alerter
    >
    > ---to stop them---
    >
    > @echo off
    >
    > net stop wuauserv
    > net stop Alerter
    >
    > where I have the names of the services you can enter your own...
    > write this in a notpad, and change the extension to BAT
    >
    >
    > if not you can always create a batch file

    What is the point of this post? It's not only redundant, it's irrelevant
    too.

    ss.



      My System SpecsSystem Spec

  9. #9


    Synapse Syndrome Guest

    Re: How to Stop IIS starting at startup

    "Laurie" <lawr_1@xxxxxx> wrote in message
    news:9DBAB730-AF7D-4D1E-B40C-B38CF10BC274@xxxxxx

    >
    > Thanks but that just uninstalls it doesn't it? When I want to start it
    > next time I would have to install it again wouldn't I? Wouldn't there be
    > an easier way to keep it installed but just not start?

    What is it that you do not want starting? Just websites?

    They would only be started if you had started them in the IIS manager
    anyway. So if you had disabled them there, they will not be running next
    time you startup.

    If you want to make sure that non of the websites are running on startup,
    and before login, what is wrong with the solution I posted? If you give me
    some feedback, I can see if there is a better way. Does this command not
    work??

    net stop "World Wide Web Publishing Service"

    ss.



      My System SpecsSystem Spec

  10. #10


    On the Bridge! Guest

    Re: How to Stop IIS starting at startup

    you need to take those meds for your synapse syndrom idiot


    "Synapse Syndrome" <synapse@xxxxxx> wrote in message
    news:uUydgLCgIHA.1188@xxxxxx

    > "On the Bridge!" <On@xxxxxx,Bridge> wrote in message
    > news:47cfeff4$1@xxxxxx-privat.org...

    >> here are 2 examples of batch scripts that I have made to control services
    >>
    >> to start 2 services
    >>
    >> @echo off
    >>
    >> net start wuauserv
    >> net start Alerter
    >>
    >> ---to stop them---
    >>
    >> @echo off
    >>
    >> net stop wuauserv
    >> net stop Alerter
    >>
    >> where I have the names of the services you can enter your own...
    >> write this in a notpad, and change the extension to BAT
    >>
    >>
    >> if not you can always create a batch file
    >
    >
    > What is the point of this post? It's not only redundant, it's irrelevant
    > too.
    >
    > ss.
    >


      My System SpecsSystem Spec

Page 1 of 2 12 LastLast
How to Stop IIS starting at startup problems?

Similar Threads
Thread Thread Starter Forum Replies Last Post
How Do I Stop Messenger From Starting With Hotmail? DaffyD® Live Messenger 7 25 Apr 2010
Stop WLM starting up when i log in!!!!!!!!! JethroUK© Live Messenger 4 07 Jan 2010
HOW to Stop STartup Programs that do not show in the "startup" folder or have options in the programs to not start at windows startup james Vista installation & setup 2 29 Jun 2008
Stop Sync Center From Starting Nonya Vista General 0 09 Aug 2007
how do i stop internet explorer starting automatically on start up lynne Vista General 4 17 Jun 2007