Created
December 29, 2017 21:42
-
-
Save levi-turner/d5c71242d54c98d02f11a3b89b131457 to your computer and use it in GitHub Desktop.
Start Qlik Sense Services in Powershell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #----------------------------------------------------------------------- | |
| # | |
| # 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