Skip to content

Commit 4d92575

Browse files
committedJun 9, 2020
Add readme and license
1 parent 6d6aea1 commit 4d92575

File tree

2 files changed

+87
-0
lines changed

2 files changed

+87
-0
lines changed
 

‎LICENSE.txt

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2020 emoacht
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

‎README.md

+66
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,66 @@
1+
# Hello Switcher
2+
3+
Hello Switcher is a Windows desktop tool to help switching Windows Hello cameras.
4+
5+
If your PC has a built-in Windows Hello camera like a Surface series and you wish to add a USB web camera which has Windows Hello capability* for using Windows Hello authentication even when the built-in camera cannot be used, you will not be able to switch the two cameras as you might expect. It is because Microsoft has not added the functionality to manage multiple Windows Hello cameras to Windows 10 yet.
6+
7+
This tool helps switching between a built-in camera and a USB camera. It works as follows:
8+
9+
- If a specifiled USB camera is attached to your PC, this tool will __disable__ a specified built-in camera so that the USB camera is used for Windows Hello authentication.
10+
- If the USB camera is dettached, this tool will __enable__ the built-in camera so that it will be used for the authentication again.
11+
12+
This tool internally calls [DevCon](https://docs.microsoft.com/en-us/windows-hardware/drivers/devtest/devcon), a command-line tool for managing devices, with administrator privilege to enable/disable a built-in camera.
13+
14+
(* USB cameras with Windows Hello capability are limited in the market: Mouse Computer CM02; Logitech Brio Webcam; and Lenovo 500 FHD Webcam.)
15+
16+
## Requirements
17+
18+
* Windows 10
19+
* .NET Framework 4.8
20+
* Devcon.exe
21+
22+
## Download
23+
24+
:floppy_disk: [Executable](https://github.com/emoacht/HelloSwitcher/releases/download/1.0.0/HelloSwitcher100.zip)
25+
26+
## Getting started
27+
28+
1. Get __Devcon.exe__. It is included in Windows Driver Kit (WDK). To download it only, see [this thread](https://superuser.com/questions/1002950/quick-method-to-install-devcon-exe).
29+
30+
2. Place __Devcon.exe__ in the folder where this tool's executable exists.
31+
32+
3. Get device IDs of Windows Hello cameras by either of the following:
33+
34+
- Open Device Manager -> in `Cameras` node, find Windows Hello cameras -> open properties -> select `Details` -> in `Property` dropdown list, select `Hardware ID` -> copy the values.
35+
- Execute __Devcon.exe__ with `hwids =camera` arguments.
36+
37+
4. Open camera.txt included in this tool's package and replace the following values:
38+
39+
- `BuiltinCameraId` value -> built-in camera's device ID
40+
- `UsbCameraId` value -> USB camera's device ID
41+
42+
5. If you wish to run this tool from startup, register it in Task Scheduler.
43+
44+
- In `Gereral`, check `Run with highest privileges`.
45+
- In `Conditions`, uncheck __both__ `Start the task only if the computer is on AC power` and `Stop if the computer switches to battery power`.
46+
- In `Settings`, uncheck `Stop the task if it runs longer than:`.
47+
48+
6. Once started, this tool shows its icon in notification area indicating the existence of the specified USB camera and offers some optional commands in right-click menu.
49+
50+
## Remarks
51+
52+
Since this tool runs after OS's sign-in, it cannot change at sign-in, enabled/disabled state of the specified built-in camera at last sign-out.
53+
54+
## History
55+
56+
Ver 1.0.0 2020-6-9
57+
58+
- Initial release
59+
60+
## License
61+
62+
- MIT License
63+
64+
## Developer
65+
66+
- emoacht (emotom[atmark]pobox.com)

0 commit comments

Comments
 (0)
Please sign in to comment.