I spent time creating this in PowerShell only to realize I need to do this in C# with a simple EXE that will create this URL and launch the browser to that URL. Basically it's grabbing the locally logged in users email address from AD and their computer name and submitting it to another form with JSON.
$email = ([adsi]"LDAP://$(whoami /fqdn)").mail
$workstation = $env:computername
$url = 'https://www.cognitoforms.com/SupportRequestForm?entry={{"CreateSupportTicket":{{"Workstation":"{0}","YourEmailAddress":"{1}","ConfirmEmail":"{1}"}}}}' -f $workstation, $email.value
Could someone help me out in converting this to C#?