BitLocker on Windows 10


Three quick commands to turn on/off and check BitLocker on Windows 10 Professional and Enterprise. You have to run the following commands in an Administrative terminal. To turn on BitLokcer against volume C:  manage-bde -on C: -RecoveryPassword -skiphardwaretest -UsedSpaceOnly To turn off BitLocker against volume C:  manage-bde -off C: To check BitLocker against volume C:  … Continue reading BitLocker on Windows 10

Enable Fingerprint login on Windows 10


It took me some time to get this one work, here are a couple of gotchas I learned. If the Fingerprint option is greyed out with a note '*Some settings are hidden or managed by your organization'. The fix is to update the registry key - [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\System] "AllowDomainPINLogon"=dword:00000001  If the fingerprint sensor is not responding during … Continue reading Enable Fingerprint login on Windows 10

Restore MSSQL database using batch script


If you are looking for a tool which can restore the MS SQL DB backup from the production environment to the development environment, this script is just the one that you are after. In my example, the script does the following things: 1) Copy of the latest pro db backup to local. 2) Close all connections of … Continue reading Restore MSSQL database using batch script