Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. The Lounge
  3. Configuring Windows Start Up

Configuring Windows Start Up

Scheduled Pinned Locked Moved The Lounge
databasemysqlwindows-adminquestion
9 Posts 9 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • N Offline
    N Offline
    Nathan Addy
    wrote on last edited by
    #1

    Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

    A A J A N 5 Replies Last reply
    0
    • N Nathan Addy

      Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

      A Offline
      A Offline
      Anders Molin
      wrote on last edited by
      #2

      Services starts before the user logs on, so the answar is no. - Anders Bill's Bar
      My Photos

      WDevs - The worlds first DSP, free blog space, email and more. Now also with forums :)

      1 Reply Last reply
      0
      • N Nathan Addy

        Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

        A Offline
        A Offline
        Andrew Peace
        wrote on last edited by
        #3

        As Anders says, services start up before login. However, I'm sure if setting up different hardware profiles would achieve the desired effect - might be worth looking into. -- Andrew.

        R 1 Reply Last reply
        0
        • N Nathan Addy

          Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

          J Offline
          J Offline
          Jeremy Falcon
          wrote on last edited by
          #4

          You could write a program to shutdown non-system services during login and restart the ones that were shutdown during logout. Jeremy Falcon

          1 Reply Last reply
          0
          • N Nathan Addy

            Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

            N Offline
            N Offline
            Navin
            wrote on last edited by
            #5

            Just carry an old DOS boot floppy for your gaming... :-D An expert is somebody who learns more and more about less and less, until he knows absolutely everything about nothing.

            1 Reply Last reply
            0
            • N Nathan Addy

              Is there any way to configure windows services so that they start up for one user but not another? I am wondering if there is a way to set up my machine (without dual booting) so that one user loads up all my programming goodies (IIS, MS Sql Sever, MySQL, the Debbugging service, etc) and the other to be as bare bones as I can get it, mostly for playing games. The smartest move would be to get a 2nd computer, the second would probably be to dual boot, but I'm just not that smart. :cool: Has anyone else been successful with the programming/games box split personality?

              A Offline
              A Offline
              Arnd H
              wrote on last edited by
              #6

              While it is true that Services start before a user logs in, they can still be started after a user has logged in. You could disable startup of the unnecessary services and put a batch file in your development user's startup folder that starts them. On my machine, IIS and MySQL are set to Manual startup, and whenever I want to work on my websites, I run a batch file that's conveniently located on my desktop that starts them: @echo off net start mysql net start w3svc Note, however, that when you log off/switch user, the services keep running.
              Chaque homme de culture a deux patries: la sienne - et la France. (Thomas Jefferson)

              J L 2 Replies Last reply
              0
              • A Arnd H

                While it is true that Services start before a user logs in, they can still be started after a user has logged in. You could disable startup of the unnecessary services and put a batch file in your development user's startup folder that starts them. On my machine, IIS and MySQL are set to Manual startup, and whenever I want to work on my websites, I run a batch file that's conveniently located on my desktop that starts them: @echo off net start mysql net start w3svc Note, however, that when you log off/switch user, the services keep running.
                Chaque homme de culture a deux patries: la sienne - et la France. (Thomas Jefferson)

                J Offline
                J Offline
                Jorgen Sigvardsson
                wrote on last edited by
                #7

                The simplest solution is often the best solution. net start is the simplest solution. :) -- My name in Katakana is ヨレゲン. My name in German is Jörgen. I blog too now[^]

                1 Reply Last reply
                0
                • A Arnd H

                  While it is true that Services start before a user logs in, they can still be started after a user has logged in. You could disable startup of the unnecessary services and put a batch file in your development user's startup folder that starts them. On my machine, IIS and MySQL are set to Manual startup, and whenever I want to work on my websites, I run a batch file that's conveniently located on my desktop that starts them: @echo off net start mysql net start w3svc Note, however, that when you log off/switch user, the services keep running.
                  Chaque homme de culture a deux patries: la sienne - et la France. (Thomas Jefferson)

                  L Offline
                  L Offline
                  Lost User
                  wrote on last edited by
                  #8

                  Could you not have another batch file that you manually run before logoff or even find a way to get it to run at logoff that stops the services

                  @echo off
                  net stop mysql
                  net stop w3svc

                  comes to mind. Michael Martin Australia "I controlled my laughter and simple said "No,I am very busy,so I can't write any code for you". The moment they heard this all the smiling face turned into a sad looking face and one of them farted. So i had to leave the place as soon as possible." - Mr.Prakash 24/04/2004

                  1 Reply Last reply
                  0
                  • A Andrew Peace

                    As Anders says, services start up before login. However, I'm sure if setting up different hardware profiles would achieve the desired effect - might be worth looking into. -- Andrew.

                    R Offline
                    R Offline
                    rbid
                    wrote on last edited by
                    #9

                    Yes, it is possible with different hardware profiles. (It has been done at my previos workplace, one HW profile for development, and one HW profile for testing). At home I had dual-boot pc, with Win98 for my kids games and Win2K for working and all worked nice. (Dual boot is another solution) -- **Ricky Marek** (_AKA: rbid_) -- "Things are only impossible until they are not" --- Jean-Luc Picard My articles

                    1 Reply Last reply
                    0
                    Reply
                    • Reply as topic
                    Log in to reply
                    • Oldest to Newest
                    • Newest to Oldest
                    • Most Votes


                    • Login

                    • Don't have an account? Register

                    • Login or register to search.
                    • First post
                      Last post
                    0
                    • Categories
                    • Recent
                    • Tags
                    • Popular
                    • World
                    • Users
                    • Groups