Saturday, August 15, 2026

GL.iNet GL-MT3000 Beryl AX Wi-Fi 6 Travel Router

 https://www.amazon.com/GL-iNet-GL-MT3000-Pocket-Sized-Wireless-Gigabit/dp/B0BPSGJN7T

I probably have more setup instruction saved somewhere but the one thing that always stumps me when connecting in a hotel is:
   You don't connect to the splash page in the phone app or setup tab.
   You have connected the router to the hotel's wifi and your phone/pc is connected to the router.
   Open some http: address the access the hotel splash page. 


Thursday, August 13, 2026

Chris Titus Tools

 This is what I have decided on today. Tomorrow may change. 😂



Friday, August 7, 2026

BitLocker

BitLocker: How to Protect Yourself Even If You Don’t Use It

Many Windows users (including me) run local accounts and never intentionally enable BitLocker. But Windows updates or certain system events may suddenly ask for an encryption key — even if BitLocker was never turned on.

To avoid getting locked out, you can generate and save your BitLocker recovery key without actually encrypting your drive.

* A good first step might be to check if Secure Boot is turned off. 
Powershell as Admin 
"Confirm-SecureBootUEFI"
If "false" or "error does not apply, blah, blah" Secure Boot is either not on or your not running UEFI boot.
Encryption can't run so key is not needed.

Step 1 — Open BitLocker Settings

Press WinKey, type Manage BitLocker, and open it.

Select Turn On BitLocker for your system drive.

Don’t worry — we’re not going to let it encrypt.


Step 2 — Save Your Recovery Key

Windows will ask where to save the key. Choose one of the following:

  • Save to a flash drive
  • Print to PDF

You cannot save the .txt file to the encrypted drive itself.

Store the key somewhere safe and not on the drive you’re protecting.


Step 3 — Cancel Encryption

After saving the key, cancel the encryption process.

Windows may leave your drive in a strange state:

  • If Explorer shows an unlocked padlock icon
  • BitLocker thinks encryption is “starting”

Step 4 — Clear the Limbo State

Open CMD as Administrator and run:

manage-bde -off C:

This forces Windows to “decrypt” the drive, even though it wasn’t encrypted. After a while, the padlock icon disappears.

I keep my recovery keys in my password locker. I don’t encrypt my drives — I just want to be prepared in case Windows decides to demand a key.


Optional — Disable BitLocker via Registry

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\BitLocker

Create 32 bit value PreventDeviceEncryption

Set the DWORD to 1 to disable BitLocker.

If "BitLocker" is not present you don't have BitLocker available to worry about.

This does not guarantee protection from unexpected Windows behavior, but it reduces the chance of surprise encryption.


Final Thoughts

You now have your recovery key. You’ve done what you can to protect yourself from Windows suddenly demanding it.

If Secure Boot is turned off in BIOS this process will not work. Encryption is effectively disabled. Copilot tells me Windows can't randomly turn it on with Secure Boot off so you should be safe and not need a key.
* A good first step might be to check if Secure Boot is turned off. 
Powershell as Admin 
"Confirm-SecureBootUEFI"

Wednesday, July 29, 2026

Winget Stuff

 

Winget: The Windows Power‑User’s Secret Weapon

Winget is one of those tools that quietly transforms how you manage software on Windows. If you’ve ever wished updating apps felt more like Linux package management—fast, predictable, scriptable—Winget is exactly that. And yes, it’s built by Microsoft.

What Is Winget?

Winget is the Windows Package Manager, a command‑line tool that lets you search, install, upgrade, and manage software without hunting through websites or installers.

Checking for Upgrades

Open Command Prompt:

  • Press the Windows key
  • Type cmd
  • Press Enter

Then run:

winget upgrade

If Winget is installed, you’ll see a list of applications that have updates available.

To upgrade everything at once:

winget upgrade --all

Running CMD as Administrator reduces the number of approval prompts you’ll see.

Going Full Savage Mode

If you want Winget to update everything silently—no prompts, no confirmations—run CMD as Administrator and enter this single line:

winget upgrade --all --include-unknown --silent --accept-package-agreements --accept-source-agreements --disable-interactivity

This is the “I don’t want to babysit updates” mode. It’s powerful, so use it intentionally.

Installing New Software

Search for a program:

winget search 7zip

You’ll get a list of matching packages. Pick the one from a Winget source (usually obvious), then install it:

winget install 7zip.7zip

Pinning Apps You Don’t Want Updated

If you want Winget to skip a program during upgrades:

winget pin --add my.program

Repeat for each app you want pinned. Winget will remember your pins and skip them during upgrades.

When an Upgrade Fails

Sometimes an app won’t update even though it appears in the list. This is usually temporary—metadata updates, installer changes, or source sync delays. Try again next time; it often resolves itself.

Final Thoughts

Winget is one of the most underrated tools in Windows. Whether you’re casually updating apps or automating your entire software stack, it gives you control and consistency that GUI installers never will.

Thursday, July 23, 2026

Installing Linux On Old PC - Avoiding UEFI

I'm leaving this here for now just for reference.
Forget installing Mint on old hardware.

Installing Linux On Old PC - Avoiding UEFI
Why? Because your BIOS doesn't handle UEFI but current installs default to it.

In the Linux live system open Gparted and partition the destination to msdos and fomat ext4

On install: 
Select "Something Else": In the installer type selection, DO NOT choose "Erase disk".  Choose "Something Else" (Manual Partitioning). 

Assign the Partition:
Click on your existing ext4 partition.
Click Change.
Set Use as: Ext4 journaling file system.
Set Mount point: /.
Ensure the Format box is checked

Bootloader Location:
At the bottom, ensure "Device for boot loader installation" is set to /dev/sda (the drive itself), NOT /dev/sda1. 

Ignore the Warning:
When you click "Install Now", it will warn: "No EFI system partition was found."
This is expected. Click Continue. 

Sadly it probably will not boot but at least it is installed correctly.

Fix Grub
sudo mount /dev/sda1 /mnt

(Note: Since you have only one partition, your root is /dev/sda1. If you have a separate /boot, mount that too, but usually not needed for single partition setups).
Reinstall GRUB to the MBR:
sudo grub-install --boot-directory=/mnt/boot /dev/sda

Crucial: Notice the command ends with /dev/sda (the drive), NOT /dev/sda1 (the partition).
If successful, it will say Installation finished. No error reported.
Generate the Config:
sudo mount --bind /dev /mnt/dev
sudo mount --bind /proc /mnt/proc
sudo mount --bind /sys /mnt/sys
sudo chroot /mnt
update-grub
exit

Reboot: Remove the USB and restart.  

Oh No! I don't have an account.

Restart and hold Shift (or press Esc) to see the GRUB menu.
Select Advanced options for Linux Mint.
Choose the line ending with (recovery mode).
In the menu that appears, select root (Drop to root shell prompt).
You will be at a command prompt like root@mint:~#.
2. Create Your User Account
Once you have the root prompt (#), run these commands (replace yourname with your desired username):

Create the user and home directory:
adduser -m yourname

(Follow the prompts to set a password and fill in details. You can press Enter to skip details).
Give yourself admin (sudo) privileges:
usermod -aG sudo yourname

(Note: On some older Mint versions, the group might be admin instead of sudo. If sudo fails, try usermod -aG admin yourname).
Fix Ownership (Critical): Since you installed as root, your home folder might be owned by root. Fix this:
chown -R yourname:yourname /home/yourname

Reboot:
reboot

You should now be able to log in as yourname with full admin rights.

Monday, July 20, 2026

Autohotkey V2 Stuff

Looking for the v1 autocorrect.ahk?

https://www.autohotkey.com/download/AutoCorrect.ahk

Stream & Cast From PC To TV

Stream Cast PC to TV Miracast

Win + k

  Roku
  Firestick
  Most TV brands

Google TV & Android cast with browser

  Chrome 3 dot menu upper right
  Brave 3 dot but in "share & save"

Thursday, July 16, 2026

Group Policy Stop Windows Update From Auto Downloading and Installing Updates

 gpedit

Computer Configuration > Administrative Templates > Windows Components > Windows Update > Manage end user experience


MX Linux Again

A little, abandoned Pentium was sitting in the corner of the closet. Perfect for MX Linux.

It has been a while so this reference looks good.

Let's do this . . .

Winget Commands

 

Winget Stuff

Things you need to know:

Things you don't want to upgrade:
Serious blocking:
winget pin add TrackerSoftware.PDF-XChangeEditor --blocking
Casual blocking:
winget pin add CodeJelly.Launchy
Did it work:
winget pin list
 
Let's do it:
"winget upgrade" produces a list
"winget upgrade --all"
If "winget upgrade --all" doesn't work, probably the upgrades shown are not "proven" yet.
 
The best upgrade command:
winget upgrade --all --include-unknown --silent --accept-package-agreements  --accept-source-agreements --disable-interactivity
 
Installing several at once:
winget install first.one second.one
With ids in a string add the conditions to the end of the string
 
Uninstalling:
If programs installed as user, use cmd non-admin. If all users use cmd admin
 
List all your installed programs:
winget export -o "%USERPROFILE%\desktop\apps.json"

GL.iNet GL-MT3000 Beryl AX Wi-Fi 6 Travel Router

 https://www.amazon.com/GL-iNet-GL-MT3000-Pocket-Sized-Wireless-Gigabit/dp/B0BPSGJN7T I probably have more setup instruction saved somewhere...