Main menu:

Site search

Categories

April 2018
M T W T F S S
« Mar   May »
 1
2345678
9101112131415
16171819202122
23242526272829
30  

Tags

Blogroll

Archive for April, 2018

Words to the wise – recreating Unix’s touch function in Windows

Creating an empty file. type nul >> your_file.txt copy /b filename.ext +,, The following works through a set of files in a directory and refreshes the date of them.  Useful if your company has a policy for deleting old files automatically, using Powershell. (ls your-file-name-here).LastWriteTime = Get-Date Get-ChildItem . * -recurse | ForEach-Object{$_.LastWriteTime = get-date} […]

Qualys updates checks against Drown and cipher suites

Changes to TLS protocols Jet lag meant I reverified my site against Qualys’ SSL Server test. New concerns have lead to them tightening their tests to help you protect your identity on line. In particular, forward secracy. Check out how to help set your web server correctly!