I honestly don't know if this is Kixforms. Here is the code I am running. Basically, checks for group membership. If the user is in the group, an inputbox is supposed to pop up asking for their email address and then the script sends an email to that address. Everything works except that the inputbox shows up minimized.
 Code:
 if ingroup ("adsstest")
	SHELL 'cscript //nologo \\domain.local\netlogon\ADSelfService_Enroll_Check.vbs'
	if @ERROR = 47
		$smtpto=inputbox("Enter your email address for more info on Enrollment.","Enrollment")
		MAILER($smtpto)
	endif
endif



Edited by Glenn Barnas (2016-03-30 03:29 PM)
Edit Reason: added code tags