Simple utility to enable / disable starting a program on Windows boot.
npm install start-on-windows-boot javascript
var startOnBoot = require('start-on-windows-boot');
startOnBoot.enableAutoStart('MyApplication', 'C:\\Program Files\\MyApplication\\MyApplication.exe');
`
Docs
$3
Adds the auto-start registry record of a program.
#### name
Type: string
The name of the program.
#### file
Type: string
The full path of the programs' executable.
#### callback
Type: Function
Optional callback function.
$3
Removes the auto-start registry record of a program.
#### name
Type: string
The name of the program.
#### callback
Type: Function
Optional callback function.
$3
Gets the value of the auto-start registry record of a program.
#### name
Type: string
The name of the program.
#### callback
Type: Function`