
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-31-2016 03:47 PM
I have configured the report I found on here for reporting which computers have certain services in a Stopped state and start mode set to manual. I want to run a script or something against that report to turn those services on and set to automatic. Any assistance would be greatly appreciated.
Solved! Go to Solution.
Labels:
- Labels:
-
Custom Actions
1 ACCEPTED SOLUTION
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 03:36 PM
To deploy a change on multiple machines at once, you'll need to use the deployment module. You cannot use asset actions for this. General information on creating and running deployment packages can be found in this section of our knowledge base. To start and set the startup type of a service, you should be able to use Command steps and commands similar to the ones below. (You'll need to insert your own service name and startup type of course.)
net start <service name>
sc config <service name> start= <mode>
net start <service name>
sc config <service name> start= <mode>
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-06-2016 03:36 PM
To deploy a change on multiple machines at once, you'll need to use the deployment module. You cannot use asset actions for this. General information on creating and running deployment packages can be found in this section of our knowledge base. To start and set the startup type of a service, you should be able to use Command steps and commands similar to the ones below. (You'll need to insert your own service name and startup type of course.)
net start <service name>
sc config <service name> start= <mode>
net start <service name>
sc config <service name> start= <mode>
