Customize Consent Preferences

We use cookies to help you navigate efficiently and perform certain functions. You will find detailed information about all cookies under each consent category below.

The cookies that are categorized as "Necessary" are stored on your browser as they are essential for enabling the basic functionalities of the site. ... 

Always Active

Necessary cookies are required to enable the basic features of this site, such as providing secure log-in or adjusting your consent preferences. These cookies do not store any personally identifiable data.

No cookies to display.

Functional cookies help perform certain functionalities like sharing the content of the website on social media platforms, collecting feedback, and other third-party features.

No cookies to display.

Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics such as the number of visitors, bounce rate, traffic source, etc.

No cookies to display.

Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.

No cookies to display.

Advertisement cookies are used to provide visitors with customized advertisements based on the pages you visited previously and to analyze the effectiveness of the ad campaigns.

No cookies to display.

Loading

Change MOSS and WSS Passwords


 @echo off
rem for more info please see http://support.microsoft.com/kb/934838

rem central admin
echo *** Updating Central Admin password
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o updatefarmcredentials -userlogin %1 -password %2

rem other app pools
echo *** Updating app pool passwords
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o updateaccountpassword -userlogin %1 -password %2 -noadmin

rem ssp - new
echo *** Updating ssp password for new installs
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o editssp -title "SharedServices1" -ssplogin %1 -ssppassword %2

rem ssp - upgrade
echo *** Updating ssp password for upgraded installs
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o editssp -title "Default Web Site" -ssplogin %1 -ssppassword %2

rem osearch
echo *** Updating osearch password
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o osearch -farmserviceaccount %1 -farmservicepassword %2
echo *** MANUAL UPDATE NEEDED. To update the password, visit the SSP Web application page, click Search Settings, and then click Default Content Access Account.

rem spsearch
echo *** Updating spsearch password
"%commonprogramfiles%Microsoft SharedWeb server extensions12BINStsadm.exe" -o spsearch -farmserviceaccount %1 -farmservicepassword %2
echo *** Updating spsearch content access account
"%commonprogramfiles%Microsoft Sharedweb server extensions12BINstsadm.exe" -o spsearch -farmcontentaccessaccount %1 -farmcontentaccesspassword %2

rem restarting IIS
echo *** Doing soft restart of IIS
iisreset /noforce
echo on

Leave a Reply

Your email address will not be published. Required fields are marked *