Reputation: 2012
I am trying to create a service. I am using nassql.exe, this is what I have done
But It's not added into the list of services, like
I am new to Navision, what I need to do for creating it as a service like above two by default services. Thanks.
Upvotes: 0
Views: 507
Reputation: 2236
try this:
nassql.exe appservername=JB-xx23NAV-SQL, servername=JB-xx23NAV,database="Demo Database NAV (6-0)", company="CRONUS India Ltd.", nettype=tcp,startupparameter=”JOBQUEUE”, objectcache=40000, installasservice
Upvotes: 0
Reputation: 2334
You missing a parameter installasservice
.
nassql.exe appservername=TheNasName, servername=TheServerName, database=TheDatabaseName, company="The Company", nettype=tcp, startupparameter=SomeStartupParameter, installasservice
Without this parameter you launching NAS from comandline. For example to debug it.
There is also uninstallasservice
parameter to remove previously installed service.
Upvotes: 1