Quick Tip: Opening Total Commander from terminal
Quick Tip: Opening Total Commander from terminal

Intro Total Commander provides commandline interface, so in order to open desired folder in Total Commander from Powershell or Windows Terminal you need to run: [crayon-6634ec38ec81c472197752/] But who wants to write that long stuff all over again. Solution Solution is, as usual, very simple. You have to add function, to your powershell profile. Keep in... » read more

Protecting email address
Protecting email address

Introduction Sharing email address as a plain text is not the best idea as it can be parsed by web crawlers. Unfortunately our email inboxes get bombarded with spam every day, often because we share our email address on so many places. So why would I make it easier for spamers. I will show you... » read more

Opening SQL Server Configuration Manager
Opening SQL Server Configuration Manager

Solution To Open SQL Server Configuration Manager, run following Path depending on your SQL Server version. Version Path SQL Server 2019 C:\Windows\SysWOW64\SQLServerManager15.msc SQL Server 2017 C:\Windows\SysWOW64\SQLServerManager14.msc SQL Server 2016 C:\Windows\SysWOW64\SQLServerManager13.msc SQL Server 2014 (12.x) C:\Windows\SysWOW64\SQLServerManager12.msc SQL Server 2012 (11.x) C:\Windows\SysWOW64\SQLServerManager11.msc Taken from microsoft documentation You can execute following T-SQL query, to see which SQL Server... » read more

Collapsable menu for GitHub wiki
Collapsable menu for GitHub wiki

Intro If you ever wanted nice looking collapsible side menu on github wiki pages like this: then keep reading 😉 Solution Solution is very simple, you need to use <details> and <summary> tags. See snipped bellow: [crayon-6634ec38ee73a013185482/] You can see it in action in PoShLog wiki – https://github.com/PoShLog/PoShLog/wiki