202405s

Git for Windows 2.45.0

Git for Windows 2.45.0

Andres Bohren
Hi All, Two days ago, git 2.45 has been released. Read the Blog post here: Highlights from Git 2.45 Git 2.45 Release Notes Let’s have a look at the installed version git -v to update use the command below (cmd must be started “As Administrator”) git update-git-for-windows This will download and start the update installer Let’s check the git version after the update git -v You can also download it here: https://git-scm.
Manage Sheduled Tasks with PowerShell

Manage Sheduled Tasks with PowerShell

Andres Bohren
Hi All, I’ve had some work to do with Scheduled Tasks and schedule a PowerShell Script with PowerShell. This Article shows you how you can list, create, export and import Scheduled Tasks. List PowerShell Commands for Scheduled Tasks Get-Command *ScheduledTask* These are the Scheduled Tasks on the Server List Scheduled Tasks Get-ScheduledTask Get-ScheduledTask List specific ScheduledTask $ScheduledTask = Get-ScheduledTask -TaskName ZIPandDeleteIISLog $ScheduledTask | fl $ScheduledTask.Actions $ScheduledTask.Triggers Details Get-ScheduledTaskInfo Get-ScheduledTask -TaskName ZIPandDeleteIISLog | Get-ScheduledTaskInfo Create new Scheduled Task Register-ScheduledTask