From 371a5cc92663c6110f9543da2e80fe71110f0331 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Fri, 13 Oct 2023 07:32:55 -0400 Subject: [PATCH] added TOC and info about python idle script --- README.md | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 24f06a5..c3d8489 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # Useful code +- [Useful code](#useful-code) + - [CSV to XLSX](#csv-to-xlsx) + - [Keep Only X Days](#keep-only-x-days) + - [Stop computer from going idle](#stop-computer-from-going-idle) + ## CSV to XLSX `PowerShell` script to convert any CSVs found in directory that were created today - @@ -10,13 +15,17 @@ ## Keep Only X Days +`PowerShell` script to delete objects in the directory/subdirectory specified that are older than `NumDays`. + Accepts 2 arguments + - `NumDays` - integer - default is `90` - `DebugCommand` - boolean - default is `false` - - `PowerShell` script to delete objects in the directory/subdirectory specified that are older than `NumDays`. - + +## Stop computer from going idle + +`Python` script to top computer from going idle.