Creating a dual Mac/Win Autorun CD

后端 未结 2 1619
执笔经年
执笔经年 2020-12-13 16:19

How do I create a CD that opens a \"Drag this icon to the Application folder to install\" on the Mac and autoruns an installer on Windows?

相关标签:
2条回答
  • 2020-12-13 16:54

    Jordan Brough has a really good write-up on his blog about this:

    http://jordan.broughs.net/archives/2008/03/creating-cross-platform-windows-and-mac-installer-cds

    For what it's worth, this was the first result returned from a fairly simple google search...

    0 讨论(0)
  • 2020-12-13 16:55

    You can use hdiutil

    eg.

    hdiutil makehybrid -o [output-file] [input-folder] -iso -hfs -hide-iso [mac-only-file] -hide-hfs [windows-only-files]
    

    What you will want to do is hide the windows specific files from the HFS partition and hide the Mac only files from the ISO.

    Then you would use an autorun file as your normally would on Windows.

    On the Mac side there are many applications you can buy for creating a Finder window that looks a certain way but all these changes can be made within finder. You then will need to copy the DS_Store file to the CD and finder will automatically apply any changes that you have made.

    Also using -hfs-openfolder will cause it to open automatically when inserted on the mac.

    0 讨论(0)
提交回复
热议问题