├── .gitattributes ├── .gitignore ├── GenSMBIOS.bat ├── GenSMBIOS.command ├── GenSMBIOS.py ├── LICENSE ├── README.md └── Scripts ├── __init__.py ├── downloader.py ├── plist.py ├── prefix.json ├── run.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/.gitignore -------------------------------------------------------------------------------- /GenSMBIOS.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/GenSMBIOS.bat -------------------------------------------------------------------------------- /GenSMBIOS.command: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/GenSMBIOS.command -------------------------------------------------------------------------------- /GenSMBIOS.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/GenSMBIOS.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/__init__.py -------------------------------------------------------------------------------- /Scripts/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/downloader.py -------------------------------------------------------------------------------- /Scripts/plist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/plist.py -------------------------------------------------------------------------------- /Scripts/prefix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/prefix.json -------------------------------------------------------------------------------- /Scripts/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/run.py -------------------------------------------------------------------------------- /Scripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/corpnewt/GenSMBIOS/HEAD/Scripts/utils.py --------------------------------------------------------------------------------