[Résolu] Question sur le telechargement d'un fichier

Une difficulté, une précision posez vos questions

Modérateur : WIN32-[GG]

Laddy
SuperBatcher
Messages : 190
Enregistré le : 04 juil. 2008 13:40

Re: Question sur le telechargement d'un fichier

Message 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
Envie de partager vos programmes :
Poster vos codes sur BatchClipboad.info
Laddy
SuperBatcher
Messages : 190
Enregistré le : 04 juil. 2008 13:40

Re: Question sur le telechargement d'un fichier

Message par Laddy »

j aimerai ouvrir internet explorer avec deux onglets est ce que quelqun connait les paramètres ?
Envie de partager vos programmes :
Poster vos codes sur BatchClipboad.info
Laddy
SuperBatcher
Messages : 190
Enregistré le : 04 juil. 2008 13:40

Re: Question sur le telechargement d'un fichier

Message 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.
Envie de partager vos programmes :
Poster vos codes sur BatchClipboad.info
Répondre