我正在尝试隐藏从EXE文件弹出的控制台窗口。我从我自己的EXE(通过PyInstaller冻结的Python脚本)运行此EXE。
我发现,每当我通过IDLE或PyCharm运行脚本时,我都可以隐藏控制台窗口,一切正常。但是如果我将我的脚本变成EXE(使用pyinstaller --onefile
),那么它就无法正常工作。
我尝试了几乎所有针对此问题的Google和SO回复,但是如果我将脚本转换为EXE文件并运行它,我仍然不知道如何隐藏控制台窗口。
我试过的最后一个:
import subprocess
import win32gui
import time
proc = subprocess.Popen(["MyExe.exe"])
# lets wait a bit to app to start
time.sleep(3)
def enumWindowFunc(hwnd, windowList):
""" win32gui.EnumWindows() callback """
text = win32gui.GetWindowText(hwnd)
className = win32gui.GetClassName(hwnd)
#print hwnd, text, className
if text.find("MyExe.exe") >= 0:
windowList.append((hwnd, text, className))
myWindows = []
# enumerate thru all top windows and get windows which are ours
win32gui.EnumWindows(enumWindowFunc, myWindows)
# now hide my windows, we can actually check process info from GetWindowThreadProcessId
# http://msdn.microsoft.com/en-us/library/ms633522(VS.85).aspx
for hwnd, text, className in myWindows:
win32gui.ShowWindow(hwnd, False)
# as our notepad is now hidden
# you will have to kill notepad in taskmanager to get past next line
proc.wait()
答案 0 :(得分:2)
你可以在Pyinstaller中使用-w选项。
例如,
pyinstaller -F -w FILENAME
您可以通过excute
了解更多信息pyinstaller -h
我希望这可以帮到你。
答案 1 :(得分:1)
如果您使用的是 spec
文件 - 将 console=False
添加到您的 EXE(...)
命令:
exe = EXE(pyz,
...
console=False )
答案 2 :(得分:0)
横向思考,解决方案可能是从Windows的任务计划程序应用程序*运行您的应用程序,并将任务设置为Run whether user is logged on or not
。
Run whether user is logged on or not
设置会导致应用程序无形地运行,这意味着屏幕上不会显示widnows,任务栏图标或控制台窗口。
*默认情况下,任务计划程序安装在Windows中。在Cortana中键入其名称以运行
答案 3 :(得分:0)
好吧,我很晚才知道。您可以使用--noconsole
诸如此类:
python PyInstaller Filename.py --onefile --noconsole
这将隐藏控制台窗口,程序将正常执行。