
stef
Code : Tout sélectionner
Const FAXDIR = "\\serveur\nom_dossiers\films\"
Const MSGTITLE = "Nouveau films"
Const MSGVIEW = "Voulez-vous indexer le ou les films "
Const AUTORUNREGKEY = "HKCU\Software\Microsoft\Windows\CurrentVersion\Run\films"
Dim InputFileFullName
Dim FSO
Dim InputFile
Dim InputFileContent
Dim InputDir
Dim CurrentDateTime
Dim CurrentName
Dim Shell
Dim Answer
Set Shell = WScript.CreateObject("WScript.Shell")
Shell.RegWrite AUTORUNREGKEY, WScript.ScriptFullName, "REG_SZ"
InputFileFullName = WScript.ScriptFullName & ".txt"
Set FSO = CreateObject("scripting.filesystemobject")
If Not FSO.FolderExists(FAXDIR) then
FSO.CreateFolder(FAXDIR)
End If
While True
InputFileContent = ""
Set InputFile = FSO.opentextfile(InputFileFullName,1,True)
While Not InputFile.AtEndOfStream
InputFileContent = InputFileContent & InputFile.ReadLine
Wend
InputFile.Close
Set InputFile = FSO.opentextfile(InputFileFullName,8,True)
Set InputDir = FSO.GetFolder(FAXDIR)
For Each CurrentFile In InputDir.files
CurrentDateTime = currentfile.DateCreated
CurrentName = currentfile.Name
If InStr(InputFileContent,CurrentName & vbTab & CurrentDateTime) Then
Else
Answer = MsgBox (CurrentName & vbCrLf & CurrentDateTime & vbCrLf & vbCrLf & MSGVIEW,4 + 64, MSGTITLE)
If Answer = 6 Then
Shell.Run """" & currentfile.Path & """"
End If
InputFile.WriteLine(CurrentName & vbTab & CurrentDateTime)
End If
Next
InputFile.Close
WScript.Sleep 10000
Wend
Retourner vers « Votre avis, vos idées »
Utilisateurs parcourant ce forum : Aucun utilisateur enregistré et 3 invités