Edge실행

window.location = 'microsoft-edge:' + window.location;

경고없이 창닫기

window.location = 'microsoft-edge:'+ window.location;
setTimeout(function(){
  window.opener = 'Self';
  window.open('','_parent','');
  window.close();
}, 1000);