我已经通过PYQT5和python 3.6设计了一个应用程序,通过在“ lineEdit”中写入进程名称,然后按“ kill”按钮将其杀死,从而杀死了本地主机中的进程。
我想要的是通过首先获取数据来杀死远程计算机中的进程,然后检查要杀死的进程的名称,然后检查BOOM!。
有什么想法吗?
谢谢。
仅在本地PC上杀死本地主机进程的代码。
def Process(self):
x=self.lineEdit.text()
self.textBrowser.clear()
for proc in psutil.process_iter():
if proc.name()==x:
proc.kill()
self.lineEdit.clear()
QMessageBox.information(self, "Success", x + " has been terminated")
return
for proc in psutil.process_iter():
if proc.name()!=x:
print(proc)
QMessageBox.information(self, "Error","The process " +x + " is not found")
return