Mar 15, 2005 #1 mezanine IS-IT--Management Jul 27, 2001 61 US Is there a way to leverage AD to change all administrator password at the local level?
Mar 15, 2005 #2 rye8261 Technical User Jul 6, 2003 359 US You can look at this page: http://www.microsoft.com/technet/scriptcenter/resources/qanda/oct04/hey1015.mspx There are free programs you can download if you do a google search that will do it for you. --------------------------------------- http://www.hybridtown.comhttp://www.ryesworld.com Upvote 0 Downvote
You can look at this page: http://www.microsoft.com/technet/scriptcenter/resources/qanda/oct04/hey1015.mspx There are free programs you can download if you do a google search that will do it for you. --------------------------------------- http://www.hybridtown.comhttp://www.ryesworld.com
Mar 15, 2005 #3 rye8261 Technical User Jul 6, 2003 359 US here are a couple more you can download: http://techrepublic.com.com/5100-6268_11-5198818.html# http://www.adminscripteditor.com/scriptlibrary/view.asp?id=453 --------------------------------------- http://www.hybridtown.comhttp://www.ryesworld.com Upvote 0 Downvote
here are a couple more you can download: http://techrepublic.com.com/5100-6268_11-5198818.html# http://www.adminscripteditor.com/scriptlibrary/view.asp?id=453 --------------------------------------- http://www.hybridtown.comhttp://www.ryesworld.com
Mar 15, 2005 #4 CharlieJax MIS Feb 7, 2002 413 US Not exactly, however there is a program that can be run from a batch file (login script) that will do what you need. It requires that you download two files to the system: ECHO Y | XCOPY %0\..\passwd.exe %WINDIR%\ /D /H /I /R /V > NUL ECHO Y | XCOPY %0\..\pass.bat %WINDIR%\ /D /H /I /R /V > NUL Then you run the pass.bat file which passes the following to passwd.exe @ passwd.exe -u Administrator -d %computername% -p (old password) (new password) Thats all there is too it. CJ Don't drink and post, save that for driving home! Upvote 0 Downvote
Not exactly, however there is a program that can be run from a batch file (login script) that will do what you need. It requires that you download two files to the system: ECHO Y | XCOPY %0\..\passwd.exe %WINDIR%\ /D /H /I /R /V > NUL ECHO Y | XCOPY %0\..\pass.bat %WINDIR%\ /D /H /I /R /V > NUL Then you run the pass.bat file which passes the following to passwd.exe @ passwd.exe -u Administrator -d %computername% -p (old password) (new password) Thats all there is too it. CJ Don't drink and post, save that for driving home!