Source: https://www.tenforums.com/tutorials/4689-uninstall-apps-windows-10-a.html
Run these commands in Powershell.
- 3D Builder:
Get-AppXPackage *Microsoft.3dbuilder* | Remove-AppxPackage
Source: https://www.tenforums.com/tutorials/4689-uninstall-apps-windows-10-a.html
Run these commands in Powershell.
Get-AppXPackage *Microsoft.3dbuilder* | Remove-AppxPackage
NOTE - The '>' symbol at the start of a line specified that it is a terminal command for easy readability.
Note: This is all almost full YouTube ID informations. Original owner goes to AgentOak, modified version by Martin Eesmaa.
See the credits and also special thanks in below.
Before this gist has been forked, AgentOak made original gist on November 13 2019 and it was last updated on May 5 2021.
From now on, this forked gist is maintained by Martin Eesmaa since 17 September 2022. I joined to yt-dlp Discord server on 3rd April 2026 with my Discord username: martineesmaa.
Last updated: 03 April 2026
This is a write-up of the GitExercises upto level "fixed-old-typo".
The first exercise is to push a commit that is created when you run the
git startcommand.
Just try
git verifyafter you have initialized the exercises and be proud of passing the first one :-)
Internet connection and DNS routing are broken from WSL2 instances, when some VPNs are active.
The root cause seems to be that WSL2 and the VPN use the same IP address block, and the VPN routing clobbers WSL2's network routing.
This problem is tracked in multiple microsoft/WSL issues including, but not limited to:
Notes on configuring ArchWSL on WSL2.
Edit %UserProfile%\.wslconfig:
[wsl2]
swap=0
localhostForwarding=true| #Requires -RunAsAdministrator | |
| # Unlock-PowerCfg - v22.05.11 | |
| # Disable "Connected Standby" | |
| Set-ItemProperty -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Power' -Name 'CSEnabled' -Value 0 -Force | |
| # Get Power Settings entries and add/set 'Attributes' to 2 to unhide | |
| $PowerCfg = (Get-ChildItem 'HKLM:\SYSTEM\CurrentControlSet\Control\Power\PowerSettings' -Recurse).Name -notmatch '\bDefaultPowerSchemeValues|(\\[0-9]|\b255)$' | |
| foreach ($item in $PowerCfg) { Set-ItemProperty -Path $item.Replace('HKEY_LOCAL_MACHINE','HKLM:') -Name 'Attributes' -Value 2 -Force } |
This guide will enable systemd to run as normal under WSL 2. This will enable services like microk8s, docker and many more to just work during a WSL session. Note: this was tested on Windows 10 Build 2004, running Ubuntu 20.04 LTS in WSL 2.
To enable systemd under WSL we require a tool called systemd-genie
Copy the contents of install-sg.sh to a new file /tmp/install-sg.sh:
| #!/usr/bin/env bash | |
| set -e | |
| #========================================================================================== | |
| # Configurations | |
| #========================================================================================== | |
| # Set hostname | |
| PC_HOSTNAME="" | |
| # Disable Wayland to use xorg as dafult | |
| DISABLE_WAYLAND=false |