查找终端服务用户的文档文件夹
我试图允许用户通过包含浏览器插件的 IIS aspx 页面将本地扫描仪与终端服务器一起使用。该插件可以扫描文件并将数据传递到 aspx 页面,该页面将文件上传到服务器。
我正在使用 HttpContext.Current.User.Identity.Name 来获取包含远程用户名称的字符串。如何在终端服务器上找到用户的文档文件夹?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
取得了一点进步。以下是使用 Powershell 查找已知用户名路径的方法:
这是 C# 版本:
C# 不是我的母语;可能有一些不那么直率的方法可以实现这一点。但它确实有效。
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.