I'm trying to return from a webpage, the remote HKCU\Volatile\C LIENTNAME

Here's what I'm doing so far:

Get the Machine Name via DNS - this bit works great:
Code:
        Public Shared Function GetMachineName(ByVal sender As System.Web.UI.Control) As String
            Dim host As System.Net.IPHostEntry = Nothing
            Dim machinename As String = ""

            host
...