├── New-WeeklyMenu ├── .gitignore ├── Config.ps1 ├── Modules │ ├── Init-Logging.ps1 │ └── htmldocparts.ps1 ├── New-WeeklyMenu.ps1 ├── RecipeList.csv └── RecipeList.xlsx ├── README.md ├── Start-LabADPopulate ├── FakeUserData.csv ├── Start-LabADPopulate.ps1 └── readme.md └── Start-ManagerMailMerge ├── Config.ps1 ├── Modules └── Init-Logging.ps1 ├── Start-ManagerMailMerge.ps1 ├── _template.htm └── source.csv /New-WeeklyMenu/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/.gitignore -------------------------------------------------------------------------------- /New-WeeklyMenu/Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/Config.ps1 -------------------------------------------------------------------------------- /New-WeeklyMenu/Modules/Init-Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/Modules/Init-Logging.ps1 -------------------------------------------------------------------------------- /New-WeeklyMenu/Modules/htmldocparts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/Modules/htmldocparts.ps1 -------------------------------------------------------------------------------- /New-WeeklyMenu/New-WeeklyMenu.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/New-WeeklyMenu.ps1 -------------------------------------------------------------------------------- /New-WeeklyMenu/RecipeList.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/RecipeList.csv -------------------------------------------------------------------------------- /New-WeeklyMenu/RecipeList.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/New-WeeklyMenu/RecipeList.xlsx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Start-LabADPopulate/FakeUserData.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-LabADPopulate/FakeUserData.csv -------------------------------------------------------------------------------- /Start-LabADPopulate/Start-LabADPopulate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-LabADPopulate/Start-LabADPopulate.ps1 -------------------------------------------------------------------------------- /Start-LabADPopulate/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-LabADPopulate/readme.md -------------------------------------------------------------------------------- /Start-ManagerMailMerge/Config.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-ManagerMailMerge/Config.ps1 -------------------------------------------------------------------------------- /Start-ManagerMailMerge/Modules/Init-Logging.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-ManagerMailMerge/Modules/Init-Logging.ps1 -------------------------------------------------------------------------------- /Start-ManagerMailMerge/Start-ManagerMailMerge.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-ManagerMailMerge/Start-ManagerMailMerge.ps1 -------------------------------------------------------------------------------- /Start-ManagerMailMerge/_template.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-ManagerMailMerge/_template.htm -------------------------------------------------------------------------------- /Start-ManagerMailMerge/source.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/avaines/Random-Powershell-Scripts/HEAD/Start-ManagerMailMerge/source.csv --------------------------------------------------------------------------------