mirror of
https://github.com/gnh1201/welsonjs.git
synced 2024-11-26 23:41:42 +00:00
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
var PS = require("lib/powershell");
|
|
//var REGISTRY = require("lib/registry");
|
|
|
|
return {
|
|
main: function() {
|
|
console.log("Starting unlock files...");
|
|
PS.execCommand("dir | Unblock-File");
|
|
//REGISTRY.import("app\\assets\\reg\\Add_URI_Scheme");
|
|
//REGISTRY.import("app\\assets\\reg\\Allow_ADO_CORS");
|
|
console.log("done");
|
|
}
|
|
};
|