This is interesting news. Hope it will bring good enchancements to the MySQL project.
Read it
Related Posts

Getting list of printers from command line
Posted on 19 August 2022powershell 'get-printer | format-table' Run this via cmd line… Alternatively, run it in powershell as get-printer | format-table Sample output looks like: Name ComputerName Type DriverName PortName Shared Publishe d ---- ------------ ---- ---------- -------- ------ -------- OneNote for Windows 10 Local ...

Viewing and exporting Cached Credentials in Windows
Posted on 26 June 2022I always knew, you can see your cached credentials in Control Panel - Credential Manager. However, I wasn't aware you can actually export/import them. The command is: rundll32.exe keymgr.dll,KRShowKeyMgr You can simply hit Windows and R keys, ...

Checking list of software from Command Line
Posted on 08 December 2021I needed to check software installs on multiple machines. One thing I found was to utilize WMI (Windows Management Instrumentation). The command is simple: wmic product where 'name like '%%Office%%'' get name Above searches the installed programs ...
This site uses Akismet to reduce spam. Learn how your comment data is processed.
Leave a Reply