CD Rom Authoring Q

Out of context: Reply #3

  • Started
  • Last post
  • 8 Responses
  • ozhanlion0

    this is no go ?

    http://www.ezau.com/latest/artic…

    How to Add an Icon

    If you want your CD to have it's own icon displayed in the My Computer window as the CD drive, add an extra line of code so that the autorun inf file looks like the example below:

    [Autorun]
    open=AutoRunPro.exe /s
    icon=youricon.ico
    [AutorunPro]
    Run1=index.html

    Replace youricon.ico with the actual name of your icon. You can specify any path to the icon which is in your directory structure. For example, if your icon is in a folder called images and this folder is in the root directory, the code to use would be like the example below:

    [Autorun]
    open=AutoRunPro.exe /s
    icon=images\youricon.ico
    [AutorunPro]
    Run1=index.html

    Note: You do not need to add the icon= parameter when autorunning exe files because the application will already have an icon and it will be displayed.

View thread