How to Check My PowerShell Version?

Do you need to know how to check your PowerShell version? This mission-critical question was on my mind, too, just a few minutes ago. In this article, I’ll show you how I did it. Ready? Check, go! πŸ‘‡ Identify Your PowerShell Version One of the most common and recommended ways is by using the $PSVersionTable … Read more

How to Flush Your Cache on Windows and Router

I work a lot with DNS settings for my websites and apps. Today I added a few new DNS entries to set up a new server. I used DNS propagation checkers and confirmed that the DNS entries were already updated internationally. But unfortunately, I myself couldn’t access the website on my Windows machine behind my … Read more

How to Schedule a Batch Python Script

Problem Formulation and Solution Overview During your career as a Pythonista, you will encounter situations where a Python script will need to be executed on a scheduled basis, such as daily, weekly, or monthly. This article shows you how to accomplish this task using a .bat (batch) file. πŸ’¬ Question: How would we write code … Read more