I double checked and the service application had been removed from SharePoint, the Excel Calculation Service had been stopped on the App Server, and the ApplicationPool had even been removed from IIS. Looking up the CorrelationID in the logs also didn't tell me very much.
I decided to pop open PowerShell and see what I could pull off. Turns out it was a rather simple fix. First, I looked up my Managed Account. I then tried to remove it and found out the dependency was an application pool. After removing the dependency I was about to remove the Managed Account! The PowerShell Commands to do this were:
- Get-SPManagedAccount
- Get-SPServiceApplicationPool
- Remove-SPServiceApplicationPool
- Remove-SPManagedAccount
This post saved me at least 3 hours :) thank you.
ReplyDelete