Monthly Archives: January 2026

Insert an external block with the same name in AutoCAD

If you have a DWG template with a block inside with the same name as the DWG file, and you try to insert it into another DWG file, then you often get the error:

"Block references itself"

To fix this you can on the command line run this command by adding an asterix (*) before the filename with the extension “.dwg”:

Example inserting MyBlock.dwg with a block inside called MyBlock should be specified as below.

-INSERT Enter block name or [?]: *C:\MyFolder\MyBlock

Thereafter, is just specify insertion point, scale etc.

If there already is a block specified inside the current called MyBlock then you will have to purge this block before the above.

Restore old Right-click menu in Windows 11

Restore the old Context Menu in Windows 11

  1. Right-click the Start button and choose Windows Terminal.
  2. Copy the command from below, paste it into the Windows Terminal Window, and press Enter.

    C:\> reg.exe add "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}\InprocServer32" /f /ve
  3. Restart File Explorer or your computer for the changes to take effect.

Restore Modern Context menus in Windows 11

To undo this change, in a Terminal Window, execute this command:

  1. Copy the command from below, paste it into the Windows Terminal Window, and press Enter.

    C:\> reg.exe delete "HKCU\Software\Classes\CLSID\{86ca1aa0-34aa-4e8b-a509-50c905bae2a2}" /f
  2. Restart the File Explorer or Computer for the changes to take effect.

These steps can help you to enable the old context menu in Windows 11.

Source: https://learn.microsoft.com/en-gb/answers/questions/2287432/(article)-restore-old-right-click-context-menu-in

The user did not accept the license agreement passing EULAS_AGGRED=1 on the command line when installing VMware Workstation

When I tried to install VMware Workstation 25H2 on Windows 11, I got the above error.

To fix it, I ran the below command from an administrator command line:

C:\>VMware-Workstation-Full-25H2-24995812.exe /s /v "/qn EULAS_AGREED=1"

The /s and /v "/qn" flags are for silent installation; adjust as needed.

Then VMware Workstation installed without problems.