From ddf1ad8efb73b74b8fb040edaf95070939cbaa78 Mon Sep 17 00:00:00 2001
From: simonmicro <simon@simonmicro.de>
Date: Sun, 11 Dec 2022 22:09:21 +0100
Subject: [PATCH] Added note regarding the used command

---
 docs/Getting Started.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/docs/Getting Started.md b/docs/Getting Started.md
index 63b90c8..c3fb795 100644
--- a/docs/Getting Started.md	
+++ b/docs/Getting Started.md	
@@ -119,7 +119,7 @@ class AppServerSvc (win32serviceutil.ServiceFramework):
     _svc_name_ = "py-kms"
     _svc_display_name_ = "py-kms"
     _proc = None
-    _cmd = ["C:\Windows\Python27\python.exe", "C:\Windows\Python27\py-kms\pykms_Server.py"]
+    _cmd = ["C:\Windows\Python27\python.exe", "C:\Windows\Python27\py-kms\pykms_Server.py"] # UPDATE THIS - because Python 2.7 is end of life and you will use other parameters anyway
 
     def __init__(self,args):
         win32serviceutil.ServiceFramework.__init__(self,args)