Skip to content

Instantly share code, notes, and snippets.

@levi-turner
Created December 29, 2017 21:42
Show Gist options
  • Select an option

  • Save levi-turner/d5c71242d54c98d02f11a3b89b131457 to your computer and use it in GitHub Desktop.

Select an option

Save levi-turner/d5c71242d54c98d02f11a3b89b131457 to your computer and use it in GitHub Desktop.
Start Qlik Sense Services in Powershell
#-----------------------------------------------------------------------
#
# Script Name: qlik_sense_service-start.ps1
# Description: This will start Qlik Sense Services
# Version Date Author Change Notes
# 0.1 2017-12-20 Levi Turner Initial Version
#-----------------------------------------------------------------------
Get-Service QlikSenseRepositoryDatabase -ComputerName localhost | Start-Service
Get-Service QlikLoggingService -ComputerName localhost | Start-Service
Get-Service QlikSenseRepositoryService -ComputerName localhost | Start-Service
Get-Service QlikSenseSchedulerService -ComputerName localhost | Start-Service
Get-Service QlikSenseServiceDispatcher -ComputerName localhost | Start-Service
Get-Service QlikSenseProxyService -ComputerName localhost | Start-Service
Get-Service QlikSensePrintingService -ComputerName localhost | Start-Service
Get-Service QlikSenseEngineService -ComputerName localhost | Start-Service
Get-Service QlikSenseSchedulerService -ComputerName localhost | Start-Service
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment