Reputation: 345
How can I edit Windows 10 login screen so that it will only work if there is a working usb camera installed? Is there any documentation of API example or tool for this use case?
Upvotes: 1
Views: 110
Reputation: 1341
Try to implement and use a combination of your own couple of Credential Provider and Credential Provider Filter.
Inside of ICredentialProviderFilter::Filter method you can make a decision to enable or disable any Credential Provider.
Inside of ICredentialProvider::SetUsageScenario method you also can make a decision to show or to hide your own Provider.
Here you also can create and show a dummy tile with "Please connect USB-camera" caption on it.
Upvotes: 1