I am trying to activate a .vbs "WshShell.Popup" via a batch file which contains a line break but I am failing using the following code:
echo set WshShell = WScript.CreateObject("WScript.Shell") > %tmp%\tmp.vbs
echo WScript.Quit (WshShell.Popup("first line here" & Chr(13) & Chr(13) & "second line here" & Chr(13) & Chr(13) & "third line here" ,20 ,"ALERT! System Compromised!",0+48)) >> %tmp%\tmp.vbs
cscript /nologo %tmp%\tmp.vbs >NUL
del %tmp%\tmp.vbs
Any help would be appreciated, thanks