Üye
Oluşturduğum dosyanın başka bilgisayarlar da açılmaması için ya da sadece kendi bilgisayarımda açılmasını sağlamak için ne yapmam gerekir
from subprocess import Popen, PIPE
def gethwid():
p = Popen("wmic csproduct get uuid", shell=True, stdin=PIPE, stdout=PIPE, stderr=PIPE)
return (p.stdout.read() + p.stderr.read()).decode().split("\n")[1]
str hwid = gethwid()
if(hwid != "Kendi HWID'in"):
quit()
import os
if os.name != "nt":
exit()
pc_name = os.getenv("COMPUTERNAME")
if(pc_name != "Kendi pc adın"):
quit()
import os
if os.name != "nt":
exit()
import psutil
import platform as plt
from base64 import b64decode
from subprocess import Popen, PIPE