[batch] J'ai un prog en vbs que j'aimerais convertir en batch...
J'ai un prog en vbs que j'aimerais convertir en batch... [batch] - Shell/Batch - Programmation
Sujets relatifs:
Leave a Replay
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 17-03-2004 à 16:25:06
Salut,
voici un petit programme que je n'arrive pas à traduire correctement en batch...
n'hésitez pas à m'aider !
Dim fso, f, fc, f1, s
Dim d, fichier
Dim Shell
Set fso = CreateObject("Scripting.FileSystemObject" )
Set f = fso.GetFolder("C:\Documents and Settings\utile\Local Settings\Application Data\Microsoft\Windows NT\NTBackup\data" )
Set fc = f.Files
for Each f1 in fc
if mid(f1.name, 1, 6) = "backup" then
if f1.DateLastModified > d then
d = f1.DateLastModified
set fichier = f1
end if
end if
next
Set Shell = WScript.CreateObject("WScript.Shell" )
' Imprime en passant par Notepad
Shell.Run "Notepad /p " & """" & fichier.path & """" , 7, true