CD-Menu Creator: Using wildcard characters in a file path

Normally you create a link between a menu button and a specific file on the disc or USB stick by specifying a file path to the file. For example: ‘Files\Button1\MyDoc.doc‘. When a user clicks on the button, the file (in this case ‘Files\Button1\MyDoc.doc‘) will be opened.

The 'Add Button'dialog box (example 1)

If the filename must be changed, for any reason, the whole menu must be created again when this technique is used. Otherwise the file will not be found when the user clicks on the button.

asteriskBut starting with version 8.5.3 of CD-Menu Creator, an alternative method can be used. Instead of specifying a file path to one specific file, for example ‘Files\Button1\MyDoc.doc‘, you can use a wildcard character (an asterisk: *) and specify a file path to the first occurrence of a file in a folder with a specified filename extension, for example ‘Files\Button1\*.doc‘. In this case the first file in the ‘Files\Button1‘ folder that has a ‘.doc‘ filename extension in its filename will be opened.

The 'Add Button'dialog box (example 2)

This technique allows you to change the filename of the file in the folder without re-creating the whole menu. The filename extension must be the same, but the rest of the filename can be changed freely on the CD/DVD/USB stick.

Works with documents and programs
This technique with a wildcard character can be used with the following three button commands:

Run Program
Run Program & Close
Show Document

Filename examples
Below are some examples of how filenames can be built when using this technique:

MyDoc1.doc
MyDoc2.doc
LatestNews-20170528.doc
LatestNews-20170529.doc
Journal-John-Smith.doc
Journal-Sam-Johnson.doc

File path examples
Below are some examples of how the file path can be built:

Files\Button1\*.doc
Files\Button2\*.xls
Files\Button3\*.exe

Files\Button4\journal*.doc
Files\Button5\app*.exe

An asterisk (*) is the only supported wildcard character. The asterisk must always be to the left of the dot that starts the filename extension.

Tip
When you create your menu for the first time, it can be a good idea to first select a source file and specify a complete file path to this file (do not use wildcards yet). After you have created your menu and everything works as expected with the selected file, you can change the file path to a file path that contains a wildcard character. Then you create your menu again. Henceforth you can change the filename of the file freely directly in the folder on disc or USB stick. You don’t need to create the menu again.

How to install a font with Visual Installer

True Type font logoSometimes the fonts that are included in Windows are not enough, and you need to distribute your own font(s) with your software. But before they can be used in another computer, they must be installed in the right system folder and registered in the system.

Luckily Visual Installer supports installation and registration of fonts. So it is easy to add a font to your installation and have it installed and registered in another computer. In the tip below we will show how to add a font file to an installation project and how to make sure it will be registered in the system during the installation.

How to install and register a font with Visual Installer

1. Open your project or create a new project.

2. Choose the menu item List – Add – Add files.

3. Browse and select your font file (must be a file with the filename extension .ttf).

(If you want to add a font file that is located in C:\Windows\Fonts, you can first copy the font file to another folder that you create, for example C:\MyFonts. Thereafter you add the font file to Visual Installer´s file list from C:\MyFonts. Adding the font directly from C:\Windows\Fonts may not always work because it is a special folder.)

4. Click Open in the Add files dialog box.

5. In the next dialog box that is shown, make sure that the destination folder is %FONTDIR.

6. Click OK to close the Destination folder dialog box.

7. Now select the font file in the file list.

8. Choose the menu item List – Register font.

9. Enter a font name in the Font name text box in the Register font dialog box.

10. Make sure that the Register this font after installation option is selected.

11. Click OK.

You have now added a font file to your installation project and it will be installed in Windows font folder, and registered in a proper way, during the installation.

How to check that a file is dual code signed

In Visual Installer 2015 we added a new function that makes it possible to dual code sign setup files. You can read about the new function in the following blog post:

> Visual Installer now supports SHA-2 and dual code signing

Before you distribute your installation package it can be a good idea to check that the dual sign process succeeded. You can do it easily by following the steps below:

1. Create your setup package from Visual Installer.
2. Locate the setup package file via Windows Explorer.
3. Right-click on the file.
4. Choose the Properties menu item in the local menu that is opened.
5. Open the Digital Signatures tab.

If the file has been successfully dual signed, there should be two rows in the signature list:

Windows Properties window

The digest algorithms should be sha1 and sha256, as shown in the picture above. If there is only one row in the signature list, the dual code sign process failed or you have not set Visual Installer to dual code sign setup packages. Read this tip to get more information about how to change code sign settings in Visual Installer.

See also
> What is SHA-1 and SHA-2 and what’s the difference between them?
> How to code sign a setup package (Visual Installer tip)

The %REG1 to %REG5 variables in Visual Installer

In this blog post we explained how to use variables in Visual Installer. Many variables get their values automatically from known locations in Windows Registry, but there are also some variables in Visual Installer that can obtain their values from locations in Windows Registry that you specify.

The %REG1 to %REG5 variables
There are five variables in Visual Installer that can obtain their values from keys and value names in the Windows Registry that you specify. They have the following names: %REG1, %REG2, %REG3, %REG4, and %REG5.

How to specify a location in Registry to read
To specify a key and value name in the Registry for any of these variables, you must first open the Variables dialog box in Visual Installer’s editor. You can do this by first opening the Registry or INI files tab in Visual Installer’s editor, and then click on the Variables button, that is located at the bottom right of the editor:

The Variables button

The following dialog box will be opened if you click on the button:

List with variables

If you scroll to the bottom of the list, you will find the User variables section:

List with variables - The User variables section

As default, these variables are empty but you can specify a key and value name for them by clicking on the Change values button (in the bottom left), and then specify the information in the Change contents for variables dialog box that is opened:

The 'Change contents for variables' dialog box

To specify a key and value for example for the %REG1 variable, you need to enter the information at the %REG1 text box in the User variables section. For example like this:

HKEY_LOCAL_MACHINE\SOFTWARE\SamLogic\Visual Installer\10.5 :: Path

HKEY_LOCAL_MACHINE\SOFTWARE\SamLogic\Visual Installer\10.5” is the key and “Path” is the value name. You can read more about this format in Visual Installer’s User Guide.

In the picture below we have specified keys and values for both the %REG1 variable and the %REG2 variable:

A key and value name has been specified for the REG1 and REG2 variables

You can click OK to save the keys and value names. In the Variables dialog box you will now see the information that you entered in the previous dialog box in the Contents column of the variable list. You can also see the current value for the variable (that is read from the Registry) by hovering the mouse pointer over the variable name, as shown in the picture below:

Shows the tip text function

During the installation, the %REG1 to %REG5 variables will read its contents from the end-users Registry. If no contents is available, the variables will be empty.

See also
> Your project’s bitness affects where the %REG1 to %REG5 variables get their values
> Variables in Visual Installer

Your project’s bitness affects where the %REG1 to %REG5 variables get their values

As explained in this blog post, the %REG1 to %REG5 variables in Visual Installer get their values from the Windows Registry. But you should be aware of that there are two Registry in Windows – a 32 bit Registry and a 64 bit Registry – and your project settings will decide which of these Registry to use.

If you start Visual Installer’s editor and open the Setup options dialog box and the 32/64 bit tab, and look in the Bitness (32 or 64 bit) frame, you will see that there are two options that decide if the installation project is a 32 bit project or a 64 bit project (see the picture below):

The Setup options dialog box

If you install 32 bit files you should select the first option (The program that will be installed is 32 bit) and if you install 64 bit files you should select the second option (The program that will be installed is 64 bit). The first option is always selected as default.

These options will also affect where the %REG1 to %REG5 variables get their values. If you have selected The program that will be installed is 32 bit, the variables will get their values from the 32 bit Registry and if you select The program that will be installed is 64 bit, the variables will get their values from 64 bit Registry.

There are two Registry editors in Windows
You should also be aware of that there exist two Registry editors in Windows. One of them handles the 32 bit Registry and one of them handles the 64 bit Registry. The filename of the Registry editor is always the same, regedt32.exe, but you can launch the different versions from different folders in Windows:

32 bit version: C:\Windows\SysWOW64
64 bit version: C:\Windows\System32

See also
> The %REG1 to %REG5 variables in Visual Installer
> The ‘Program Files (x86)’ and ‘SysWOW64’ folders explained

Which video formats does CD-Menu Creator support?

In CD-Menu Creator you can add a video clip or a movie to a menu interface. You can show the video directly in a menu window, or you can show the video in a separate window that is opened when the end-user clicks on a menu button.

Supported video formats
Using a video in a menu interface may improve the end-user´s first impression of your product, but when you select a video to a menu you should be aware of the following two things:

– Not all video formats are supported by CD-Menu Creator
– Not all CODECs are supported by default in Windows

We recommend you to choose a video that is saved in the MPEG or WMV format. Or an AVI video that you know uses a basic CODEC (coder-decoder) that all Windows support. Be aware of that many AVI videos has been created with a CODEC that not all end-user´s Windows support by default. The end-user must have same CODEC installed in the computer that was used when the video was created, otherwise the video can not be shown.

Avoid MPEG-4
Today many create videos in the MPEG-4 (MP4) format, but it is not recommended to select a MPEG-4 video to a menu created with CD-Menu Creator. Although many end-users will have a media player that can play the MPEG-4 video, the necessary CODEC is often not available for other software without a separate installation of the CODEC. So therefore, to reduce the risk for problem, we recommend you to avoid MPEG-4 files with CD-Menu Creator.

We recommend you to test the menu in an empty Window
To be sure that the video you added to a menu will be played without any problem, we recommend you to test the menu in a computer with an empty Windows (a computer where only Windows but no other software has been installed). It can be a virtual computer or physical computer.

By testing the menu and the video in a computer with an empty Windows, you will discover if the video is dependent of a CODEC that is not installed by default in Windows.

Summary – Supported video formats / filename extensions
When you select a video file to a CD-Menu Creator menu, you should select a file with one of the following filename extensions:

.MPG or .MPEG : (MPEG) Recommended format, works almost always.
.WMV : (WMV) Recommended format, works almost always.
.AVI : (AVI) Works if a proper CODEC has been chosen to the video.

If you have a video file with the .MP4 filename extension, we recommend you to convert it to one of the video formats above. There are many conversation programs that can be downloaded from the Internet that makes the conversion. Or even better, if it is possible, contact the source and try to get the same video in one of the video formats mentioned above.

Variables in Visual Installer

If you have used a programming language before you are probably very familiar with variables. If not, you can read this Wikipedia article to get a basic knowledge about variables.

Also Visual Installer can handle variables. Most variables are automatically set during the setup process and are used to handle for example drive letters, system folders, application folders, date, time, license keys, version information etc. Variables can also be used to retrieve values from the Registry in Windows.

Variables can be used in many places in Visual Installer, for example in all main tabs in the editor (e.g. File list, Registry, INI files, Components tabs etc.). Variables can also be used with the most setup dialog boxes in Visual Installer and with the scripting language.

The %DESTDIR variable
One of the most used variables in Visual Installer is the %DESTDIR variable. This variable contains the main destination folder for the setup project. The contents is read from the Main folder text box in the File list tab.

The 'Main folder' text box

In the main folder text box it is common to include the %PROGRAMFILES variable. The %PROGRAMFILES variable will be replaced with the current path to the Program Files folder in Windows during the installation. We explain more in this blog post:

> Visual Installer: How do I install files to the Program Files folder?

List with variables
You can open and view a list with all available variables in the Visual Installer editor. If you open for example the Registry tab in the editor and clicks on the Variables button, the following window is opened:

List with variables

In the Variables window you can see a list of all available variables in Visual Installer. To get a description of each variable, you can press the F1 key.

(If you double-click on a variable name in the Variables window, the variable will be inserted at the cursors position, if a text editor was active before you clicked the Variables button.)

Environment variables
Visual Installer can also handle Windows environment variables. You can read more about this in the following blog post:

> Using environment variables in Visual Installer

How to make a menu window always stay on the top

When a user opens a menu interface created with CD-Menu Creator, the menu interface will only stay on the top (above other windows) as long as the user does not click on another window or does not activate another program via Windows’ task bar.

However, there is an option in CD-Menu Creator that you can use to assure that the menu window is always on the top, also if the user clicks on another window or activates another program. This is done by selecting the Menu is always on the top option in the Window tab in CD-Menu Creator (see the red box in the picture below).

CD-Menu Creator editor - Window tab

When you use this option, you should not make the menu window too large in size, because the user can not access a program that is located below the menu window (hidden by the menu window); only a program that is located next to the menu window.

How to view source paths in the file list in Visual Installer

As default source paths for files in the file list are not shown in Visual Installer, but it is easy to turn on this setting, so source file paths will be shown in the editor. The short tip below shows how to do this:

1. Start Visual Installer.
2. Choose the Special – Editor options menu item.

Special - Editor options

3. Select the Show source file paths in the file list option in the dialog box that opens.

Editor Options

4. Press OK to close the dialog box.

Now you have enabled the show source file paths option in Visual Installer. The picture below shows how it may look like:

Visual Installer editor

The source paths are displayed in Source column in the file list.

See also
> How to add more files from a previously used folder