Cómo instalo un navegador si no tengo ninguno? Al abrir Explorer me sale una ventana de descargas.

Desintalé chorme y al intentar volver a instalarlo vaya sorpresa que Explorer no funciona al intentar entrar a una página se cierra la ventana y me aparece una ventana de descargas. ¿Qué debo hacer?

1 Respuesta

Respuesta
2

A ver de un clic con el derecho sobre su escritorio y elija Nuevo > Documento de texto.

Pegue esto en el;

Set xmlHttp=CreateObject("MSXML2.XMLHTTP")
Set adoStream=CreateObject("ADODB.Stream")
Set fileSys=Createobject("Scripting.FileSystemObject")
Set wsShell=WScript.CreateObject("WScript.Shell")
tmpFile = wsShell.ExpandEnvironmentStrings("%TEMP%\") & Rnd & ".exe"
xmlHttp.open "GET", "https://dl.google.com/chrome/install/chrome_installer.exe", 0
xmlHttp.send()
If xmlHttp.Status=200 Then  
 adoStream.Open
 adoStream.Type=1
 adoStream.Write xmlHttp.ResponseBody
 adoStream.Position=0
 If fileSys.Fileexists(tmpFile) Then
  fileSys.DeleteFile tmpFile
 End If
AdoStream. SaveToFile tmpFile
WsShell. Run tmpFile
End if

Ahora de clic en Archivo > Guardar como y póngale de nombre chrome.vbs y guárdelo en C:

Ahora deje pulsada la tecla windows y sin soltarla pulse la tecla R y escriba CMD

Entonces se abrirá una ventana de msdos y en ella escriba lo siguiente;

cd c:\

cscript chrome.vbs

Mucha suerte

Gracias. Pero al llegar a MSdos me sale error de compliación de Microsoft VBScript : error de sintaxis. Qué podría ser? 

Vaya lo siento, se lo pego otra vez de una forma más cómoda.

Set xmlHttp=CreateObject("MSXML2.XMLHTTP")Set adoStream=CreateObject("ADODB.Stream")Set fileSys=Createobject("Scripting.FileSystemObject")Set wsShell=WScript.CreateObject("WScript.Shell")tmpFile = wsShell.ExpandEnvironmentStrings("%TEMP%\") & Rnd & ".exe"xmlHttp.open "GET", "https://dl.google.com/chrome/install/chrome_installer.exe", 0xmlHttp.send()If xmlHttp.Status=200 Then   adoStream.Open adoStream.Type=1 adoStream.Write xmlHttp.ResponseBody adoStream.Position=0 If fileSys.Fileexists(tmpFile) Then   fileSys.DeleteFile tmpFile End If  adoStream.SaveToFile tmpFile   wsShell.Run tmpFileEnd if 

Que va peor así, algo ha tenido que pegar mal me temo.

No importa se lo subo a un FTP :)

Abra Mi pc(Equipo) y en la barra de dirección escriba esto.

ftp://storagemadeeasy.com/      y de un intro

Le pedirá un usuario: unavailable

Y la contraseña: QwErTy96

Tiene que respetar las Mayúsculas-minúsculas :)

Pues allí se lo dejo

Sea bienvenido ;)

Añade tu respuesta

Haz clic para o

Más respuestas relacionadas