This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Depends on | |
| # ./msadc/msadcf.dll # https://stackoverflow.com/a/54931661/1259408 | |
| # ./msadc/msadcfr.dll | |
| # ./msadc/msadcs.dll | |
| # ./msvcrt/msvcrt20.dll # from a Windows 7 installation, for Crystal Reports only | |
| # ./vb6/vb98ent.stf # attached in this gist, customizable with acost.exe | |
| # ./vb6/vb6_1.iso # https://archive.org/download/en_vb6_ent_cd | |
| # ./vb6/vb6_2.iso | |
| # ./vb6/vb6_sp6.iso # https://my.visualstudio.com/downloads 'visual studio 6.0' | |
| # ./vb6/updates/* # e.g. VB60SP6-KB2708437-x86-ENU.msi, VB60SP6-KB3096896-x86-ENU.msi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| blueprint: | |
| name: Add Hildebrand CAD Entities | |
| description: Create devices and entities using MQTT discovery | |
| domain: script | |
| source_url: https://gist.github.com/si458/2a9ec8d0e2b07205e4859886cc5222b0 | |
| input: | |
| input_cad_mac: | |
| name: MAC Address | |
| description: "MAC address of CAD (without :s)" | |
| default: "" |
PCs have SMBIOS data containing small amount of identifying information. One piece of information in this SMBIOS data is the universally unique identifier. Some PC and motherboard manufacturers fail to set this, often leaving the UUID set to 03000200-0400-0500-0006-000700080009.
If your system uses an AMI firmware (sometimes called AMIBIOS), you may be able to use AMI utilities to reset the UUID. Obtain AMIDEEFIx86.efi and an EFI shell executable, such as from inside m1ujt73usa.zip for the Lenovo ThinkStation P330 Tiny download center.
Once you have those two files, create USB drive with the FAT32 filesystem and the following structure:
\
\AMIDEEFIx86.efi
\efi
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # Define storage variable | |
| STORAGE=nas | |
| # Install necessary tools | |
| echo "Checking tools" | |
| apt update -y && apt install nano wget curl libguestfs-tools -y | |
| # Remove old image |
OlderNewer