Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python hide console

# pip install pywin32 -> This will install the libs that are required
import win32gui, win32con

hide = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hide , win32con.SW_HIDE)
 
PREVIOUS NEXT
Tagged: #python #hide #console
ADD COMMENT
Topic
Name
9+3 =