What account is the farm account and how in the @#$% do I change it?
Here’s a quick and dirty way to find out the farm account
1 |
(Get-SPFarm).DefaultServiceAccount.Name |
If that account looks something like this, you need to change it
1 2 3 |
c:\(Get-SPFarm).DefaultServiceAccount.Name NETWORK SERVICE c:\ |
1 |
stsadm.exe -o updatefarmcredentials -userlogin “Domain\svc_Account” -password “$*y7uxmM2AL4_*r7” |
Make sure the account is not disabled or locked before you run … Read More