Francesco Posted September 11, 2011 Posted September 11, 2011 (edited) CauseThe WriteRegKey expects an array and not a string for REG_MULTI_SZ values.FixReplace the following line in the HideWriteRegKey2 function of configwizard_wizards.js txt += ',"'+document.getElementById("ValueData").value.replace(/\r/g," ")+'"'; with txt += ',new Array("'+document.getElementById("ValueData").value.replace(/\r/g,'", "')+'")'; or alternatively txt += ',["'+document.getElementById("ValueData").value.replace(/\r/g,'", "')+'"]'; Edited September 11, 2011 by Francesco
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now