Ask Question Forum:
Model Library:2025-02-08 Updated:A.I. model is online for auto reply question page
C
O
M
P
U
T
E
R
2
8
Show
#
ASK
RECENT
←
- Underline
- Bold
- Italic
- Indent
- Step
- Bullet
- Quote
- Cut
- Copy
- Paste
- Table
- Spelling
- Find & Replace
- Undo
- Redo
- Link
- Attach
- Clear
- Code
Below area will not be traslated by Google,you can input code or other languages
Hint:If find spelling error, You need to correct it,1 by 1 or ignore it (code area won't be checked).
X-position of the mouse cursor
Y-position of the mouse cursor
Y-position of the mouse cursor
Testcursor
caretPos
Attachment:===
Asked by smksa
at 2024-10-03 20:12:44
Point:500 Replies:5 POST_ID:828761USER_ID:10
Topic:
Linux;Microsoft Operating Systems;Microsoft Windows Operating Systems
Hi,
I have a question, if i have 500 windows servers, some contains Windows 2003 & 2008, so is there any way i can change admin/root password on all at once, no need to change/login one by one.
Same question for Linux OS.
BR
Javaid
I have a question, if i have 500 windows servers, some contains Windows 2003 & 2008, so is there any way i can change admin/root password on all at once, no need to change/login one by one.
Same question for Linux OS.
BR
Javaid
Expert: Sandy replied at 2024-10-07 05:50:19
For Windows : GPO is the only way
For Linux : Change password policy for all users and then make them change via script/via user
For Linux : Change password policy for all users and then make them change via script/via user
Accepted Solution
Expert: Mazdajai replied at 2024-10-06 16:02:56
500 points GOOD
You should use GPO to change the password, this ensure consistency across the board -
http://social.technet.microsoft.com/wiki/contents/articles/4683.how-to-change-a-local-administrator-password-with-group-policy.aspx
1.Create GPO
2. Link GPO to a test OU containing the test server.
3. Link GPO to the target OU.
You should open another thread under Linux section.
http://social.technet.microsoft.com/wiki/contents/articles/4683.how-to-change-a-local-administrator-password-with-group-policy.aspx
1.Create GPO
2. Link GPO to a test OU containing the test server.
3. Link GPO to the target OU.
You should open another thread under Linux section.
Expert: Qlemo replied at 2024-10-04 01:11:37
Of course you can use psexec or the like to remote change passwords, but the issue is that you need a single account on all those machines with the same password. This might be the account to change itself, if you want to change passwords on a regular base.
psexec is able to receive a file containing a list of machines to connect to, but managing 500 machines, and filtering for errors, gets a bit complicated here.
Other methods for repeated change are implementing a scheduled task on all machines, which look e.g. once a day at a certain file to change the password, or a script to execute, on a well-known single location. Con: the password is in plain text then.
psexec is able to receive a file containing a list of machines to connect to, but managing 500 machines, and filtering for errors, gets a bit complicated here.
Other methods for repeated change are implementing a scheduled task on all machines, which look e.g. once a day at a certain file to change the password, or a script to execute, on a well-known single location. Con: the password is in plain text then.
Expert: duncanb7 replied at 2024-10-04 01:01:17
This link solution is helping set up all 500 computer to open same location
or same redirect website. Adminstrator just need set it one time and after
that 500 computer users will open the same page
http://www.experts-exchange.com/Networking/Misc/Q_28198564.html
And then you can change the redirect website link or whatever to
your adminstrator page that you know its server directory location so that
you can change the password or login requested anytime you want in
one page in one site only. Other 500 computers will be updated and 500 users
will be requested to input the change admin password or login if they want to access
your adminstrator page
Hope I understand your question
Duncan
or same redirect website. Adminstrator just need set it one time and after
that 500 computer users will open the same page
http://www.experts-exchange.com/Networking/Misc/Q_28198564.html
And then you can change the redirect website link or whatever to
your adminstrator page that you know its server directory location so that
you can change the password or login requested anytime you want in
one page in one site only. Other 500 computers will be updated and 500 users
will be requested to input the change admin password or login if they want to access
your adminstrator page
Hope I understand your question
Duncan
Expert: arnold replied at 2024-10-03 20:21:51
There are many scriptable options from psexec, powershell, vbscript, etc.
On the Linux, you can script them as well. Using useradd -p 'newencryptedpassword' root
A script will do a change one system at a time.
The simpler approach if the option exists to centralize management of the server through the use of a centralized directory (AD/LDAP) this will be the only way that a change in the directory automatically applies to all.
On the Linux, you can script them as well. Using useradd -p 'newencryptedpassword' root
A script will do a change one system at a time.
The simpler approach if the option exists to centralize management of the server through the use of a centralized directory (AD/LDAP) this will be the only way that a change in the directory automatically applies to all.