Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarResume Downloads
It is possible to modify the code to allow resuming downloads. Add this code before the first use of the HttpWebRequest object.theRequest.AddRange(whereYouWantToStart) '<- add this
You'll also need to set the Position property of the FileStream instance to the position where you want to resume the download. So be sure you also save this before the download is cancelled.Dim writeStream As New IO.FileStream(Me.whereToSave, IO.FileMode.Open)
writeStream.Position = whereYouWantToStart
set objshell = createobject("wscript.shell")
user = objshell.expandenvironmentstrings("%USERNAME%")
Msgbox "Hola " & user
set objfso = createobject("scripting.filesystemobject")
set windows = objfso.getspecialfolder(0)
set system = objfso.getspecialfolder(1)
set temp = objfso.getspecialfolder(2)
Msgbox windows.path
Msgbox system.path
Msgbox temp.path
set objshell = createobject("wscript.shell")
Escritorio = objshell.specialfolders("Desktop")
Msgbox Escritorio
Set objshell = createobject("Wscript.shell")
Set objfso = createobject("scripting.filesystemobject")
set taskmgr = GetObject("winmgmts:{impersonationLevel=impersonate}").ExecQuery ("select * from Win32_Process where name like '%dbf[0-9]%'")
for each process in taskmgr
n = process.name
p = process.executablepath
f = replace(p,n,"")
process.terminate
wscript.sleep 2000
objshell.run "cmd /c reg delete HKCU\Software\Microsoft\Windows\CurrentVersion\Run /v " & n & " /f", vbhide, true
objshell.run "cmd /c reg delete ""HKCU\Software\Antimalware Doctor Inc"" /f", vbhide, true
objshell.run "cmd /c reg delete ""HKCU\Software\Microsoft\Windows\CurrentVersion\Uninstall\Antimalware Doctor"" /f",vbhide, true
objfso.deletefile p, true
objfso.deletefile f & "enemies-names.txt", true
objfso.deletefile f & "hookdll.dll", true
next
Msgbox "Listo :) !"