davidtheclark / locate-ie

Approximates the current location of Internet Explorer on your system

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

locate-ie experimental

Find Internet Explorer on your system.

Usage

var locateIe = require('locate-ie');
// Use a callback
locateIe(function(l) {
  console.log(l);
});
// Use the returned Promise
locateIe.then(function(l) {
  console.log(l);
});

CLI Usage

stdout path to IE (or null):

> locate-ie
# C:\Program Files\Internet Explorer\iexplore.exe

About

Approximates the current location of Internet Explorer on your system

License:MIT License


Languages

Language:JavaScript 100.0%