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 et modifier un fichier INI


Sujet :

VBScript

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre averti
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    24
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 24
    Par défaut Rechercher et modifier un fichier INI
    Bonjour,

    Je voudrais faire une recherche d'un fichier INI dans un lecteur réseau ou un repertoire et modifier la valeur d'une clé.
    Voila ce que j'ai Bricolé mais cela ne fonctionne pas. Je voudrais bien une aide SVP.

    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
     
     
    'Rechercher le chemin des fichiers
     
     Function Find (strPath, strFileName)
     Dim MyDir, MyFile, MySubDir
     Dim strResult
     
    path_start = "c:\Temp"
     
     result = Find(path_start, "notes.ini")
     
     If strFileName = Empty Then Exit Function
     Set ObjFSO = CreateObject("Scripting.FileSystemObject")
     
     
     Set MyDir = ObjFSO.GetFolder(strPath)
     
     For Each MyFile In MyDir.Files
     If ObjFSO.GetFileName(MyFile.Name) = strFileName Then strResult = strResult & strPath & "\" & MyFile.Name & vbCrLf
     
     Next
     
     For Each MySubDir In MyDir.SubFolders
     strResult = strResult & Find(strPath & "\" & MySubDir.Name, strFileName)
     Next
    End Function
     
    'Modifier le fichier
     
    WriteINIString "Notes", "MailServer", "CN=BORDS01", strResult
    wscript.echo GetINIString("Notes", "MailServer", "CN=BORDS01", strResult)
     
     
    Sub WriteINIString(Section, KeyName, Value, FileName)
      Dim INIContents, PosSection, PosEndSection
     
      'Get contents of the INI file As a string
      INIContents = GetFile(FileName)
     
      'Find section
      PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
      If PosSection>0 Then
        'Section exists. Find end of section
        PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
        '?Is this last section?
        If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
     
        'Separate section contents
        Dim OldsContents, NewsContents, Line
        Dim sKeyName, Found
        OldsContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
        OldsContents = split(OldsContents, vbCrLf)
     
        'Temp variable To find a Key
        sKeyName = LCase(KeyName & "=")
     
        'Enumerate section lines
        For Each Line In OldsContents
          If LCase(Left(Line, Len(sKeyName))) = sKeyName Then
            Line = KeyName & "=" & Value
            Found = True
          End If
          NewsContents = NewsContents & Line & vbCrLf
        Next
     
        If isempty(Found) Then
          'key Not found - add it at the end of section
          NewsContents = NewsContents & KeyName & "=" & Value
        Else
          'remove last vbCrLf - the vbCrLf is at PosEndSection
          NewsContents = Left(NewsContents, Len(NewsContents) - 2)
        End If
     
        'Combine pre-section, new section And post-section data.
        INIContents = Left(INIContents, PosSection-1) & _
          NewsContents & Mid(INIContents, PosEndSection)
      else'if PosSection>0 Then
        'Section Not found. Add section data at the end of file contents.
        If Right(INIContents, 2) <> vbCrLf And Len(INIContents)>0 Then 
          INIContents = INIContents & vbCrLf 
        End If
        INIContents = INIContents & "[" & Section & "]" & vbCrLf & _
          KeyName & "=" & Value
      end if'if PosSection>0 Then
      WriteFile FileName, INIContents
    End Sub
     
    Function GetINIString(Section, KeyName, Default, FileName)
      Dim INIContents, PosSection, PosEndSection, sContents, Value, Found
     
      'Get contents of the INI file As a string
      INIContents = GetFile(FileName)
     
      'Find section
      PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
      If PosSection>0 Then
        'Section exists. Find end of section
        PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
        '?Is this last section?
        If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
     
        'Separate section contents
        sContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
     
        If InStr(1, sContents, vbCrLf & KeyName & "=", vbTextCompare)>0 Then
          Found = True
          'Separate value of a key.
          Value = SeparateField(sContents, vbCrLf & KeyName & "=", vbCrLf)
        End If
      End If
      If isempty(Found) Then Value = Default
      GetINIString = Value
    End Function
     
    'Separates one field between sStart And sEnd
    Function SeparateField(ByVal sFrom, ByVal sStart, ByVal sEnd)
      Dim PosB: PosB = InStr(1, sFrom, sStart, 1)
      If PosB > 0 Then
        PosB = PosB + Len(sStart)
        Dim PosE: PosE = InStr(PosB, sFrom, sEnd, 1)
        If PosE = 0 Then PosE = InStr(PosB, sFrom, vbCrLf, 1)
        If PosE = 0 Then PosE = Len(sFrom) + 1
        SeparateField = Mid(sFrom, PosB, PosE - PosB)
      End If
    End Function
     
     
    'File functions
    Function GetFile(ByVal FileName)
      Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
      'Go To windows folder If full path Not specified.
      If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then 
        FileName = FS.GetSpecialFolder(0) & "\" & FileName
      End If
      On Error Resume Next
     
      GetFile = FS.OpenTextFile(FileName).ReadAll
    End Function
     
    Function WriteFile(ByVal FileName, ByVal Contents)
     
      Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
      'On Error Resume Next
     
      'Go To windows folder If full path Not specified.
      If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then 
        FileName = FS.GetSpecialFolder(0) & "\" & FileName
      End If
     
      Dim OutStream: Set OutStream = FS.OpenTextFile(FileName, 2, True)
      OutStream.Write Contents
    End Function
    J'ai trouvé les 2 codes sur le NET, il fonctionne tout les 2 séparément. Maintenant pour les lier et bien je galère vu mon niveau

  2. #2
    Membre expérimenté
    Inscrit en
    Mai 2008
    Messages
    189
    Détails du profil
    Informations forums :
    Inscription : Mai 2008
    Messages : 189
    Par défaut
    Je ne trouve pas dans ton code la fonction Find pourtant elle a l'air appelée là :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    result = Find(path_start, "notes.ini")
    Est ce que tu peux aussi préciser ce que tu compte modifier, avec un exemple de fichier ini.

  3. #3
    Membre averti
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    24
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 24
    Par défaut
    En faite le script suivant recherche tout les notes.ini indiqué dans "path_start"

    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
     
    Option Explicit
     
     Dim path_start
     Dim Myfso, result
     Set Myfso = CreateObject("Scripting.FileSystemObject")
     
     
     path_start = "c:\Temp"
     
     result = Find(path_start, "notes.ini")
     
     MsgBox result
     
     Function Find (strPath, strFileName)
     Dim MyDir, MyFile, MySubDir
     Dim strResult
     
     If strFileName = Empty Then Exit Function
     strFileName = Ucase(strFileName)
     
     Set MyDir = Myfso.GetFolder(strPath)
     
     For Each MyFile In MyDir.Files
     If Ucase(MyFile.Name) = strFileName Then strResult = strResult & strPath & "\" & MyFile.Name & vbCrLf
     Next
     For Each MySubDir In MyDir.SubFolders
     strResult = strResult & Find(strPath & "\" & MySubDir.Name, strFileName)
     
    Next
     
    Find = strResult
     
    End Function
    Le 2eme code modifie une section dans le fichier notes.ini

    [Notes]
    MailServer=CN=MAIL04

    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
     
    WriteINIString "Notes", "MailServer", "CN=MAIL01/OU=Srv/O=Barclays-France",
    "C:\Temp\notes.ini"
    wscript.echo GetINIString("Notes", "MailServer",
    "CN=MAIL01/OU=Srv/O=Barclays-France", "C:\Temp\notes.ini")
     
    Sub WriteINIString(Section, KeyName, Value, FileName)
     Dim INIContents, PosSection, PosEndSection
     
     'Get contents of the INI file As a string
     INIContents = GetFile(FileName)
     
     'Find section
     PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
     If PosSection>0 Then
       'Section exists. Find end of section
       PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
       '?Is this last section?
       If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
     
       'Separate section contents
       Dim OldsContents, NewsContents, Line
       Dim sKeyName, Found
       OldsContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
       OldsContents = split(OldsContents, vbCrLf)
     
       'Temp variable To find a Key
       sKeyName = LCase(KeyName & "=")
     
       'Enumerate section lines
       For Each Line In OldsContents
         If LCase(Left(Line, Len(sKeyName))) = sKeyName Then
           Line = KeyName & "=" & Value
           Found = True
         End If
         NewsContents = NewsContents & Line & vbCrLf
       Next
     
       If isempty(Found) Then
         'key Not found - add it at the end of section
         NewsContents = NewsContents & KeyName & "=" & Value
       Else
         'remove last vbCrLf - the vbCrLf is at PosEndSection
         NewsContents = Left(NewsContents, Len(NewsContents) - 2)
       End If
     
       'Combine pre-section, new section And post-section data.
       INIContents = Left(INIContents, PosSection-1) & _
         NewsContents & Mid(INIContents, PosEndSection)
     else'if PosSection>0 Then
       'Section Not found. Add section data at the end of file contents.
       If Right(INIContents, 2) <> vbCrLf And Len(INIContents)>0 Then
         INIContents = INIContents & vbCrLf
       End If
       INIContents = INIContents & "[" & Section & "]" & vbCrLf & _
         KeyName & "=" & Value
     end if'if PosSection>0 Then
     WriteFile FileName, INIContents
    End Sub
     
    Function GetINIString(Section, KeyName, Default, FileName)
     Dim INIContents, PosSection, PosEndSection, sContents, Value, Found
     
     'Get contents of the INI file As a string
     INIContents = GetFile(FileName)
     
     'Find section
     PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
     If PosSection>0 Then
       'Section exists. Find end of section
       PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
       '?Is this last section?
       If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
     
       'Separate section contents
       sContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
     
       If InStr(1, sContents, vbCrLf & KeyName & "=", vbTextCompare)>0 Then
         Found = True
         'Separate value of a key.
         Value = SeparateField(sContents, vbCrLf & KeyName & "=", vbCrLf)
       End If
     End If
     If isempty(Found) Then Value = Default
     GetINIString = Value
    End Function
     
    'Separates one field between sStart And sEnd
    Function SeparateField(ByVal sFrom, ByVal sStart, ByVal sEnd)
     Dim PosB: PosB = InStr(1, sFrom, sStart, 1)
     If PosB > 0 Then
       PosB = PosB + Len(sStart)
       Dim PosE: PosE = InStr(PosB, sFrom, sEnd, 1)
       If PosE = 0 Then PosE = InStr(PosB, sFrom, vbCrLf, 1)
       If PosE = 0 Then PosE = Len(sFrom) + 1
       SeparateField = Mid(sFrom, PosB, PosE - PosB)
     End If
    End Function
     
     
    'File functions
    Function GetFile(ByVal FileName)
     Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
     'Go To windows folder If full path Not specified.
     If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then
       FileName = FS.GetSpecialFolder(0) & "\" & FileName
     End If
     On Error Resume Next
     
     GetFile = FS.OpenTextFile(FileName).ReadAll
    End Function
     
    Function WriteFile(ByVal FileName, ByVal Contents)
     
     Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
     'On Error Resume Next
     
     'Go To windows folder If full path Not specified.
     If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then
       FileName = FS.GetSpecialFolder(0) & "\" & FileName
     End If
     
     Dim OutStream: Set OutStream = FS.OpenTextFile(FileName, 2, True)
     OutStream.Write Contents
    End Function
    Je voudrais lui donner une racine ou il y a 250 fichiers notes.ini et écrire dedans pour indiquer de nouveaux paramètre

  4. #4
    Membre averti
    Profil pro
    Inscrit en
    Mai 2009
    Messages
    24
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2009
    Messages : 24
    Par défaut
    S'il vous plait, un coup de pouce. Je rame grave.....

    J'essaye d'adapter le script 1 dans le 2..... je m'arrache les cheveux....

    J'aurais peut être une solution dans la semaine d'un collègue. Je déposerais si cela intéresse.

  5. #5
    Membre expérimenté
    Inscrit en
    Mai 2008
    Messages
    189
    Détails du profil
    Informations forums :
    Inscription : Mai 2008
    Messages : 189
    Par défaut
    regarde si ca marche cà :

    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
     
    'Petite remise en forme
    Dim path_start
    Dim Myfso, result
    Set Myfso = CreateObject("Scripting.FileSystemObject")
    path_start = "c:\Temp"
    result = Find(path_start, "notes.ini")
    WriteINIString "Notes", "MailServer", "CN=MAIL01/OU=Srv/O=Barclays-France", result
    wscript.echo GetINIString("Notes", "MailServer","CN=MAIL01/OU=Srv/O=Barclays-France", result)
     
     
    Sub WriteINIString(Section, KeyName, Value, FileName)
    	Dim INIContents, PosSection, PosEndSection
    	'Get contents of the INI file As a string
    	INIContents = GetFile(FileName)
    	'Find section
    	PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
    	If PosSection>0 Then
    		'Section exists. Find end of section
    		PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
    		'?Is this last section?
    		If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
    		'Separate section contents
    		Dim OldsContents, NewsContents, Line
    		Dim sKeyName, Found
    		OldsContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
    		OldsContents = split(OldsContents, vbCrLf)
    		'Temp variable To find a Key
    		sKeyName = LCase(KeyName & "=")
    		'Enumerate section lines
    		For Each Line In OldsContents
    			If LCase(Left(Line, Len(sKeyName))) = sKeyName Then
    				Line = KeyName & "=" & Value
    				Found = True
    			End If
    			NewsContents = NewsContents & Line & vbCrLf
    		Next
    		If isempty(Found) Then
    			'key Not found - add it at the end of section
    			NewsContents = NewsContents & KeyName & "=" & Value
    		Else
    			'remove last vbCrLf - the vbCrLf is at PosEndSection
    			NewsContents = Left(NewsContents, Len(NewsContents) - 2)
    		End If
    		'Combine pre-section, new section And post-section data.
    		INIContents = Left(INIContents, PosSection-1) & _
    		NewsContents & Mid(INIContents, PosEndSection)
    	else'if PosSection>0 Then
    		'Section Not found. Add section data at the end of file contents.
    		If Right(INIContents, 2) <> vbCrLf And Len(INIContents)>0 Then
    			INIContents = INIContents & vbCrLf
    		End If
    		INIContents = INIContents & "[" & Section & "]" & vbCrLf & _
    		KeyName & "=" & Value
    	end if'if PosSection>0 Then
    	WriteFile FileName, INIContents
    End Sub
    Function GetINIString(Section, KeyName, Default, FileName)
    	Dim INIContents, PosSection, PosEndSection, sContents, Value, Found
    	'Get contents of the INI file As a string
    	INIContents = GetFile(FileName)
    	'Find section
    	PosSection = InStr(1, INIContents, "[" & Section & "]", vbTextCompare)
    	If PosSection>0 Then
    		'Section exists. Find end of section
    		PosEndSection = InStr(PosSection, INIContents, vbCrLf & "[")
    		'?Is this last section?
    		If PosEndSection = 0 Then PosEndSection = Len(INIContents)+1
    		'Separate section contents
    		sContents = Mid(INIContents, PosSection, PosEndSection - PosSection)
    		If InStr(1, sContents, vbCrLf & KeyName & "=", vbTextCompare)>0 Then
    			Found = True
    			'Separate value of a key.
    			Value = SeparateField(sContents, vbCrLf & KeyName & "=", vbCrLf)
    		End If
    	End If
    	If isempty(Found) Then Value = Default
    	GetINIString = Value
    End Function
    'Separates one field between sStart And sEnd
    Function SeparateField(ByVal sFrom, ByVal sStart, ByVal sEnd)
    	Dim PosB: PosB = InStr(1, sFrom, sStart, 1)
    	If PosB > 0 Then
    		PosB = PosB + Len(sStart)
    		Dim PosE: PosE = InStr(PosB, sFrom, sEnd, 1)
    		If PosE = 0 Then PosE = InStr(PosB, sFrom, vbCrLf, 1)
    		If PosE = 0 Then PosE = Len(sFrom) + 1
    		SeparateField = Mid(sFrom, PosB, PosE - PosB)
    	End If
    End Function
    'File functions
    Function GetFile(ByVal FileName)
    	Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
    	'Go To windows folder If full path Not specified.
    	If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then
    		FileName = FS.GetSpecialFolder(0) & "\" & FileName
    	End If
    	On Error Resume Next
    	GetFile = FS.OpenTextFile(FileName).ReadAll
    End Function 
    Function WriteFile(ByVal FileName, ByVal Contents)
    	Dim FS: Set FS = CreateObject("Scripting.FileSystemObject")
    	'On Error Resume Next
    	'Go To windows folder If full path Not specified.
    	If InStr(FileName, ":\") = 0 And Left (FileName,2)<>"\\" Then
    		FileName = FS.GetSpecialFolder(0) & "\" & FileName
    	End If
    	Dim OutStream: Set OutStream = FS.OpenTextFile(FileName, 2, True)
    	OutStream.Write Contents
    End Function 
    Function Find (strPath, strFileName)
    	Dim MyDir, MyFile, MySubDir
    	Dim strResult
    	If strFileName = Empty Then Exit Function
    	strFileName = Ucase(strFileName)
    	Set MyDir = Myfso.GetFolder(strPath)
    	For Each MyFile In MyDir.Files
    		If Ucase(MyFile.Name) = strFileName Then strResult = strResult & strPath & "\" & MyFile.Name & vbCrLf
    	Next
    	For Each MySubDir In MyDir.SubFolders
    		strResult = strResult & Find(strPath & "\" & MySubDir.Name, strFileName)
    	Next
    	Find = strResult
    End Function

  6. #6
    Membre averti
    Inscrit en
    Décembre 2007
    Messages
    42
    Détails du profil
    Informations forums :
    Inscription : Décembre 2007
    Messages : 42
    Par défaut
    Tu devrais regarder le code de spantemonium
    Je suis pas un prof mais tu as ecris :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
     
     Function Find (strPath, strFileName)
     Dim MyDir, MyFile, MySubDir
     Dim strResult
     
    path_start = "c:\Temp"
     
     result = Find(path_start, "notes.ini")
    tu as ecris :

    Creer Fonction Find
    Mettre dans path_start le chemin c:\temp
    Mettre dans la variable result le resultat de la fonction Find
    Fin de création de la fonction Find


    Tu appelles ta fonction à l'interieur de cette derniere donc c'était mal parti.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. [Inno Setup] : modifier un fichier ini
    Par Mimie37 dans le forum Outils
    Réponses: 0
    Dernier message: 30/07/2014, 18h05
  2. modifier un fichier .ini avec vbs
    Par alex61 dans le forum VBScript
    Réponses: 5
    Dernier message: 11/01/2011, 14h23
  3. [innoSetup] Modifier un fichier .ini
    Par YanDerS dans le forum Outils
    Réponses: 16
    Dernier message: 22/11/2010, 09h21
  4. Rechercher et modifier un fichier texte
    Par totonin dans le forum Langage
    Réponses: 1
    Dernier message: 18/05/2009, 14h48
  5. [VBA-E]Modifier un fichier Ini
    Par illight dans le forum Macros et VBA Excel
    Réponses: 3
    Dernier message: 10/10/2006, 10h15

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