Comment nettoyer une fichier .URL avec un .BAT - Shell/Batch - Programmation
Marsh Posté le 18-03-2007 à 10:37:10
@echo off
echo [InternetShortcut] > pedanew.url
findstr /B "URL=" peda.url >> pedanew.url
del /F /Q peda.url
ren pedanew.url peda.url
Marsh Posté le 18-03-2007 à 00:59:43
Soit un fichier (raccourcis Internet) Peda.url contenant:
[InternetShortcut]
URL=http://www.peda.com/grafeq/
IDList=
IconFile=http://www.peda.com/favicon.ico
IconIndex=1
[{000214A0-0000-0000-C000-000000000046}]
Prop3=19,2
[DEFAULT]
BASEURL=http://www.peda.com/grafeq/
Comment, avec un fichier .BAT, supprimer toutes les lignes sauf:
[InternetShortcut]
URL=http://www.peda.com/grafeq/
Merci.