隐藏Python运行程序



我想使用Python运行隐藏在Windows中的.exe文件。我使用了以下命令,但是隐藏的程序没有运行。

from subprocess_maximize import Popen
Popen(r"C:Appstest.exe",show='hidden', priority=1)

如果你想让python隐藏cmd控制台使用:

import win32gui, win32con
hide = win32gui.GetForegroundWindow()
win32gui.ShowWindow(hide , win32con.SW_HIDE)

或者如果你想从python中隐藏CMD,使用:

import ctypes
ctypes.windll.user32.ShowWindow( ctypes.windll.kernel32.GetConsoleWindow(), 6 )
.pyw扩展名保存程序,现在它将以pythonw.exe打开。没有shell或cmd窗口

相关内容

  • 没有找到相关文章

最新更新