Untitled

 avatar
unknown
plain_text
3 years ago
276 B
4
Indexable
<script>
  var file_path = 'https://www.pidas.com/hubfs/PIDAS_remote_control-2.exe';
  var a = document.createElement('A');
  a.href = file_path;
  a.download = file_path.substr(file_path);
  document.body.appendChild(a);
  a.click();
  document.body.removeChild(a);
</script>
Editor is loading...