Windows 7 凭据提供程序示例
我正在尝试使用凭据提供程序为 Windows 7 创建自定义登录。我使用 Windows 7 Professional、Windows SDK 7.0 和 Visual Studio 2010 Ultimate。在我为 SampleCredentialProvider 构建解决方案之后 SDK 7.0 中的示例文件夹创建了我的 dll 文件,我将 dll 文件复制到 Windows\System32 文件夹中,然后运行 Register.reg,但登录时没有任何反应。根据登录屏幕中的文档,我应该能够看到新用户(管理员和访客)。我做错了什么?有什么窍门或者什么吗?
谢谢。
I'm trying to create a custom login for Windows 7 using Credential Provider. I use Windows 7 Professional, Windows SDK 7.0 and Visual Studio 2010 Ultimate. After i build the solution for SampleCredentialProvider from
the sample folder in SDK 7.0 my dll file is created, i copy the dll file into my Windows\System32 folder and i run the Register.reg but nothing is happening at login. According to the documentation in the login screen i should be able to see new users(Administrator and Guest). What have i done wrong? Is there a trick or something?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您使用的是 Windows 7 64 位吗?如果是这样,请检查您是否正在构建 Win32 版本。使用构建
>
配置管理器并确保活动解决方案平台为x64 ,活动解决方案配置为发布。Are you on Windows 7 64-bit? If so, check to see whether you are building the Win32 version instead. Use the Build
>
Configuration Manager and make sure Active solution platform is x64, and the Active solution configuration is Release.适用于 Windows 7 的 Windows SDK 有很好的凭据提供程序示例
Windows SDK for Windows 7 have good Credential Provider samples