Hide console on Windows after start

This commit is contained in:
Ozzie Isaacs 2024-06-09 11:07:19 +02:00
commit 6022f48040
2 changed files with 23 additions and 0 deletions

20
cps.py
View File

@ -27,7 +27,27 @@ sys.path.insert(0, path)
from cps.main import main
def hide_console_windows():
import ctypes
import os
hwnd = ctypes.windll.kernel32.GetConsoleWindow()
if hwnd != 0:
try:
import win32process
except ImportError:
print("To hide console window install 'pywin32' using 'pip install pywin32'")
return
ctypes.windll.user32.ShowWindow(hwnd, 0)
ctypes.windll.kernel32.CloseHandle(hwnd)
_, pid = win32process.GetWindowThreadProcessId(hwnd)
os.system('taskkill /PID ' + str(pid) + ' /f')
if __name__ == '__main__':
if os.name == "nt":
hide_console_windows()
main()

View File

@ -43,3 +43,6 @@ comicapi>=2.2.0,<3.3.0
# Kobo integration
jsonschema>=3.2.0,<4.23.0
# Hide console Window on Windows
pywin32>=220,<310