Category Archives: PowerShell

How to bulk Unblock multiple files downloaded from the Internet

How to Bulk Unblock multiple files downloaded from the Internet

Source: How to bulk Unblock multiple files downloaded from the Internet

Welcome to Winutil Documentation!

irm "https://christitus.com/win" | iex

Welcome to the official documentation for Winutil, your go-to utility for optimizing and managing your Windows environment. Whether you’re an IT professional, power user, or regular user, Winutil provides a comprehensive set of tools to enhance your Windows experience.

Source: Welcome to Winutil Documentation!

Change File(s) Date & Timestamp via CMD or PowerShell

Set-ItemProperty -Path [Path] -Name [PropertyName] -Value [NewValue]
$NewDate = Get-Date -Year 2023 -Month 3 -Day 15 -Hour 10 -Minute 22 -Second 30
Set-ItemProperty -Path "example.txt" -Name CreationTime -Value $NewDate 
Set-ItemProperty -Path "example.txt" -Name LastWriteTime -Value $NewDate
Set-ItemProperty -Path "example.txt" -Name LastAccessTime -Value $NewDate

Source: Change File(s) Date & Timestamp via CMD or PowerShell