How to Install FFmpeg on Windows: 15 Steps (with Pictures)
https://www.wikihow.com/Install-FFmpeg-on-Windows
Tag Archives: how-to
Bypass Windows 10/11 “Let’s Connect You to a Network” installation step
This is a just in case, if you find yourself with no internet and the latest installation packages seem to force you to connect to the internet. Here’s your options.
- Fix: Computer Stuck on “Let’s Connect You to a Network” – Technipages
https://www.technipages.com/fix-computer-stuck-on-lets-connect-you-to-a-network
Disabling Windows 10 telemetry & other things
Via the Group Policy Editor.
Open up the Group Policy Editor by launching gpedit.msc as an administrator. Go through Computer Configuration > Administrative Templates > Windows Components > Data Collection and Preview Builds > Allow Telemetry
Microsoft has slightly changed some things so they may be worded differently. Such as Windows Defender is now called Microsoft Defender so older guides may not reflect that. Tamper protection needs to be also disabled.
Links & References
- How to Enable the Group Policy Editor on Windows Home Editions | TechSpot
https://www.techspot.com/guides/1719-group-policy-editor-windows-home/ - How to Access the Group Policy Editor in Windows Home
- https://www.makeuseof.com/tag/access-group-policy-editor-even-windows-home-settings-try/
Using the SFC (System File Checker) and DISM (Deployment Image Servicing and Management) Tools to repair Windows
SFC ( System File Checker)
One way to ensure you Windows files are not missing or corrupted is using a Microsoft tool called SFC ( System File Checker).
Simply open Command Prompt (run as administrator) then type the following command:
sfc /scannow
DISM (Deployment Image Servicing and Management)
DISM (Deployment Image Servicing and Management) is used for creating Windows images for deployment. Next you can use DISM to essentially check and repair Windows using Windows Update. It can also fix update failures. Simply run the this command next:
dism /online /cleanup-image /restorehealth
Links & References
- Use the System File Checker tool to repair missing or corrupted system files
https://support.microsoft.com/en-us/topic/use-the-system-file-checker-tool-to-repair-missing-or-corrupted-system-files-79aa86cb-ca52-166a-92a3-966e85d4094e - DISM Overview | Microsoft Docs
https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/what-is-dism?view=windows-11 - Fix Windows Update errors via DISM or System Update Readiness tool – Windows Server | Microsoft Docs
https://docs.microsoft.com/en-us/troubleshoot/windows-server/deployment/fix-windows-update-errors - DISM.exe /Online /Cleanup-Image /Restorehealth Explained
https://www.itechguides.com/dism-exe-online-cleanup-image-restorehealth-what-it-is-and-how-to-use/
Generate a QR Code using Python
If you’re a newb like me and you want to learn Python (or any programming language) you start off with learning little things like this.
What you’ll need first
Open up Visual Studio Code and select the language, which should be asking you on line 1. After you can go ahead save the file as a start to your desktop. I saved it as QR Code Generator.py
Visual Studio Code may offer to download the relevant software, so I’d click yes to that. I did however make sure to PIP (pip is the package installer for Python) was installed after by going to command prompt and typing "pip help" which if you get a response and not an error message then all is well. Also using pip install the module PyQRCode, which is what we’ll use "pip install pyqrcode".
The code
import pyqrcode
from pyqrcode import QRCode
s = "https://savas.co.uk/"
url = pyqrcode.create(s)
url.svg("qr.svg", scale = 8)
The first two lines are importing the module to work with/from. The next line is establishing what “s” string represents. After that you can see we’re bringing the ‘s’ string, which is the actual URL and using “pyqrcode” (from the module) to generate the QR code. The last line is how the QR code will be generated/outputted. In this case as a .svg file, with the size 8.
This should save to the location the file is saved at, so in my case the desktop. If you decide to save it as a .PNG file, then you’ll also need the pypng module.
Links & References
How To Install PIP to Manage Python Packages On Windows
https://phoenixnap.com/kb/install-pip-windows
SearchMyFiles Context Menu addition (for when right clicking within a folder)
As of version 3.16 of SearchMyFiles you can go to Options menu and click the option “Explorer Context Menu” which should add a context menu option to search within for when you right click on a folder.
This is just short of having it easy access, because usually I find myself already in the folder and it is a bit tedious going up and right clicking on the folder that I’d like searched.
Best option here is to add an additional context menu to appear when you just right click while you’re already in there. To do this you’ll need to edit your registry editor, or you can create a regedit script to add it automatically.
Automatic
Download and save this to your desktop:
https://share.savas.co.uk/zexO4/qEyoRIJo48.reg/raw
Run the script, which should automatically create the below registry lines for you.
Manually
Press start and type regedit.msc and hit enter. The Registry Editor should open.
Select all on the address bar, then paste:
Computer\HKEY_CLASSES_ROOT\Directory\Background\shell
On the left folder tree, right click on shell and create “Search Here (SearchMyFiles)” key. On the right side, create a string called “Icon” and set the value data to:
"C:\Program Files (x86)\NirSoft\SearchMyFiles\SearchMyFiles.exe",0
Now right click on the key “Search Here (SearchMyFiles)” you just created and add another key call it “command“. At this point it should look like this:

Now finally, within “command”, edit the default string and set the value data to:
"C:\Program Files (x86)\NirSoft\SearchMyFiles\SearchMyFiles.exe" /SingleBaseFolder "%V"
Should look like this:

You’re done!
What is SearchMyFiles
SearchMyFiles is a nice tool to search in a folder for a specific text, binary or even wildcard. Lets say you have an unorganized list of contact numbers, you’re not sure where the number for a certain person is saved and you have 100’s of sheets or documents. Using SearchMyFiles, you can basically narrow it down if you know the persons name or any string that you can match the result to.
Alternative to Windows Search For Files + Duplicates Search
https://www.nirsoft.net/utils/search_my_files.html#DownloadLinks
Removing/Uninstalling Microsoft Store packages via PowerShell
I accidently started Microsoft Photos and it suddenly decided to download and install Photos Media Engine Add-on in the background. Very odd.
Don’t get me wrong Photos a nice application for looking at your pictures, but I don’t use it and I prefer digiKam for viewing my albums if anything. Also JPEGView is much more powerful when viewing individual images.
Anyway, what convinced me to remove it entirely is constantly switching my defaults and now oddly installing the add-on in the background. Especially one that seems to share possible personal pictures over to the internet without consent, but this is just speculation.
Either way, to remove it you can simply go to Settings > Apps, then find Microsoft Photos and click on advanced options to remove it. If that’s not doing the trick, I prefer PowerShell.
Removing packages using PowerShell
Start PowerShell by right clicking on the Start icon on your taskbar. Click PowerShell (Admin) and type the following cmdlet.
get-appxpackage *Microsoft.Windows.Photos* | remove-appxpackage
You can also remove other Microsoft Store Apps this way. For example type the command below which will list all the apps installed:
get-appxpackage
Can also narrow it down to certain keywords, such as all the apps that contain “gaming” within the Name field:
get-appxpackage *gaming*
Then copy the “Name” field exactly as written and replace Microsoft.Windows.Photos from the above example. Making sure to include the *’s.
Removing Xbox/Microsoft Gaming packages
Like mentioned above, if you search *gaming* or *xbox* you’ll find some bloatware that you can remove. I like to remove these.
get-appxpackage *Microsoft.GamingServices* | remove-appxpackage
get-appxpackage *Microsoft.GamingApp* | remove-appxpackage
Removing People Bar feature packages
get-appxpackage *Microsoft.People* | remove-appxpackage
get-appxpackage *Microsoft.Windows.PeopleExperienceHost* | remove-appxpackage
Removing Windows Search package
If like me, you use an alternative search software (Everything by voidtools) you may want to get rid of the Window Search features just to avoid wasting resources and indexing. There is more to it than this so I suggest looking into how to completely turn off indexing also as I did all of that before running this cmdlet so I cannot confirm if this does all of that just yet.
get-appxpackage *Microsoft.Windows.Search* | remove-appxpackage
If you get any permission errors
If you get a 0x80073CFA error and a message saying “This app is part of Windows and cannot be uninstalled on a per-user basis…” well you can stop there as these apps may genuinely be integrated enough to cause issues if you uninstall or you can bypass it and remove it or you can look at other ways, such as using Group Policy to disable or turn them off. These blocks were introduced by Microsoft’s recent Windows 10 updates. See links below for links (some methods may be out of date).
Windows App Cert Kit
If you go to start, and type and run ‘Windows App Cert Kit’ you are able to validate every app installed, sometimes this is useful to also see what apps are actually installed in a more visual way.
Links & References
- Remove-AppxPackage (AppX) | Microsoft Docs
https://docs.microsoft.com/es-es/powershell/module/appx/remove-appxpackage?view=winserver2012r2-ps
- Remove-AppxPackage (AppX) | Microsoft Docs
https://docs.microsoft.com/es-es/powershell/module/appx/remove-appxpackage?view=winserver2012r2-ps
- People Bar may be an unpopular Windows 10 feature, but you can still make it useful | Windows Central
https://www.windowscentral.com/people-bar-seems-be-forgotten-many-you-can-still-make-it-useful - Uninstall Apps in Windows 10 – Page 57 – | Tutorials
https://www.tenforums.com/tutorials/4689-uninstall-apps-windows-10-a-57.html - Disable People Bar in Windows 10 With Group Policy
https://winaero.com/disable-people-windows-10-group-policy/ - windows 10 – Unable to uninstall Universal Apps through PowerShell – Super User
https://superuser.com/questions/1115801/unable-to-uninstall-universal-apps-through-powershell - [Idea] Clean removal of system apps (bypass error 0x80073CFA) · Issue #48 · 10se1ucgo/DisableWinTracking · GitHub
https://github.com/10se1ucgo/DisableWinTracking/issues/48 - Fix for Error 0x80073CFA when Uninstalling an App in Windows 10 » Winhelponline
https://www.winhelponline.com/blog/error-0x80073cfa-uninstall-app-removal-failed/
Windows Audit Mode, Out-Of-Box Experience (OOBE)
So you have a system that you would like to reformat and install a fresh version of Windows 10/11, but it’s for someone else and you would like them to create the first user. That’s where Windows Audit Mode comes in handy.
Basically you are able to pause the personalization of the installation and get right to the desktop to do whatever you want, such as updating, activating and installing specific programs, say for example an office suite.
How?
Using your usual method of freshly installing Windows, just as it asks you to setup the system (exactly on region selection step) press CTRL+SHIFT+F3 and it should boot directly to desktop. It should also add a dialog box to allow you to select to shutdown once you’re all done.
This method is also part of the way of creating a Windows image that can be used to install on multiple machines, but that warrants a different post.
References:
Boot Windows to Audit Mode or OOBE | Microsoft Docs
https://docs.microsoft.com/en-us/windows-hardware/manufacture/desktop/boot-windows-to-audit-mode-or-oobe?view=windows-11
Customize Windows in Audit Mode | Microsoft Docs
https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-7/dd799305(v=ws.10)?redirectedfrom=MSDN
Disable Microsoft Defender Antivirus real-time protection permanently
First disable Tamper Protection in the Microsoft Defender settings itself. Then using Windows Powershell (admin) disable the real-time protection with the below cmdlet.
Set-MpPreference -DisableRealtimeMonitoring $true
Alternative method is using the Group Policy Editor.
Turning off real-time protection permanently even after restarting.
OPTION FIVE – Turn On or Off Real-time Protection for Microsoft Defender Antivirus | Tutorials
https://www.tenforums.com/tutorials/3569-turn-off-real-time-protection-microsoft-defender-antivirus.html
This link should also provide you with other useful things to switch off/on. Like disabling telemetry.
Microsoft has slightly changed some things so they may be worded differently. Such as Windows Defender is now called Microsoft Defender so older guides may not reflect that. Tamper protection needs to be also disabled.
Links & References
- Turn off Windows Defender in Windows 10 permanently – ALI TAJRAN
https://www.alitajran.com/turn-off-windows-defender-in-windows-10-permanently/ - Turn off Defender antivirus protection in Windows Security
https://support.microsoft.com/en-us/windows/turn-off-defender-antivirus-protection-in-windows-security-99e6004f-c54c-8509-773c-a4d776b77960 - Enable and configure Microsoft Defender Antivirus protection capabilities | Microsoft Docs
https://docs.microsoft.com/en-us/microsoft-365/security/defender-endpoint/configure-real-time-protection-microsoft-defender-antivirus?view=o365-worldwide - Turn On or Off Real-time Protection for Microsoft Defender Antivirus | Tutorials
https://www.tenforums.com/tutorials/3569-turn-off-real-time-protection-microsoft-defender-antivirus.html
Accessing Local Group Policy Editor and Local Security Policy for Windows 10 Home editions
Simply to upsell Microsoft feels the need to basically switch off components within its Windows OS (Operating System). Annoyingly the real-time protection feature keeps enabling itself every time Windows is restarted. You have a few ways to switch this off, but my personal preference has always been the group policy method, however using Home editions this is missing.
You can use this method to enable it:
Local Group Policy Editor
How to Enable the Group Policy Editor on Windows Home Editions | TechSpot
https://www.techspot.com/guides/1719-group-policy-editor-windows-home/
Or slightly different way:
How to Access the Group Policy Editor in Windows Home
https://www.makeuseof.com/tag/access-group-policy-editor-even-windows-home-settings-try/
Local Security Policy
How to Enable Local Security Policy (secpol.msc) in Windows 10 Home – MajorGeeks
https://www.majorgeeks.com/content/page/how_to_enable_local_security_policy_in_windows_10_home.html
Simply right click on the start button (bottom left) and launch ‘Run’ then type:
%SystemRoot%/System32/secpol.msc
Alternatively simply search in the Start menu for secpol.msc and that should give the best result as the Local Security Policy.
There does seem to be an alternative method to Group Policy called Policy Plus, but I have not tried it out completely to comment. You can find it linked below.
GitHub – Fleex255/PolicyPlus: Local Group Policy Editor plus more, for all Windows editions
https://github.com/Fleex255/PolicyPlus