Advertisement
Guest User

dong.vbs

a guest
Oct 22nd, 2012
418
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Sub Run(ByVal sFile)
  2. Dim shell
  3.  
  4.     Set shell = CreateObject("WScript.Shell")
  5.     shell.Run Chr(34) & sFile & Chr(34), 1, false
  6.     Set shell = Nothing
  7. End Sub
  8. WScript.Sleep 4000
  9. Run "C:\Windows\explorer.exe"
  10. WScript.Sleep 1000
  11. Run "C:\Program Files (x86)\Dorgem\Dorgem.exe"
  12. Run "pop.vbs"
  13. WScript.Sleep 5000
  14. Run "EndDorgem.vbs"
  15. Set WshShell = WScript.CreateObject("WScript.Shell")
  16. WshShell.Run "C:\windows\system32\shutdown.exe /l", 0, false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement