Tuesday, February 18, 2025

Get a list of filenames in a folder, in text format

Windows (Command Prompt)

  1. Open Command Prompt (Win + R, type cmd, press Enter).
  2. Navigate to the folder:
    cd "C:\path\to\your\folder"
  3. Run this command to output filenames to a text file:
    dir /b > filelist.txt
    This will save the filenames (without details) into filelist.txt in the same folder.

Tuesday, October 15, 2024

Windows 11, Edge, ERR_CONECTION_RESET, ping works

Nothing worked, no URL from Edge 

Try reinitialising the network states. Run the following commands in an elevated cmd shell:

  • Reset WINSOCK entries to installation defaults:

    netsh winsock reset catalog

  • Reset TCP/IP stack to installation defaults:

    netsh int ip reset reset.log

  • Reset Firewall to installation defaults:

    netsh advfirewall reset

  • Flush DNS resolver cache:

    ipconfig /flushdns

  • Renew DNS client registration and refresh DHCP leases:

    ipconfig /registerdns

  • Flush routing table (reboot required):

    route /f

did not work

Tried a different wifi network, flalessly worked, installed Chrome, no more issues.
Edge FOR THE WIN