UNPKG

node-vbox

Version:

Interact with virtualbox from nodejs

14 lines (8 loc) 276 B
const execute = require('../../lib/executeCommand'); module.exports = (vm, type) => { return new Promise((resolve, reject) => { execute(['modifyvm', '"' + vm + '"', '--vrdeauthtype', type]).then((string, stderr) => { resolve(); }).catch(reject); }); };