This will be a short post. I updated the Download Helper for Dynamics 365 Business Central (first described here) module.
For a demo I needed to have the functionality for an older version (NAV 2018). So I figured to just add it for 2015 and 2017 as well. Now you are able to also download the images for
- Dynamics NAV 2015
- Dynamics NAV 2017
- Dynamics NAV 2018
You can either specify it via the version number or the year. Following some examples:
# Gets the URL for NAV 2015 CU35, DE-locale
Get-BusinessCentralDownloadUrl -Version 2015 -CumulativeUpdate CU35 -Language DE -Verbose
# Gets the URL for NAV 2016 CU12, FR-locale
Get-BusinessCentralDownloadUrl -Version 9 -CumulativeUpdate CU12 -Language FR -Verbose
# Gets the URL for Update 15.1 of Dynamics 365 Business Central 2019 Release Wave 2, W1-locale
Get-BusinessCentralDownloadUrl -Version 15 -CumulativeUpdate CU1 -Language W1 -Verbose
I didn’t add any aliases (like Get-DynamicsNavDownloadUrl
, instead of Get-BusinessCentralDownloadUrl
), but I guess that’s fine 😉
If you have any problems with it or know better ways to handle this requirement I’m looking forward to your comment here or your issue on Github 😊