Untitled
Anonymous
plain_text
12/08/2021 10:10 AM
368 B
13
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...