adodb
Version:
Package for executing SQL queries to MS Access databases intended for use on Windows XP and later. In the client-server mode, the client part can be used without restriction of the operating system.
18 lines (12 loc) • 358 B
JavaScript
;
const path = require('path');
var Service = require('node-windows').Service;
var svc = new Service({
name: 'adodb-server',
script: path.join(__dirname,'./server.js')
});
svc.on('uninstall',function(){
console.log('Uninstall complete.');
console.log('The service exists: ',svc.exists);
});
svc.uninstall();