quote:
Originally posted by LifelesS
btw, what do u mean by restrictive?
IIRC there was a limit of some kind, can't remember exactly.
And Matty's script allows Enumeration of keys.
quote:
Originally posted by LifelesS
I just see a lot of this
That's probably because your browser can't figure out that the file encoding is UCS2-LE (UTF16-LE)
EDIT: Searching the forums I found at least one thing:
quote:
Originally posted by J-Thread
Tip
RegWrite will write at most one DWORD to a REG_BINARY value. Larger values are not supported with this method.
EDIT2: Found some more:
quote:
Originally posted by CookieRevised
RegWrite, RegRead and RegDelete are the only ones that JScript knows and those methods are very, and I mean very, limited.
eg:
* You can not check if a registry key exists or not with RegRead; it will produce an error. => can be worked around using error checking.
* You can not write bigger values than a DWORD to a binary registry value (this means no binary data strings for example)
* You can not write a REG_MULTI_SZ value with RegWrite
* You can not enumerate registry keys
* and the list goes on...