Reprovision service applications
when upgrading a 2010 Beta deployment to RC i ran into issues related to using office web apps. i had to reprovision the service applications to fix the issue. to do so, i ran the following ps script:
Get-SPServiceApplication | %{$s = “re-provision: “ + $_.TypeName; Write $s;$_.Provision()}
- mutaz