News:

The Latest electronic and computer Tips that work!

Main Menu
[Hide Attachments]
There are no attachments!
Menu

Show posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.

Show posts Menu

Messages - branx86

#1
Use this if you need to convert a working windows install from Leagcy Bios to UEFI Bios without reinstalling windows.

To restart windows 11 Goto System > Windows Update > Advance Options > Recovery > Advanced Recovery > Restart
Once in the windows menu choose Troubleshoot > Advance Option > Command Prompt

1st. mbr2gpt /validate /disk:(your OS disk number) normally 0
2nd. mbr2gpt /validate /allowfullos /disk:(your OS disk number)
3rd. mbr2gpt /convert /allowfullos /disk:(your OS disk number)

#2
General Discussion / UNLOCK The TIDRadio TD-H3
October 08, 2025, 03:45:41 PM

#3
Windows Fixes / decrypt a Bitlocker from the CMD Line
October 06, 2025, 02:42:58 PM

Using CMD to decrypt a Bitlocker drive requires you to type the command: manage-bde -unlock d: -password

#4
In a Admin CMD Prompt:

reg add HKCR\.pdf\ShellEx\{8895b1c6-b41f-4c1c-a562-0d564250836f} /ve /d {1B96FAD8-1C10-416E-8027-6EFF94045F6F} /f

reg add HKCR\CLSID\{3A84F9C2-6164-485C-A7D9-4B27F8AC009E} /v EnablePreviewHandler /t REG_DWORD /d 0 /f

reg add HKCR\WOW6432Node\CLSID\{3A84F9C2-6164-485C-A7D9-4B27F8AC009E} /v EnablePreviewHandler /t REG_DWORD /d 0 /f


or Download the Windows_Preview_Fix.bat and right click run as administrator
#5
in a cmd window: setup.exe /product server /compat ignorewarning /migratedrivers all
#6
Windows Fixes / Get Serial Number from Windows
September 11, 2025, 02:50:05 PM
Powershell script to get serial number:

get-ciminstance win32_bios | select SerialNumber


DOS CMD to get serial number:
wmic bios get serialnumber

to Get Product Key :    wmic path softwarelicensingservice get OA3xOriginalProductKey
#7
Windows Fixes / ByPass Win11 Internet login
September 11, 2025, 12:07:00 PM
If you get to the screen, where connection is required, press SHIFT+F10 and Command Prompt will open.

Type OOBE\BYPASSNRO and press ENTER. The process will begin again and this time, it will show "I dont have an internet access" button.
#10
Linux Fixes / USE DD to make drive Clones or Images
July 13, 2025, 01:38:31 AM
#smartctl -i /dev/sd?    sd?= drive you want to check -This CMD will show the drive info and serial number.

Make direct disk-to-disk copy:
#dd if=/dev/sda of=/dev/sdb bs=32M status=progress

To save space, you can compress data produced by
#dd if=/dev/hdb | gzip -c  > /image.img.gz

You can restore your disk with:
#gunzip -c /image.img.gz | dd of=/dev/hdb

Make a IMG of a Drive.
dd if=/dev/hdb of=/image.img

To save to another server drive mount first:
mount -t cifs //192.168.1.14/Drive /mnt/drive  --verbose -o user=xx$$,pass=NoOne
#11


 
#12
General Discussion / Neon LED for signs and cars
July 12, 2025, 11:28:32 PM
#15
Food Recipes / MockTail Recipe
June 14, 2025, 04:13:27 PM