cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
1219
Views
0
Helpful
1
Replies

Start and stop Cisco Secure ACS services using batch.

andrea.meconi
Level 2
Level 2

Hello.

I need to start and stop Windows service using a batch.

What is the correct order?

Thanks.

Andrea

1 Reply 1

ben.lancaster
Level 1
Level 1

Here is the batch file I use to stop and start services on ACS 4.x Windows and it works perfectly. @ECHO OFF net stop csmon >null 2>&1 net stop cslog >null 2>&1 net stop csdbsync >null 2>&1 net stop csauth >null 2>&1 net stop csadmin >null 2>&1 net stop cstacacs >null 2>&1 net stop csradius >null 2>&1 net start csauth >null 2>&1 net start csmon >null 2>&1 net start cslog >null 2>&1 net start csdbsync >null 2>&1 net start csadmin >null 2>&1 net start cstacacs >null 2>&1 net start csradius >null 2>&1 echo Complete restart finished exit 0