Jump to content

WindowsXP services help...


benjammin

Recommended Posts


The easiest way would be to handle it on login. First go and set all the services that you want to modify to manual. Then just create a simple batch file that runs on login. For example I have a user on one of our systems that use vmware, and its services only start when he logins.

start_services.cmd

net start "VMWare Authorization Service"

net start "VMWare DHCP Service"

net start "VMWare NAT Service"

You can then have a simmar script run on logout that would be reversed

stop_services.cmd

net stop "VMWare NAT Service"

net stop "VMWare DHCP Service"

net stop "VMWare Authorization Service"

Remember that the start and stop should be in reverse order to each other to maintain higest system integrity.

This will control which services run on logon and logoff.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...