Powershell – Create Visio Service Application

Powershell Script

I got the problem, that the Visio Service Application was stopped and i was not able to start it. I tried via GUI and Powershell and so on. But even if i deleted the old one and create a new one, it stucks cause of timeout. So i created it from cratch by Powershell. Before i deleted everything (Service Application, Application Pool, Application Proxy) via Powershell. Now i’d like to share my Script for that:

[code language=”csharp”]

#Create Visio Application Pool
New-SPServiceApplicationPool -Name “Visio Graphic Service Application Pool”
$VisioAppPool = Get-SPServiceApplicationPool “Visio Graphic Service Application Pool”

#Create Visio Service Application
$VisioApp = New-SPVisioServiceApplication -ApplicationPool $VisioAppPool -Name “Visio Graphic Service Application”
Get-SPServiceApplication | Select Name

#Create Visio Application Proxy
$VisioAppProxy = New-SPVisioServiceApplicationProxy -ServiceApplication “Visio Graphic Service Application” -Name “Visio Graphic Service Application Proxy”
Get-SPServiceApplicationProxy | Select Name

#start service if it’s not running
$visio = Get-SPVisioServiceApplication
$visio.Provision()

[/code]

In my case it was important to call $visio.Provion() to start the Service Application. Afterwords i had to start the service itself via Central Administration at Manage Services. It worked like a charm.

The article or information provided here represents completely my own personal view & thought. It is recommended to test the content or scripts of the site in the lab, before making use in the production environment & use it completely at your own risk. The articles, scripts, suggestions or tricks published on the site are provided AS-IS with no warranties or guarantees and confers no rights.

About Karsten Schneider 312 Articles
Consultant for Microsoft 365 Applications with a strong focus in Teams, SharePoint Online, OneDrive for Business as well as PowerPlatform with PowerApps, Flow and PowerBI. I provide Workshops for Governance & Security in Office 365 and Development of Solutions in the area of Collaboration and Teamwork based on Microsoft 365 and Azure Cloud Solutions. In his free time he tries to collect tipps and worthy experience in this blog.

Be the first to comment

Leave a Reply

Your email address will not be published.


*