From b826d362f8d19e0df0407b3c4a0d68926e5fc844 Mon Sep 17 00:00:00 2001 From: Kim Brian Ramberg Date: Fri, 20 Mar 2026 18:53:57 +0100 Subject: [PATCH] . --- Hardware.md | 7 +++++++ Powershell/Notes.md | 11 +++++++++++ 2 files changed, 18 insertions(+) create mode 100644 Powershell/Notes.md diff --git a/Hardware.md b/Hardware.md index 8fc319d..bff57ce 100644 --- a/Hardware.md +++ b/Hardware.md @@ -8,3 +8,10 @@ https://www.amazon.com/dp/B0CPKQ73LG +## Mini-PCs + +- HP ProDesk 600 G3 DM - Win10 Pro - 8GB +- HP EliteDesk 800 G3 DM 65W - Win10 Pro - 16GB +- HP ProDesk 400 G3 DM - Win10 Pro - 8GB +- HP EliteDesk 800 G1 DM - 16GB + diff --git a/Powershell/Notes.md b/Powershell/Notes.md new file mode 100644 index 0000000..077b42e --- /dev/null +++ b/Powershell/Notes.md @@ -0,0 +1,11 @@ +# Notes related to Powershell + + + +## Create multiple folders + +### Create 25 folders named Season 1 through Season 25 ### + +``` +1..25|%{md('C:\qBittorrent\Finished\TV Series\Futurama\Season {0:d2}'-f$_)} +```