Added PowerShell snippet to change timestamps on .sla files, suggested by @Ionut1994

dev747368 2020-08-05 14:48:23 -04:00
parent b74edc4f07
commit d61b532304

@ -65,4 +65,12 @@ On Linux, try
touch `find . -name '*.sla'`
```
from the installation directory.
from the installation directory.
On Windows, try
```bash
Get-ChildItem -Recurse -Include *.sla | ForEach-Object { $_.CreationTime = Get-Date; $_.LastWriteTime = Get-Date }
```
in the PowerShell console.