var WShell = WScript.CreateObject('WScript.Shell');
var popup = WShell.popup('Background Music Player Troll\nCopyright (C) Ryan Zhang 2017. Licensed under CC-BY-NC 4.0\n\nPress OK to start the script or CANCEL to abort the script.\nOnce the script starts, the file can be deleted.', 0, 'Background Music Player Troll (Nyan Cat)', 1)
if(popup === 2){
WScript.Quit()
}
while (true){
var oPlayer = WScript.CreateObject('WMPlayer.OCX')
oPlayer.URL = 'https://web.archive.org/web/20170517005627/http://www.nyan.cat/music/technyancolor.mp3'
oPlayer.controls.play()
while (oPlayer.playState != 1 ){
WScript.Sleep (100)
}
oPlayer.close()
}