Table of Contents |
---|
...
xattr -c nameofthe.dmg
Windows
Imaging
Change Image Host Name
After imaging (and NOT auto rebooting), return to main menu. Go into Recovery and open Command Prompt.
i:\imaging\bin\changeimagehostname.cmd
then press enter and input the new host name as prompted
Batch File Reference
http://steve-jansen.github.io/guides/windows-batch-scripting/index.html
...
Initialize-Disk -Number 0 -PartitionStyle GPT
Getting System Info
Detecting Windows Version
CMD:
ver | find "6.3" >nul && goto WIN8
...
Get-WindowsEdition -Verbose -Online
Detecting Hardware Model
if /i "%WMICModel:~0,7%"=="20074DU" set TP=y
...