I'm trying to allow users to use their local scanners with a Terminal Server via an IIS aspx page containing a browser plugin. The plugin can scan files and pass the data to an aspx page which uploads files to the server.
I'm using HttpContext.Current.User.Identity.Name to get a string containing the name of the remote user. How can I find the user's documents folder on the terminal server?
Made a bit of progress. Here's a way to find a the path for a known username using Powershell:
Here's the C# version:
C# is not my native tongue; there are probably methods of accomplishing this that are less blunt. But it does work.