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 :

Récupération du résultat d'un batch vers une variable VBS


Sujet :

VBScript

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Futur Membre du Club
    Homme Profil pro
    Technicien Help Desk
    Inscrit en
    Février 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ain (Rhône Alpes)

    Informations professionnelles :
    Activité : Technicien Help Desk

    Informations forums :
    Inscription : Février 2015
    Messages : 4
    Par défaut Récupération du résultat d'un batch vers une variable VBS
    Bonjour à tous.

    Je fait mes premiers pas en vbs et je me retrouve face à un dilemme. Notre parc informatique est exclusivement composé d'ordinateur de la marque Dell. Ces machines disposes-donc d'un service TAG (composé de 7 caractères), que l'on peux se procurer via la commande MS-DOS "wmic bios get serialnumber". Je dispose d'un vbs de hashage MD5 (ici) avec lequel j'aimerai hasher la chaîne de caractère issue du batch de génération du service TAG.

    Cela est-il possible?

    Je vous remercie d'avance.

    Bien cordialement

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

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 843
    Par défaut

    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
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    Private lngTrack
    Private arrLongConversion(4)
    Private arrSplit64(63)
     
    Private Const OFFSET_4 = 4294967296
    Private Const MAXINT_4 = 2147483647
     
    Private Const S11 = 7
    Private Const S12 = 12
    Private Const S13 = 17
    Private Const S14 = 22
    Private Const S21 = 5
    Private Const S22 = 9
    Private Const S23 = 14
    Private Const S24 = 20
    Private Const S31 = 4
    Private Const S32 = 11
    Private Const S33 = 16
    Private Const S34 = 23
    Private Const S41 = 6
    Private Const S42 = 10
    Private Const S43 = 15
    Private Const S44 = 21
     
    strComputer = "."
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
    Set colBIOS =  objWMIService.ExecQuery("Select * from Win32_BIOS")
     
    For Each objBIOS in colBIOS
        serial = objBIOS.SerialNumber 
    Next
     
     MsgBox "Le numero de serie du BIOS ==> " & serial & vbCrlf & "Hash BIOS ==> " & MD5FileHash(serial),Vbinformation,"Le numero de serie du BIOS"
     
    ' --------------------------------------
    Function MD5FileHash(strFile)
            MD5FileHash = CalculateMD5(strFile)
    End Function
    ' --------------------------------------
    Function ReadTextFile(FileName, CharSet)
        Const adTypeText = 2
        Dim BinaryStream : Set BinaryStream = CreateObject("ADODB.Stream")
        BinaryStream.Type = adTypeText
        If Len(CharSet) > 0 Then
            BinaryStream.CharSet = CharSet
        End If
        BinaryStream.Open
        BinaryStream.LoadFromFile FileName
        ReadTextFile = BinaryStream.ReadText
    End Function
    ' -----------------------------
    Function BinaryToString(Binary)
    Dim cl1, cl2, cl3, pl1, pl2, pl3
    Dim L
        cl1 = 1
        cl2 = 1
        cl3 = 1
        L = LenB(Binary)
        Do While cl1<=L
            pl3 = pl3 & Chr(AscB(MidB(Binary,cl1,1)))
            cl1 = cl1 + 1
            cl3 = cl3 + 1
            If cl3>300 Then
                pl2 = pl2 & pl3
                pl3 = ""
                cl3 = 1
                cl2 = cl2 + 1
                If cl2>200 Then
                    pl1 = pl1 & pl2
                    pl2 = ""
                    cl2 = 1
                End If
            End If
        Loop
        BinaryToString = pl1 & pl2 & pl3
    End Function
    ' -------------------------------------------------------
    Private Function MD5Round(strRound, a, b, C, d, X, S, ac)
        Select Case strRound
            Case "FF"
                a = MD5LongAdd4(a, (b And C) Or (Not (b) And d), X, ac)
                a = MD5Rotate(a, S)
                a = MD5LongAdd(a, b)       
            Case "GG"
                a = MD5LongAdd4(a, (b And d) Or (C And Not (d)), X, ac)
                a = MD5Rotate(a, S)
                a = MD5LongAdd(a, b)            
            Case "HH"
                a = MD5LongAdd4(a, b Xor C Xor d, X, ac)
                a = MD5Rotate(a, S)
                a = MD5LongAdd(a, b)          
            Case "II"
                a = MD5LongAdd4(a, C Xor (b Or Not (d)), X, ac)
                a = MD5Rotate(a, S)
                a = MD5LongAdd(a, b)
        End Select
    End Function
    ' -------------------------------------------
    Private Function MD5Rotate(lngValue, lngBits)
        Dim lngSign
        Dim lngI  
        lngBits = (lngBits Mod 32)
        If lngBits = 0 Then MD5Rotate = lngValue: Exit Function
        For lngI = 1 To lngBits
            lngSign = lngValue And &HC0000000
            lngValue = (lngValue And &H3FFFFFFF) * 2
            lngValue = lngValue Or ((lngSign < 0) And 1) Or (CBool(lngSign And &H40000000) And &H80000000)
        Next
        MD5Rotate = lngValue
    End Function
    ' ---------------------
    Private Function TRID()
        Dim sngNum, lngnum
        Dim strResult
        sngNum = Rnd(2147483648)
        strResult = CStr(sngNum)
        strResult = Replace(strResult, "0.", "")
        strResult = Replace(strResult, ".", "")
        strResult = Replace(strResult, "E-", "")
        TRID = strResult
    End Function
     
    ' -------------------------------------------------
    Private Function MD564Split(lngLength, bytBuffer())
        Dim lngBytesTotal, lngBytesToAdd
        Dim intLoop, intLoop2, lngTrace
        Dim intInnerLoop, intLoop3
        lngBytesTotal = lngTrack Mod 64
        lngBytesToAdd = 64 - lngBytesTotal
        lngTrack = (lngTrack + lngLength)
        If lngLength >= lngBytesToAdd Then
            For intLoop = 0 To lngBytesToAdd - 1
                arrSplit64(lngBytesTotal + intLoop) = bytBuffer(intLoop)
            Next
            MD5Conversion arrSplit64
            lngTrace = (lngLength) Mod 64
            For intLoop2 = lngBytesToAdd To lngLength - intLoop - lngTrace Step 64
                For intInnerLoop = 0 To 63
                    arrSplit64(intInnerLoop) = bytBuffer(intLoop2 + intInnerLoop)
                Next
            MD5Conversion arrSplit64
            Next
            lngBytesTotal = 0
        Else
            intLoop2 = 0
        End If
        For intLoop3 = 0 To lngLength - intLoop2 - 1
            arrSplit64(lngBytesTotal + intLoop3) = bytBuffer(intLoop2 + intLoop3)
        Next
    End Function
    ' ---------------------------------------
    Private Function MD5StringArray(strInput)
        Dim intLoop
        Dim bytBuffer()
        ReDim bytBuffer(Len(strInput))   
        For intLoop = 0 To Len(strInput) - 1
            bytBuffer(intLoop) = Asc(Mid(strInput, intLoop + 1, 1))
        Next
        MD5StringArray = bytBuffer
    End Function
     
    ' ------------------------------------
    Private Sub MD5Conversion(bytBuffer())
        Dim X(16), a
        Dim b, C
        Dim d
        a = arrLongConversion(1)
        b = arrLongConversion(2)
        C = arrLongConversion(3)
        d = arrLongConversion(4)
        MD5Decode 64, X, bytBuffer
        MD5Round "FF", a, b, C, d, X(0), S11, -680876936
        MD5Round "FF", d, a, b, C, X(1), S12, -389564586
        MD5Round "FF", C, d, a, b, X(2), S13, 606105819
        MD5Round "FF", b, C, d, a, X(3), S14, -1044525330
        MD5Round "FF", a, b, C, d, X(4), S11, -176418897
        MD5Round "FF", d, a, b, C, X(5), S12, 1200080426
        MD5Round "FF", C, d, a, b, X(6), S13, -1473231341
        MD5Round "FF", b, C, d, a, X(7), S14, -45705983
        MD5Round "FF", a, b, C, d, X(8), S11, 1770035416
        MD5Round "FF", d, a, b, C, X(9), S12, -1958414417
        MD5Round "FF", C, d, a, b, X(10), S13, -42063
        MD5Round "FF", b, C, d, a, X(11), S14, -1990404162
        MD5Round "FF", a, b, C, d, X(12), S11, 1804603682
        MD5Round "FF", d, a, b, C, X(13), S12, -40341101
        MD5Round "FF", C, d, a, b, X(14), S13, -1502002290
        MD5Round "FF", b, C, d, a, X(15), S14, 1236535329
     
        MD5Round "GG", a, b, C, d, X(1), S21, -165796510
        MD5Round "GG", d, a, b, C, X(6), S22, -1069501632
        MD5Round "GG", C, d, a, b, X(11), S23, 643717713
        MD5Round "GG", b, C, d, a, X(0), S24, -373897302
        MD5Round "GG", a, b, C, d, X(5), S21, -701558691
        MD5Round "GG", d, a, b, C, X(10), S22, 38016083
        MD5Round "GG", C, d, a, b, X(15), S23, -660478335
        MD5Round "GG", b, C, d, a, X(4), S24, -405537848
        MD5Round "GG", a, b, C, d, X(9), S21, 568446438
        MD5Round "GG", d, a, b, C, X(14), S22, -1019803690
        MD5Round "GG", C, d, a, b, X(3), S23, -187363961
        MD5Round "GG", b, C, d, a, X(8), S24, 1163531501
        MD5Round "GG", a, b, C, d, X(13), S21, -1444681467
        MD5Round "GG", d, a, b, C, X(2), S22, -51403784
        MD5Round "GG", C, d, a, b, X(7), S23, 1735328473
        MD5Round "GG", b, C, d, a, X(12), S24, -1926607734
     
        MD5Round "HH", a, b, C, d, X(5), S31, -378558
        MD5Round "HH", d, a, b, C, X(8), S32, -2022574463
        MD5Round "HH", C, d, a, b, X(11), S33, 1839030562
        MD5Round "HH", b, C, d, a, X(14), S34, -35309556
        MD5Round "HH", a, b, C, d, X(1), S31, -1530992060
        MD5Round "HH", d, a, b, C, X(4), S32, 1272893353
        MD5Round "HH", C, d, a, b, X(7), S33, -155497632
        MD5Round "HH", b, C, d, a, X(10), S34, -1094730640
        MD5Round "HH", a, b, C, d, X(13), S31, 681279174
        MD5Round "HH", d, a, b, C, X(0), S32, -358537222
        MD5Round "HH", C, d, a, b, X(3), S33, -722521979
        MD5Round "HH", b, C, d, a, X(6), S34, 76029189
        MD5Round "HH", a, b, C, d, X(9), S31, -640364487
        MD5Round "HH", d, a, b, C, X(12), S32, -421815835
        MD5Round "HH", C, d, a, b, X(15), S33, 530742520
        MD5Round "HH", b, C, d, a, X(2), S34, -995338651
     
        MD5Round "II", a, b, C, d, X(0), S41, -198630844
        MD5Round "II", d, a, b, C, X(7), S42, 1126891415
        MD5Round "II", C, d, a, b, X(14), S43, -1416354905
        MD5Round "II", b, C, d, a, X(5), S44, -57434055
        MD5Round "II", a, b, C, d, X(12), S41, 1700485571
        MD5Round "II", d, a, b, C, X(3), S42, -1894986606
        MD5Round "II", C, d, a, b, X(10), S43, -1051523
        MD5Round "II", b, C, d, a, X(1), S44, -2054922799
        MD5Round "II", a, b, C, d, X(8), S41, 1873313359
        MD5Round "II", d, a, b, C, X(15), S42, -30611744
        MD5Round "II", C, d, a, b, X(6), S43, -1560198380
        MD5Round "II", b, C, d, a, X(13), S44, 1309151649
        MD5Round "II", a, b, C, d, X(4), S41, -145523070
        MD5Round "II", d, a, b, C, X(11), S42, -1120210379
        MD5Round "II", C, d, a, b, X(2), S43, 718787259
        MD5Round "II", b, C, d, a, X(9), S44, -343485551
     
        arrLongConversion(1) = MD5LongAdd(arrLongConversion(1), a)
        arrLongConversion(2) = MD5LongAdd(arrLongConversion(2), b)
        arrLongConversion(3) = MD5LongAdd(arrLongConversion(3), C)
        arrLongConversion(4) = MD5LongAdd(arrLongConversion(4), d)
    End Sub
     
    ' -------------------------------------------
    Private Function MD5LongAdd(lngVal1, lngVal2)
        Dim lngHighWord
        Dim lngLowWord
        Dim lngOverflow
        lngLowWord = (lngVal1 And &HFFFF&) + (lngVal2 And &HFFFF&)
        lngOverflow = lngLowWord \ 65536
        lngHighWord = (((lngVal1 And &HFFFF0000) \ 65536) + ((lngVal2 And &HFFFF0000) \ 65536) + lngOverflow) And &HFFFF&
        MD5LongAdd = MD5LongConversion((lngHighWord * 65536) + (lngLowWord And &HFFFF&))
    End Function
    ' --------------------------------------------------------------
    Private Function MD5LongAdd4(lngVal1, lngVal2, lngVal3, lngVal4)
        Dim lngHighWord
        Dim lngLowWord
        Dim lngOverflow
        lngLowWord = (lngVal1 And &HFFFF&) + (lngVal2 And &HFFFF&) + (lngVal3 And &HFFFF&) + (lngVal4 And &HFFFF&)
        lngOverflow = lngLowWord \ 65536
        lngHighWord = (((lngVal1 And &HFFFF0000) \ 65536) + ((lngVal2 And &HFFFF0000) \ 65536) + ((lngVal3 And &HFFFF0000) \ 65536) + ((lngVal4 And &HFFFF0000) \ 65536) + lngOverflow) And &HFFFF&
        MD5LongAdd4 = MD5LongConversion((lngHighWord * 65536) + (lngLowWord And &HFFFF&))
    End Function
    ' -------------------------------------------------------------
    Private Sub MD5Decode(intLength, lngOutBuffer(), bytInBuffer())
        Dim intDblIndex
        Dim intByteIndex
        Dim dblSum
        intDblIndex = 0   
        For intByteIndex = 0 To intLength - 1 Step 4
            dblSum = bytInBuffer(intByteIndex) + bytInBuffer(intByteIndex + 1) * 256 + bytInBuffer(intByteIndex + 2) * 65536 + bytInBuffer(intByteIndex + 3) * 16777216
            lngOutBuffer(intDblIndex) = MD5LongConversion(dblSum)
            intDblIndex = (intDblIndex + 1)
        Next
    End Sub
    ' ------------------------------------------
    Private Function MD5LongConversion(dblValue)
        If dblValue < 0 Or dblValue >= OFFSET_4 Then Error 6
        If dblValue <= MAXINT_4 Then
            MD5LongConversion = dblValue
        Else
            MD5LongConversion = dblValue - OFFSET_4
        End If
    End Function
    ' ---------------------
    Private Sub MD5Finish()
        Dim dblBits
        Dim arrPadding(72)
        Dim lngBytesBuffered
        arrPadding(0) = &H80
        dblBits = lngTrack * 8
        lngBytesBuffered = lngTrack Mod 64   
        If lngBytesBuffered <= 56 Then
            MD564Split (56 - lngBytesBuffered), arrPadding
        Else
            MD564Split (120 - lngTrack), arrPadding
        End If
        arrPadding(0) = MD5LongConversion(dblBits) And &HFF&
        arrPadding(1) = MD5LongConversion(dblBits) \ 256 And &HFF&
        arrPadding(2) = MD5LongConversion(dblBits) \ 65536 And &HFF&
        arrPadding(3) = MD5LongConversion(dblBits) \ 16777216 And &HFF&
        arrPadding(4) = 0
        arrPadding(5) = 0
        arrPadding(6) = 0
        arrPadding(7) = 0
        MD564Split 8, arrPadding
    End Sub
    ' --------------------------------------
    Private Function MD5StringChange(lngnum)
        Dim bytA
        Dim bytB
        Dim bytC
        Dim bytD
        bytA = lngnum And &HFF&
        If bytA < 16 Then
            MD5StringChange = "0" & Hex(bytA)
        Else
            MD5StringChange = Hex(bytA)
        End If
        bytB = (lngnum And &HFF00&) \ 256
        If bytB < 16 Then
            MD5StringChange = MD5StringChange & "0" & Hex(bytB)
        Else
            MD5StringChange = MD5StringChange & Hex(bytB)
        End If
        bytC = (lngnum And &HFF0000) \ 65536
        If bytC < 16 Then
            MD5StringChange = MD5StringChange & "0" & Hex(bytC)
        Else
            MD5StringChange = MD5StringChange & Hex(bytC)
        End If
        If lngnum < 0 Then
            bytD = ((lngnum And &H7F000000) \ 16777216) Or &H80&
        Else
            bytD = (lngnum And &HFF000000) \ 16777216
        End If
        If bytD < 16 Then
            MD5StringChange = MD5StringChange & "0" & Hex(bytD)
        Else
            MD5StringChange = MD5StringChange & Hex(bytD)
        End If
    End Function
    ' -------------------------
    Private Function MD5Value()
        MD5Value = LCase(MD5StringChange(arrLongConversion(1)) & MD5StringChange(arrLongConversion(2)) & MD5StringChange(arrLongConversion(3)) & MD5StringChange(arrLongConversion(4)))
    End Function
    ' ---------------------------------------------------
    Public Function CalculateMD5(strMessage)
        Dim bytBuffer
        bytBuffer = MD5StringArray(strMessage)
        MD5Start
            MD564Split Len(strMessage), bytBuffer
        MD5Finish
        CalculateMD5 = MD5Value
    End Function
    ' --------------------
    Private Sub MD5Start()
        lngTrack = 0
        arrLongConversion(1) = MD5LongConversion(1732584193)
        arrLongConversion(2) = MD5LongConversion(4023233417)
        arrLongConversion(3) = MD5LongConversion(2562383102)
        arrLongConversion(4) = MD5LongConversion(271733878)
    End Sub

  3. #3
    Futur Membre du Club
    Homme Profil pro
    Technicien Help Desk
    Inscrit en
    Février 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ain (Rhône Alpes)

    Informations professionnelles :
    Activité : Technicien Help Desk

    Informations forums :
    Inscription : Février 2015
    Messages : 4
    Par défaut
    Bonjour hackoofr,

    Merci beaucoup c'est exactement ce qu'il me fallait !

    Cordialement

  4. #4
    Futur Membre du Club
    Homme Profil pro
    Technicien Help Desk
    Inscrit en
    Février 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ain (Rhône Alpes)

    Informations professionnelles :
    Activité : Technicien Help Desk

    Informations forums :
    Inscription : Février 2015
    Messages : 4
    Par défaut
    Re-Bonjour,

    Dernière petite question après je vous embête plus ! Sur le résultat du hachage c'est possible d'afficher seulement les 6 premiers caractères ?

    Encore merci en tout cas.

    Cordialement

  5. #5
    Expert confirmé
    Avatar de hackoofr
    Homme Profil pro
    Enseignant
    Inscrit en
    Juin 2009
    Messages
    3 843
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 50
    Localisation : Tunisie

    Informations professionnelles :
    Activité : Enseignant

    Informations forums :
    Inscription : Juin 2009
    Messages : 3 843
    Par défaut
    Citation Envoyé par Always01 Voir le message
    Sur le résultat du hachage c'est possible d'afficher seulement les 6 premiers caractères ?

    Juste par curiosité expliquez-moi comment vous allez exploiter ce script dans votre boite ?

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    MsgBox "Le numero de serie du BIOS ==> " & serial & vbCrlf & "Hash BIOS ==> " & MD5FileHash(serial) & vbcrlf &_
     "Les 6 premiers caracteres du hachage ==> " & Left(MD5FileHash(serial),"6"),Vbinformation,"Le numero de serie du BIOS"
    Surtout n'oubliez pas mes +1

  6. #6
    Futur Membre du Club
    Homme Profil pro
    Technicien Help Desk
    Inscrit en
    Février 2015
    Messages
    4
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Ain (Rhône Alpes)

    Informations professionnelles :
    Activité : Technicien Help Desk

    Informations forums :
    Inscription : Février 2015
    Messages : 4
    Par défaut
    Parfait merci beaucoup ! En faite nous allons changer de stratégie de sécurité pour les sessions admin locale, les pass seront les 6 premiers caractères du résultat du hachage md5 du service TAG de l'ordinateur (donc des pass unique). En tout cas c'est vraiment sympa d'avoir aidé et ce de manière rapide et efficace !

    Cordialement

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

Discussions similaires

  1. Réponses: 4
    Dernier message: 28/06/2011, 23h16
  2. Réponses: 10
    Dernier message: 17/11/2009, 08h26
  3. Réponses: 4
    Dernier message: 14/09/2005, 17h23
  4. Lien vers une variable ?
    Par drinkmilk dans le forum Balisage (X)HTML et validation W3C
    Réponses: 4
    Dernier message: 22/02/2005, 09h55
  5. [Sybase] résultat d'un select dans une variable
    Par stoz dans le forum Sybase
    Réponses: 2
    Dernier message: 14/09/2004, 14h28

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