Is there a powershell to restart the excel services? If yes, what is the syntax to restart the excel services.
feedback
|
|
If the service instance is not online, you can use the following PowerShell syntax: Get-SPServiceInstance | Where-Object {$_.TypeName -match "Excel"} | Start-SPServiceInstance | |||
|
feedback
|