If you really want to disable regedit at the end-of-the-day - and want to use Kixtart, then you will have to hand-job all the pokes into seperate WriteValue function calls, here is an example taken from your file ... one shows how to poke a DWORD and the other shows how to poke a BINARY (hex) value:

Code:

Break On

$= WriteValue("HKCU\Control Panel\Desktop", "ActiveWndTrkTimeout", 0, "REG_DWORD")

$= WriteValue("HKCU\Control Panel\Desktop\WindowMetrics", "CaptionFont",
"f5ffffff000000000000000000000000bc020000
00000001000000005400610068006f006d0061000
00000000000000000000000000000000000000000
00000000000000000000000000000000000000000
000000000000000000000",
"REG_BINARY")

Exit 0



Like Jooel said, there is a UDF that will read a reg file and automate the poking for you ... whats it called again anybody ? Think Jim wrote it.

-Shawn