Hi all
Can anybody tell me the absolute minimum files needed to run 3.70 as client ?
I know that I can do a minimum install, but what I want to do is copy the absolute minimum into the client, register 1-2 dll's and then just run through a client installed on a network drive.
I have the client files on the network drive, and with a minimum install on local client I have no problem running through the network drive (obviously) But what I want is to get as close as possible to running "only" a shortcut from the clients
Don't just take my word for it, test it yourself
0
Answers
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
xcopy "%1\program files\*.*" "%ProgramFiles%\*.*" /S
xcopy "%1\Common\*.*" "%CommonProgramFiles%\*.*" /S
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\NFEncrypt.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\NSObjectXProxy.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\ROTAccess.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\ImageSelector.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\CompNotesHtml.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\comdlg32.ocx"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\CGReqClient.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\CPHandler.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\CPTimer.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\csearch.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\NATHash.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\NSComCom2.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\OLWrapper.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\OLAddin.dll"
regsvr32 /s "%ProgramFiles%\Microsoft Business Solutions-Navision\Client\NaviService.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Application Handler\NSAppHandler.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Mapi\MSMAPI32.OCX"
regsvr32 /s "%CommonProgramFiles%\Navision\Timer\NTimer.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Communication Component\MSMQBusAdapter.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Communication Component\NPipeBusAdapter.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Communication Component\NSComCom2.dll"
regsvr32 /s "%CommonProgramFiles%\Navision\Communication Component\SocketBusAdapter.dll"
Then i have an additional question (I'm lazy) I'm going to make a .cmd or similar file on the network share, and in that I'll have to make it register all the needed files. But since i don't want to register all the files every time the client starts (Here comes the question
If you need to work with multiple versions you can only have the latest version actually installed, and run older versions from a copy of the cient folder from the product cd. As long as you don't use any external apps you should be fine doing this and you don't have to register any dll's.
RIS Plus, LLC
create some file as flag that on this computer is all registered (for example somewhere on the C: ) and thes existence of this file before you registers the dlls...
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
kine: While your workaround will work, there has to be some command you can call to see if a dll is registered. Unfurtunately it's not in regsvr32 :evil:
RIS Plus, LLC
you can use some VB script or something for that. See http://experts.about.com/q/Visual-Basic ... stered.htm
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Fair enough, but I would like to know why ? If I have all the NAV dll's in the NAV folder on the network, and I (admin) control them, why/what will the problems be ?
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
navision link ? Link to email and web, or are you thinking about something else ?
As the instalation stands (No install, just copy folder to network, start fin.exe) I get errors pressing email/web, but also help (F1) Does Navision demand that the dll's are installed locally for them to work ?
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
Aah, never used that :roll: so that feature wont be missed :whistle: Anything else ?
Just some food for thought though. When (not if, because you WILL run into issues) you have a problem and MS or your solution center finds out you did it this way, I bet they will say 'before we come out you need to install the product with the product cd'.
RIS Plus, LLC
As a side note i can add that this used to be possible.
You have to go to the computer one way or the other. As the admin every computer goes through your hands first anyway. What's the big deal in installing it the right way or putting the shortcut on there? If you need to register dll's you have to copy those files anyway, why not pop in the cd and be done with everything?
RIS Plus, LLC
To make an horrific example. Why invent the wheel, when walking has always worked ?
MVP - Dynamics NAV
My BLOG
NAVERTICA a.s.
RIS Plus, LLC