var entry = new DirectoryEntry("WinNT://DOMAIN/Machinename,Computer");Console.Writeline(entry.GuID);
实际上,路径由命令行提供.这个简单的控制台应用程序是为了测试而编译的,在我的测试中我发现:
>连接到我自己的windows 7 PC工作.
>连接到网络上的任何其他windows XP机器,工作.
>连接到网络上的任何其他windows 7计算机失败,包括:
Unhandled Exception: System.IO.fileNotFoundException: The network path was not found.
at System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.GetInfo()
at System.DirectoryServices.DirectoryEntry.RefreshCache()
at System.DirectoryServices.DirectoryEntry.FillCache(String propertyname)
at System.DirectoryServices.DirectoryEntry.get_NativeGuID()
at System.DirectoryServices.DirectoryEntry.get_GuID()
at GetDirectoryEntryPropertIEs.Program.Main(String[] args) in D:\GetDirectoryEntryPropertIEs\Program.cs:line 15
有任何想法吗?
我是所有机器上的管理员,但是由于设备锁定服务引起了另一个问题,导致在询问时出现UnauthorizedAccessException异常,但在这种情况下,我甚至无法阅读机器的GuID.
事件日志没有任何用处.
卢克
解决方法 对于不同的情况,我遇到了同样的错误信息.也许我发现的解决方案也可以帮助你.升级到windows 10后,我的电脑启动时出现d出错误,看起来就像您发布的那样.这是System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.GetInfo()中的fileNotFoundException.
解决方案是将两个字符串从一个注册表位置复制到另一个.
copy these strings: RegisteredOwner and RegisteredOrganizationFrom: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\windows NT\CurrentVersionTo: HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\windows NT\CurrentVersion总结
以上是内存溢出为你收集整理的c# – FileNotFoundException在System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.GetInfo()全部内容,希望文章能够帮你解决c# – FileNotFoundException在System.DirectoryServices.Interop.UnsafeNativeMethods.IAds.GetInfo()所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)