lpaschal8

New Member
Joined
Oct 5, 2018
Messages
1
My HP computer is running Windows 10 1803. The camera app opens and appears to work, then freeze. After restoring my computer to factory settings, the camera worked until I installed all the updates. The driver has been uninstalled & re-installed. that didn't fix the issue. The camera is the HP Wide Vision FHD. Is there a known fix?
 

Solution
I would suggest re-installing the UWP camera application. You can do it from a Powershell prompt

Get-AppxPackage -AllUsers -Name *windowscamera* | % { Add-AppxPackage "$($_.InstallLocation)\AppXManifest.xml" -Register -DisableDevelopmentMode }

livix07

Honorable Member
Joined
Feb 19, 2018
Messages
585
You can try a different camera app, just to check if it is caused by the app or not. Try VLC player:

An image from 'Windows 10 Camera app not working'. VLC media player menus showing steps to open and configure a capture device with default video and audio settings.


Choose your video device as below:

An image from 'Windows 10 Camera app not working'. VLC media player menus showing steps to open and configure a capture device with default video and audio settings.
 

Last edited by a moderator:

livix07

Honorable Member
Joined
Feb 19, 2018
Messages
585
Are there any yellow triangles with exclamation mark on them in Device Manager?
 

Neemobeer

Windows Forum Team
Staff member
Joined
Jul 4, 2015
Messages
8,998
I would suggest re-installing the UWP camera application. You can do it from a Powershell prompt

Get-AppxPackage -AllUsers -Name *windowscamera* | % { Add-AppxPackage "$($_.InstallLocation)\AppXManifest.xml" -Register -DisableDevelopmentMode }
 

Solution