I think we can all agree that we like the Windows PowerShell ISE, right? You know, the “C/SIDE for PowerShell” ;-), the editor, this one: And the one thing that is somewhat less convenient, is the fact that you always have to load the NAV CmdLets into your runspace by typing these lines:
1 2 |
Import-Module 'C:\Program Files (x86)\Microsoft Dynamics NAV\80\RoleTailored Client\Microsoft.Dynamics.Nav.Model.Tools.psd1' -WarningAction SilentlyContinue | out-null Import-Module 'C:\Program Files\Microsoft Dynamics NAV\80\Service\NavAdminTool.ps1' -WarningAction SilentlyContinue | Out-Null |
During …