这个文件是记录安装系统的一些信息 #version=DEVEL # System authorization information auth --enableshadow --passalgo=sha512 # Use CDROM installation media cdrom安装方式 # Use graphical install graphical 图形界面安装方式 # Run the Setup Agent on first boot firstboot --enable ignore
运行code import os, time import sys import re def search(path, name): for root, dirs, files in os.walk(path): if name in dirs or name in files: flag = 1 root = str(root) dirs = str(dirs) return os.path.join(root) return -1 # find vcvarsall.bat save add