Writing to REG_MULTI_SZ windows registry keys

Pat Blair pat_blair at prn.com
Fri Feb 6 13:09:52 EST 2004


Hello.  I'm looking for any information I can get about writing values to
keys in the Windows registry when the value type is a multi-string (ie.
REG_MULTI_SZ).  When I get the value of a multi-string value using winreg
functions, I get a tuple with tuple[0] being a list, and tuple[1] a number.
If I try to write such a tuple back into a multi-string value, I get the
following exception:

 

ValueError: Could not convert the data to the specified type.

 

I haven't been able to find any documents, postings, etc. that deal with
this specifically.  My test code is listed below.  If any tips can be
offered, they will be much appreciated!

 

from _winreg import *

import sys

 

 

#get the current value of the PendingFileRenameOperations key

def getCurrentValue():

    aReg = ConnectRegistry(

        None,

        HKEY_LOCAL_MACHINE)

    aKey = OpenKey(aReg, r"SYSTEM\CurrentControlSet\Control\Session
Manager")

    value = QueryValueEx(aKey, "PendingFileRenameOperations")

    CloseKey(aKey)

    return value

 

#set the value of a test REG_MULTI_SZ key (this key already exists")

def setNewValue(value):

    aReg = ConnectRegistry(

        None,

        HKEY_LOCAL_MACHINE)

    aKey = OpenKey(aReg, r"SOFTWARE\PRN_TEST", 0, KEY_WRITE)

    SetValueEx(

        aKey,

        "PendingFileRenameOperations",

        0,

        REG_MULTI_SZ,

        value

    )

    CloseKey(aKey)

    

 

#the name of some file I want to add to the list

renamedTarget = r"C:\some_file_i_want_to_delete.txt"

 

tuple = getCurrentValue()

print tuple

list = tuple[0]

list.append(unicode(renamedTarget))

newtuple = (list, tuple[1])

 

setNewValue(tuple)

-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20040206/70802f3a/attachment.html>


More information about the Python-list mailing list