We're working on a Aruba VIA VPN project, and I want to use the Palo Alto User-ID API to record the usernames of the logged in users without having them go through the captive portal. This document looks like it would work really well for my purpose () but there is a slight problem. These computers will more than likely not be joined to the domain. So this line: strXMLLine = strXMLLine & "<entry name=""" & WshNetwork.UserDomain & "\" & WshNetwork.UserName & """ ip=""" & IPConfig.IPAddress(i) & """/>" really won't work for me. Is there anyway to call a pop-up box, have the user enter their username, and then pass that username as a variable instead of "WshNetwork.UserName?"
... View more