Skip to content
David Kittell
David Kittell

Application & System: Development / Integration / Orchestration

  • Services
    • Application Development
    • Online Application Integration
  • Code
  • Online Tools
  • Tech Support
David Kittell

Application & System: Development / Integration / Orchestration

Ektron – Stop / Start Services

Posted on March 5, 2014October 26, 2015 By David Kittell

This should only be done on a development computer, doing so on a production server would not be good.

Please note that while stopping the services I’m also setting the start command to “demand” this is also known as “manual”.
In setting this command Ektron will no longer automatically start with the computer.

iisreset /stop

NET STOP "Ektron CMS File HelperService"
sc config "EktronCmsFileHelperService" start= demand

NET STOP "Ektron Diagnostics Service"
sc config "EktronDiagnosticsService" start= demand

NET STOP "Ektron Notification Service"
sc config "EktronNotificationService" start= demand

NET STOP "Ektron Search Server Service"
sc config "EktronSearchServerService" start= demand

NET STOP "Ektron Windows Services 4.0"
sc config "EktronWindowsServices40" start= demand

NET STOP "SQL Server (SQLEXPRESS)"
sc config "MSSQL$SQLEXPRESS" start= demand

NET STOP "SQL Server VSS Writer"
sc config "SQLWriter" start= demand

NET STOP "SQL Server Agent (SQLEXPRESS)"
sc config "SQLAgent$SQLEXPRESS" start= disabled

NET STOP "SQL Server Browser"
sc config "SQLBrowser" start= disabled

Please note in starting the services I’m only starting the needed services and not changing the start command. If you accidentally set the start command on a computer that you should not have change the stop commands from start=demand to start=auto and then run the commands below.

iisreset

NET Start "Ektron CMS File HelperService"

NET Start "Ektron Diagnostics Service"

NET Start "Ektron Notification Service"

NET Start "Ektron Search Server Service"

NET Start "Ektron Windows Services 4.0"

NET Start "SQL Server (SQLEXPRESS)"

NET Start "SQL Server VSS Writer"
Originally Posted on March 5, 2014
Last Updated on October 26, 2015
All information on this site is shared with the intention to help. Before any source code or program is ran on a production (non-development) system it is suggested you test it and fully understand what it is doing not just what it appears it is doing. I accept no responsibility for any damage you may do with this code.

Related

Code Ektron Windows Batch

Post navigation

Previous post
Next post

Related Posts

Azure – CLI – Build Windows/UNIX VM Function (With or without public IP)

Posted on December 19, 2017

In the functions below the VM name is used in all of the pieces to build the VM to simplify documentation. Important Items: As I use a Firewall appliance in Azure I do not set Network Security Groups (NSG). I have a predefined virtual network (VN) and predefined network subnet…

Read More

UNIX – Remove Apache, MySQL & PHP

Posted on October 30, 2015October 30, 2015

WARNING – THIS WILL REMOVE WITHOUT PROMPT dpkg -l *apache* *php* *mysql* phpmyadmin | grep ^ii | awk ‘{ print $2}’ | xargs sudo apt-get -y purge –auto-remove rm -r /etc/apache2 rm -r /etc/php5 rm -r /etc/mysql sudo apt-get –assume-yes purge apache* php* mysql* phpmyadmin sudo apt-get –assume-yes autoremove sudo…

Read More

Create Read Only SQL User

Posted on March 30, 2015

USE [master] GO CREATE LOGIN [LimitedUser] WITH PASSWORD = N’testPass’ ,DEFAULT_DATABASE = [master] ,CHECK_EXPIRATION = OFF ,CHECK_POLICY = OFF GO USE [DatabaseName] GO CREATE USER [LimitedUser] FOR LOGIN [LimitedUser] GO USE [DatabaseName] GO GRANT SELECT TO [LimitedUser] GO All information on this site is shared with the intention to help….

Read More

Code

Top Posts & Pages

  • PowerShell - Rename Pictures to Image Taken
  • Front Page
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions

Recent Posts

  • Javascript – Digital Clock with Style
  • BASH – Web Ping Log
  • BASH – Picture / Video File Name Manipulation
  • Mac OSX Terminal – Create SSH Key
  • Bash – Rename Picture

Top Posts

  • PowerShell - Rename Pictures to Image Taken
  • C# - Start/Stop/Restart Services
  • MacPorts / HomeBrew - Rip CD tracks from terminal
  • PowerShell - Show File Extensions
  • Open On Screen Keyboard (OSK)
  • SQLite - Auto-Increment / Auto Generate GUID
©2025 David Kittell | WordPress Theme by SuperbThemes