added TOC and info about python idle script

This commit is contained in:
Peter Wood
2023-10-13 07:32:55 -04:00
parent 7086b0c37b
commit 371a5cc926

View File

@@ -1,5 +1,10 @@
# Useful code # 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 ## CSV to XLSX
`PowerShell` script to convert any CSVs found in directory that were created today - `PowerShell` script to convert any CSVs found in directory that were created today -
@@ -10,13 +15,17 @@
## Keep Only X Days ## Keep Only X Days
`PowerShell` script to delete objects in the directory/subdirectory specified that are older than `NumDays`.
Accepts 2 arguments Accepts 2 arguments
- `NumDays` - `NumDays`
- integer - integer
- default is `90` - default is `90`
- `DebugCommand` - `DebugCommand`
- boolean - boolean
- default is `false` - 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.