how to run already placed all users script through server or command prompt in my domain systems

prabakardeva

Commendable
Feb 29, 2016
12
0
1,520
Hi friends,

how to run already placed all users script (windows 7) through server or command prompt in my domain systems

thanks
 
Solution
Well you need to have remote access to each user folder with admin rights to run a script.

You write your own script on your compter to go to each system, login as appropriate, and execute the desired user folder script.

I would envison a simple loop that does all that but pulling the user login information from a list versus 75 iterations of code going to each user.

Probably a variety of ways various administrative tools/software to do all of that.

Write some code and try execution on one or two remote test systems. See what happens, correct as necessary, test again.

Ralston18

Titan
Moderator
Look into using Powershell for Remoting and Jobs.

Not really sure about what all you are intending to do via the scripts - powershell may be either too much or too little.

Plan it out, write your scripts and test on just one or two remote systems first.
 

prabakardeva

Commendable
Feb 29, 2016
12
0
1,520


hi ralston,

i have 75 systems i want to run scripts which i placed in all user's folder, having any idea to run those scripts
 

Ralston18

Titan
Moderator
Well you need to have remote access to each user folder with admin rights to run a script.

You write your own script on your compter to go to each system, login as appropriate, and execute the desired user folder script.

I would envison a simple loop that does all that but pulling the user login information from a list versus 75 iterations of code going to each user.

Probably a variety of ways various administrative tools/software to do all of that.

Write some code and try execution on one or two remote test systems. See what happens, correct as necessary, test again.

 
Solution