hey guys!
client is changing servers and what I need to do is point the old client to the new server etc. I chnaged it in the administraiton. However, it seems not to be working as it basically says that it cannot connect to the server.
all i want to do is that when the users open NAV, to open the new link for the new server.
Can i do this in somehitng like the configuraiton mode or somehting?
0
Answers
C:\Users\"user"\AppData\Roaming\Microsoft\Microsoft Dynamics NAV\"nav version"
ClientUserSettings.config
this is the only way i know
https://devblogs.microsoft.com/scripting/using-group-policy-to-deploy-a-windows-powershell-logon-script/
http://woshub.com/running-powershell-startup-scripts-using-gpo/
@echo off
@setlocal enableextensions
cd "AppData\Roaming\Microsoft\Microsoft Dynamics NAV\80" > NUL
ECHO F|xcopy "%~dp0NAV_new_ClientUserSettings.config" "ClientUserSettings.config" /Y >NUL
CLS