Respected community members,
I have a requirement to run the .exe program on client's pc in intractive mode from asp.net page?? Also what security it need??
I am runnign below code..but it stuck at last step....Do i need to pass client credential? how??
Dim process As System.Diagnostics.Process = Nothing
Dim processStartInfo As System.Diagnostics.ProcessStartInfo
processStartInfo = New System.Diagnostics.ProcessStartInfo()
processStartInfo.FileName = "C:\test\client.exe"
Dim strArgument As String = ""
strArgument = " X y Z"
processStartInfo.Verb = "runas"
...
Go to the complete details ...