import subprocess import os def get_id(): if 'nt' in os.name: return subprocess.Popen('dmidecode.exe -s system-uuid'.split()) else: return ...
確定! 回上一頁