Page 2 sur 2

Re: Question sur le telechargement d'un fichier

Posté : 11 juil. 2008 09:59
par Laddy
flox a écrit :Bonjour,

OS: tester sur vista

Code : Tout sélectionner

systeminfo | find "Nom du système d'exploitation"
c'est une bonne idée mais c'est un peut trop long comme recherche.

Solution :

Code : Tout sélectionner

VER | findstr /i "5.1.2600" > nul
IF %ERRORLEVEL% EQU 0 GOTO XP


VER | findstr /i "6.0.6000" > nul
IF %ERRORLEVEL% EQU 0 GOTO VISTARTM

Re: Question sur le telechargement d'un fichier

Posté : 11 juil. 2008 10:03
par Laddy
j aimerai ouvrir internet explorer avec deux onglets est ce que quelqun connait les paramètres ?

Re: Question sur le telechargement d'un fichier

Posté : 12 juil. 2008 17:19
par Laddy
c'est impossible d'ouvrir plusieurs tabs avec IE7 en ligne de commande

on peut avoir recours à un script js .

Code : Tout sélectionner

var navOpenInBackgroundTab = 0x1000;
var oIE = new ActiveXObject("InternetExplorer.Application");
oIE.Navigate2("http://blogs.msdn.com");
oIE.Navigate2("http://blogs.msdn.com/tonyschr", navOpenInBackgroundTab);
oIE.Navigate2("http://blogs.msdn.com/oldnewthing", navOpenInBackgroundTab);
oIE.Navigate2("http://blogs.msdn.com/ericlippert", navOpenInBackgroundTab);
oIE.Visible = true;
Code à mettre dans le batch :

Code : Tout sélectionner

 wscript.exe launchie.js
Par contre pour mon batch je ne vois mal créer un js pour chaque fichier telechargé comment faire pour créer un unique js et faire en sorte de rediriger vers la les bonnes urls.