This repository has been archived on 2023-11-14. You can view files and clone it, but cannot push or open issues/pull-requests.
portapy/uninstall.js

6 lines
207 B
JavaScript
Raw Normal View History

2018-10-30 19:54:49 -04:00
const path = require('path');
2018-10-30 20:19:30 -04:00
let pythonPath = path.resolve(__dirname, 'Python-Installer', 'python-3.7.1.exe');
2018-10-30 19:54:49 -04:00
2018-10-30 20:19:30 -04:00
require('child_process').execSync(`${pythonPath} /passive /uninstall`, {
stdio: 'inherit'
});