| strRoot = "HKLM"
strPath = "SOFTWARE\AnHttpd"
strName = "TEST"
strAlias1 = "lightbox"
strAlias1Path = "C:\TEMP\lightbox"
strTarget = strRoot & "\" & strPath & "\" & strName
WshShell.RegWrite strTarget & "\CGI\WaitCGIFin\", "On", "REG_SZ"
WshShell.RegWrite strTarget & "\Index\Browsable", "Off", "REG_SZ"
WshShell.RegWrite strTarget & "\Alias\ /" & strAlias1, strAlias1Path, "REG_SZ"
WshShell.RegWrite strTarget & "\Alias\Count", 1, "REG_DWORD"
| |