We have an application that is regular deployment to live. Of course we try to test it as much as possible before. Many settings is stored in a ini-file
An example setting for a path
Live
AccountingSystemExportPath=\\org2000Appserv\UserFolders\Econet
Test
AccountingSystemExportPath=\\TestAppServ\Attracs\Peura\RC\UserFolders\Econet
So the problem is that setting is different in live and test. What I want is a way to map a servername (\\Org2000AppServ in this case) to a shared network folder.
So something like
SUBST Org2000AppServ \\TestAppServ\Attracs\Peura\RC
If above command work I could have same setting to live and test and testing would be more reliable. Any hints ?