BigHugeThingComputing
Mostly For Me But You Can Watch
Tuesday, July 8, 2025
Make Your Own Ninite Installer
Monday, July 7, 2025
Windows Update Registry Tweaks
Windows Update Registry Tweaks
Extend Pause Duration
Extends Windows Update pause options from default to max of ~7,300 days.
Copy to Notepad, save as ExtendWait.reg
file, run as administrator:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings]
"FlightSettingsMaxPauseDays"=dword:00001c84
Pin to Specific Version
Prevents automatic upgrades to newer Windows versions while allowing security updates.
Copy to Notepad, save as LimitUpgrade.reg
file, run as administrator:
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"TargetReleaseVersionInfo"="24H2"
Sunday, July 6, 2025
Gimp 3 - I Finally Gave In
Saturday, July 5, 2025
Windows Sandbox Testing Winget
Testing Software Installation with Windows Sandbox
What This Guide Is About
This guide shows you how to safely test software installations using Windows Sandbox - a feature that creates a temporary, isolated copy of Windows on your computer. Think of it as a practice area where you can install programs without affecting your main system.
We'll be using a tool called Winget (Windows Package Manager) to automatically install multiple programs simultaneously, which is significantly faster than downloading and installing each program individually.
Important Notes Before Starting
Different versions of Windows behave differently with Sandbox. If something doesn't work as described, it might be due to your Windows version.
Windows 11 24H2 users: You'll need to add --source winget
to the commands because the Microsoft Store isn't accessible in Sandbox. This means you can't install apps that are only available through the Store.
Step 1: Enable Windows Sandbox
- Press the Windows key
- Type "features"
- Click "Turn Windows features on or off"
- Check the box next to "Windows Sandbox"
- Restart your computer when prompted
Helpful tip: You can copy and paste text between Sandbox and your main computer, but you can't drag and drop files.
Step 2: Create the Necessary Folders
Open Command Prompt and create these folders on your main computer:
mkdir C:\Sandbox
mkdir C:\Sandbox\winget_install
The C:\Sandbox
folder will be shared with your Sandbox environment, and winget_install
will contain the installation files.
Step 3: Download Required Files
You'll need to download three files from the Microsoft Winget GitHub page:
* 1 & 2 are a single zip file. Open the x64 folder and extract the two files.
- Microsoft.VCLibs file (a dependency)
- Microsoft.UI.Xaml file (a dependency)
- Microsoft.DesktopAppInstaller file (the main Winget installer)
Place all three files in your C:\Sandbox\winget_install
folder.
Step 4: Create Configuration Files
Basic Sandbox Configuration
Create a file called Sandbox.wsb
with this content:
<Configuration>
<MappedFolders>
<MappedFolder>
<HostFolder>C:\Sandbox</HostFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
</MappedFolders>
</Configuration>
This tells Sandbox to share your C:\Sandbox folder.
Advanced Configuration (Auto-Install)
For automatic installation when Sandbox starts, use this version instead:
<Configuration>
<MappedFolders>
<MappedFolder>
<HostFolder>C:\Sandbox</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\Desktop\Sandbox</SandboxFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
</MappedFolders>
<LogonCommand>
<Command>powershell.exe -ExecutionPolicy Bypass -NoExit -File "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\install.ps1"</Command>
</LogonCommand>
</Configuration>
This automatically runs the installation script when Sandbox starts.
Step 5: Create Installation Scripts
install.cmd (Simple Launcher)
Create install.cmd
in your C:\Sandbox\winget_install
folder:
powershell.exe -ExecutionPolicy Bypass -File install.ps1
install.ps1 (Main Installation Script)
Create install.ps1
in your C:\Sandbox\winget_install
folder:
# Install required dependencies
Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64.appx"Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64.appx"Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
# Wait for winget to be ready
Start-Sleep -Seconds 10
# Remove Microsoft Store source to avoid errors
winget source remove msstore
# Install programs
This guide shows you how to safely test software installations using Windows Sandbox - a feature that creates a temporary, isolated copy of Windows on your computer. Think of it as a practice area where you can install programs without affecting your main system.
We'll be using a tool called Winget (Windows Package Manager) to automatically install multiple programs simultaneously, which is significantly faster than downloading and installing each program individually.
Important Notes Before Starting
Different versions of Windows behave differently with Sandbox. If something doesn't work as described, it might be due to your Windows version.
Windows 11 24H2 users: You'll need to add --source winget
to the commands because the Microsoft Store isn't accessible in Sandbox. This means you can't install apps that are only available through the Store.
Step 1: Enable Windows Sandbox
- Press the Windows key
- Type "features"
- Click "Turn Windows features on or off"
- Check the box next to "Windows Sandbox"
- Restart your computer when prompted
Helpful tip: You can copy and paste text and files between Sandbox and your main computer, but you can't drag and drop.
Step 2: Create the Necessary Folders
Open Command Prompt and create these folders on your main computer:
mkdir C:\Sandbox
mkdir C:\Sandbox\winget_install
The C:\Sandbox
folder will be shared with your Sandbox environment, and winget_install
will contain the installation files.
Step 3: Download Required Files
You'll need to download three files from the Microsoft Winget GitHub page:
* 1 & 2 are a single zip file. Open the 64 folder and extract the two files.
- Microsoft.VCLibs file (a dependency)
- Microsoft.UI.Xaml file (a dependency)
- Microsoft.DesktopAppInstaller file (the main Winget installer)
Place all three files in your C:\Sandbox\winget_install
folder.
Step 4: Create Configuration Files
Basic Sandbox Configuration
Create a file called Sandbox.wsb
with this content:
<Configuration>
<MappedFolders>
<MappedFolder>
<HostFolder>C:\Sandbox</HostFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
</MappedFolders>
</Configuration>
This tells Sandbox to share your C:\Sandbox folder.
Advanced Configuration (Auto-Install)
For automatic installation when Sandbox starts, use this version instead:
<Configuration>
<MappedFolders>
<MappedFolder>
<HostFolder>C:\Sandbox</HostFolder>
<SandboxFolder>C:\Users\WDAGUtilityAccount\Desktop\Sandbox</SandboxFolder>
<ReadOnly>false</ReadOnly>
</MappedFolder>
</MappedFolders>
<LogonCommand>
<Command>powershell.exe -ExecutionPolicy Bypass -NoExit -File "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\install.ps1"</Command>
</LogonCommand>
</Configuration>
This automatically runs the installation script when Sandbox starts.
Step 5: Create Installation Scripts
install.cmd (Simple Launcher)
Create install.cmd
in your C:\Sandbox\winget_install
folder:
powershell.exe -ExecutionPolicy Bypass -File install.ps1
install.ps1 (Main Installation Script)
Create install.ps1
in your C:\Sandbox\winget_install
folder:
# Install required dependencies
Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.VCLibs.140.00.UWPDesktop_14.0.33728.0_x64.appx"Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.UI.Xaml.2.8_8.2310.30001.0_x64.appx"Add-AppxPackage "C:\Users\WDAGUtilityAccount\Desktop\Sandbox\winget_install\Microsoft.DesktopAppInstaller_8wekyb3d8bbwe.msixbundle"
# Wait for winget to be ready
Start-Sleep -Seconds 10
# Remove Microsoft Store source to avoid errors
winget source remove msstore
# Install programs
What This Does
When you run the Sandbox with these configurations:
- Creates a safe testing environment - Nothing you do in Sandbox affects your main computer
- Automatically installs Winget - Sets up the package manager in the isolated environment
- Tests software installation - Installs Notepad++ and 7-Zip as examples
- Validates your setup - If programs install successfully in Sandbox, they should work on your real computer
Why This Is Useful
- Safety first - Test potentially problematic software without risk
- Batch testing - Try installing multiple programs at once
- Clean environment - Start fresh each time without leftover files
- Time saving - Automate repetitive installation tasks
Getting Started
- Enable Windows Sandbox
- Create the folder structure
- Download the required files
- Create the configuration and script files
- Double-click your
Sandbox.wsb
file to start
Your Sandbox will open and automatically begin installing the test programs. If everything works, you should be able to continue testing and manipulating other software and scripts.
Friday, June 20, 2025
Wednesday, June 18, 2025
ChrisTitusTool Shortcut
Sunday, June 15, 2025
Running a ps1 script
Monday, June 9, 2025
Hilarious . . . Claude.ai Created This From My Previous 7 Line Post.
The Magical Fix: When Your PC Won't Show Up in Its Own Network
Have you ever encountered that maddening moment when you open File Explorer, click on "Network," and your own PC is nowhere to be found? You're not alone. This perplexing issue has stumped countless users, myself included, for what feels like an eternity.
The Problem That Wouldn't Go Away
I had one PC that suffered from this mysterious ailment for years. Despite countless troubleshooting attempts, the computer stubbornly refused to appear in its own network neighborhood. Just when I thought I'd have to live with this digital ghost forever, a second PC developed the same issue. That's when I decided enough was enough – it was time to crack this case once and for all.
The Simple Solution That Actually Works
After exhausting what felt like every possible fix in the book, I stumbled upon a surprisingly simple solution that sounds almost too good to be true. Here's the step-by-step process that worked like magic:
The Fix:
- Navigate to Settings
- Go to Network
- Select Advanced Network
- Choose Advanced Sharing
- Turn the Network Discovery option OFF, then ON
- Turn the File and Printer Sharing option OFF, then ON
That's it. No registry edits, no command line wizardry, no reinstalling network drivers – just a simple toggle dance that somehow awakens your PC's network presence.
The Moment of Truth
After applying this fix to my second PC, I held my breath and checked File Explorer. There it was – my computer finally showing up in its own network list like it should have all along. The relief was immediate, but then came the real test: would this work on my original problem PC that had been acting up for years?
I rushed to my first computer, applied the same fix, and... magic happened again. After years of frustration, both PCs now appear in their respective network lists without fail.
Why This Works (And Why It's So Frustrating)
The beauty of this solution lies in its simplicity, but that's also what makes it so frustrating. Sometimes Windows just needs a gentle nudge to remember its basic networking functions. By toggling these settings off and on, you're essentially forcing Windows to refresh its network discovery services and re-register itself with the network.
It's one of those fixes that makes you wonder why Microsoft hasn't built an automatic refresh mechanism for these services, especially given how common this issue appears to be.
Final Thoughts
If you've been battling this same issue and have tried everything from flushing DNS to sacrificing small electronics to the tech gods, give this simple toggle method a try. Sometimes the most elegant solutions are hiding in plain sight, disguised as basic settings that seem too simple to be the answer.
Trust me – after years of trying complex fixes, this refreshingly simple approach might just be the magical solution you've been searching for. Your future self will thank you for not spending another weekend diving into network adapter properties and registry hacks.
Have you encountered this issue before? Did this fix work for you, or do you have another solution that saved the day? Share your network discovery horror stories and victories in the comments below!
My Own PC Not Showing On It's Own Network File Explorer
This worked:
Winaero Tweak List And Basic Installs
Winaero Tweak List
PORTABLE APPS
UNIGETUI INSTALLS
Make Your Own Ninite Installer
Ha, Ok - not quite. You have to download the installers first. I could add curl, extract and delete requests but it's too much work for ...
-
In my quest to set up the "perfect" program install worksheet for Windows . . . Priorities are: easy update, easy install, useful...
-
Windows 11 Installation Guide: First Things to Do Getting the Windows ISO Grab an official Windows ISO. I get Win11 from here today ...
-
Links Windows Install Windows Software