by Edward van Biljon | Jan 6, 2021 | Windows Server 2016 PowerShell, Windows 10 PowerShell, Windows Server 2012 PowerShell, Windows Server 2019 PowerShell
Task schedular is brilliant because you can schedule things to run on certain days and times but what about if you looking for a scheduled task but there are so many folders to sift through to find them? PowerShell is the answer, you can run a single command to find...
by Edward van Biljon | Jan 3, 2021 | PowerShell, PowerShell V7, Windows 10 PowerShell
If you are running PowerShell V7 like I am, when you launch it you will see a white box similar to the one below: In this article, we will be upgrading using the command line and below is the command: iex “& { $(irm https://aka.ms/install-powershell.ps1) }...
by Edward van Biljon | Jan 2, 2021 | PowerShell, PowerShell V7, Python, Windows 10 PowerShell
In my previous blog post on running Python scripts from PowerShell (Article Here), I was keen to test out the same thing but using PowerShell V7 instead of PowerShell V5.1 that comes with Windows 10. I used the same script as I did previously in PowerShell V7 and here...
by Edward van Biljon | Jan 1, 2021 | PowerShell V7, Windows 10 PowerShell
With commands run in PowerShell, I’m referring to the version that comes with Windows 10 (5.1), most scripts or commands run without error unless there is a problem with the script or command. I used a script from Idera to check skew on machines and this script...
by Edward van Biljon | Dec 31, 2020 | PowerShell, PowerShell V7, Windows 10 PowerShell
In a previous article, we used Windows 10 which has PowerShell 5.1 to create a new email message. Here is the link to the article: PowerShell:- Create an email using PowerShell In this article we will perform the same function but we will use PowerShell v7.0.3...
by Edward van Biljon | Dec 30, 2020 | PowerShell, Windows 10 PowerShell
In this article we are doing to perform two demonstrations for creating draft emails in Outlook from PowerShell. Option 1: Create an email draft however you need to open Outlook to see it.Option 2: Create an email draft but have the email open for you instead of...