Pro/E Schools Ed, in disk images? (ghost/WDS)
I use disk imaging to make maintenance of our computer labs easier. I have one image for the business education lab, one image for the elementary computer lab, one image for the industrial arts lab, and so forth.
How do I go about including Pro/E schools edition in these images? I see something about the license being "locked to the MAC address", though I haven't gone deep into testing this yet.
Is it the tiny license file that is all that really matters between the machines? If so, then I can store backups of the license files on the network and drop them into place on each machine after the imaging is finished.
Probably could write up an automatic AutoIT post-imaging script to handle this....
$LAN_MAC = GetHardwareMAC("Local Area Connection")
IF $LAN_MAC = "11:22:33:44:55:66" THEN
COPY "\\Server\share\imaging\ProE-Licensing\112233445566\*.* C:\ProE-License\."
END IF
IF $LAN_MAC = "11:22:33:44:55:77" THEN
COPY "\\Server\share\imaging\ProE-Licensing\112233445577\*.* C:\ProE-License\."
END IF
IF $LAN_MAC = "11:22:33:44:55:88" THEN
COPY "\\Server\share\imaging\ProE-Licensing\112233445588\*.* C:\ProE-License\."
END IF

