Skip to content

Instantly share code, notes, and snippets.

@Guzzter
Created November 24, 2016 10:06
Show Gist options
  • Save Guzzter/24cfc8c8b4a0773815996b7381c60def to your computer and use it in GitHub Desktop.
Save Guzzter/24cfc8c8b4a0773815996b7381c60def to your computer and use it in GitHub Desktop.
Stop and Start Tridion 2013 services
Write-Host "Restarting all Tridion Services"
Get-Service -displayname Tri* | Stop-Service -force
Get-Service -displayname Tri* | Start-Service
Write-Host "Restarting IIS"
iisreset
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment