Update - 20Jun06 - figured it out.
the "INF Install failure", came as a result of using RC8 of nLite. goto RC8 - Advanced INF Install Failure for background and resolution
regarding the use of FileMon and RegMon with elevated permissions without having to enter the admin password in realtime, I utilized and AutoIt script. I got the idea from the forum but the full code block is located in the AutoIt help file. here it is for reference
CODE
; Set the RunAs parameters to use local adminstrator account
RunAsSet("Administrator", @Computername, "Administrator password")
; Run program (arg 1) as admin
RunWait($CmdLine[1])
; Reset user's permissions
RunAsSet()
RunAsSet("Administrator", @Computername, "Administrator password")
; Run program (arg 1) as admin
RunWait($CmdLine[1])
; Reset user's permissions
RunAsSet()
works wonderfully and you can tweak to use for other users and passwords. I found it helpful to check other user's registry entries this way.
anyhow, people are clearly reading this message thread - thought you'd like to know