Windows PowerShell is a powerful tool inside the Windows environment often overlooked by typical users which is a great mistake since it can offer a large array of functionality and usability and if used well can offer a unique working experience.
Today we will be using PowerShell to turn the WEB camera off so it can not be accessed, completely disabling it for use. You might want to do this for security reasons or just want to learn few new things. Whatever your reason might be, I am welcoming you to this tutorial and please do keep reading.
In order to disable the WEB camera first thing we need to do is to find a matching device ID. We will find this value inside the device manager, so press ⊞ WINDOWS + X to open the secret menu.
In the menu choose device manager and click on it.
When the device manager opens, expand the Imaging devices or Cameras section.
Right-click Integrated Camera or the primary webcam, and click Properties.
Go to the Details tab.
Under the Property section, click to select Matching device ID from the drop-down.
Right-click the value and select Copy
The next step is to download and install Windows Driver Kit (WDK)
Create and run a PowerShell script with the following parameters/values to disable the camera. Substitute the <FOLDER> placeholder with the actual name of the folder where your copy of Devcon is residing
$id = (Get-CimInstance Win32_PnPEntity |
where caption -match '<PRIMARY CAMERA>').pnpDeviceID
$ppid = "{0}{1}" -f '@',$id
Set-Location c:\<FOLDER>
Devcon status $ppid
Devcon disable $ppid
Devcon status $ppid
To enable the camera device, run the command below in PowerShell:
devcon enable $ppid

Error Causes
Error Causes
Error Causes
In order to make a keyboard shortcut for the desired folder know that it is available only when you have a shortcut of the desired folder, it cannot be done on the folder itself, only on its shortcut. Now folder shortcut does not need to reside on desktop, you can place it anywhere you like, but it must be a shortcut.
So the first step is of course to make a shortcut of the folder that you wish to have access via keyboard key combination and place it where you wish.
Once you have done this step, right-click on it and choose properties. Inside properties at the top click on the Shortcut tab and then inside Shortcut Key, press the key combination that you wish to associate with this folder. Confirm with OK and start using fast folder access with your desired key combination.
Error Causes“Something went wrong, We weren’t able to set up your PIN. Sometimes it helps to try again or you can skip for now and do this later.”On the other hand, here’s the error message you get for the Microsoft Store-related error:
“Try that again, Something happened on our end and we couldn’t sign you in.”Here are some potential fixes you can try to fix the Error Code 0x80090016 in the Microsoft Store:
powershell -ExecutionPolicy Unrestricted Add-AppxPackage -DisableDevelopmentMode -Register $Env:SystemRootWinStoreAppxManifest.xml
“This policy setting allows you to control whether a domain user can sign in using a convenience PIN. If you enable this policy setting, a domain user can set up and sign in with a convenience PIN. If you disable or don’t configure this policy setting, a domain user can’t set up and use a convenience PIN. Note: The user’s domain password will be cached in the system vault when using this feature. To configure Windows Hello for Business, use the Administrative Template policies under Windows Hello for Business.”