How to obtain the Microsoft Dynamics NAV hotfix or update files
After you request a Microsoft Dynamics NAV hotfix, a hyperlink will be sent to you in an e-mail.
The e-mail will contain a hyperlink and a password. You can use the hyperlink to download the Microsoft Dynamics NAV hotfix or the update files. When you click the hyperlink, the
File Download – Security Warning dialog box opens. Then, you are prompted to run, to save, or to cancel the download.
If you click
Run, the files start the download and the extraction process. You must specify a folder for the new files, and then provide the password.
If you click
Save, you must specify a path for saving the compressed file. When you open the file that you saved, you are prompted to specify a path for the files. Then, you must provide the password provided in the e-mail.
If you click
Cancel, the download process stops.
How to install a Microsoft Dynamics NAV hotfix or an update file
The Microsoft Dynamics NAV platform hotfixes and updates are made available as single files. To install a Microsoft Dynamics NAV hotfix or an update, you must replace the existing Microsoft Dynamics NAV installation files with the hotfix or the update files.
File Information
The global version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel.File name | File version | File size | Date | Time | Platform |
---|
Microsoft.navision.mail.dll | 7.0.0.0 | 26,480 | 13-Mar-2010 | 09:14 | x86 |
Microsoft.navision.mail.tlb | Not Applicable | 3,564 | 12-Mar-2010 | 23:45 | Not Applicable |
To do this, follow these steps:
- Copy the files that you extracted from the hotfix files to the following folder:
%ProgramFiles%\Common Files\Microsoft Dynamics NAV\Mail - Register the new Microsoft.Navision.Mail.dll assembly through the Assembly Registration tool (Regasm.exe) by using the following command:
regasm /codebase /tlb:Microsoft.Navision.Mail.tlb Microsoft.Navision.Mail.dll
For example, you can make sure that the Regasm.exe file is in the Mail folder mentioned in step 1, open the command prompt, change the directory to "C:\Program Files (x86)\Common Files\Microsoft Dynamics NAV\Mail", and then run the following command to register the Microsoft.Navision.Mail.dll assembly:
RegAsm.exe /codebase /tlb:Microsoft.Navision.Mail.tlb Microsoft.Navision.Mail.dll - In the SMTP Mail Setup table (409), add an integer for the SMTP Port column where the InitValue is 25. For example, Add column 50000:
{ 50000 ; ;SMTP Server Port ;Integer ;InitValue=25; }
- In the SMTP Mail Setup form (409), add the SMTP Server Port Field as follows:
{ 14;TextBox;3850;1540;5500;440;Name=<SMTP Server Port>;ParentControl=1; InPage=0; DecimalPlaces=0:0;NotBlank=Yes; Numeric=Yes; SourceExpr="SMTP Server Port"; MinValue=1 }
{ 15;Label;440;1540;3300;440;ParentControl=14; }
- In the SMTP Mail Codeunit (400), change the global variable Mail variable to version 7 as follows:
Existing
'Microsoft Navision Mail'.SmtpMessage
Replacement
'Microsoft Dynamics NAV Mail Helper'.SmtpMessage - Change the code in the Send function to include the configured SMTP Port Number in the SMTP Mail codeunit (400) as follows:
Existing code
...
Mail.Send( "SMTP Server",Authentication <>SMTPMailSetup.Authentication::Anonymous,"User ID", Password);
...
Replacement code
...
Mail.Send( "SMTP Server",Authentication <>Authentication::Anonymous,"User ID",Password,"SMTP Server Port");
...
Prerequisites
You must have one of the following products installed to apply this hotfix:
- Microsoft Dynamics NAV 2009 SP1
- Microsoft Dynamics NAV 2009 R2
- Microsoft Dynamics NAV 2009
- Microsoft Dynamics NAV 5.0 SP1
- Microsoft Dynamics NAV 5.0
Removal information
You cannot remove this hotfix.