├── Demo-ScheduledJob.ps1 ├── PowerShell Automation Workshop.pdf ├── README.md ├── demos.ps1 └── scripting ├── CreateVolumeReport.ps1 ├── Get-BitsService.ps1 ├── Get-Gitconfig.ps1 ├── Get-MyOS.ps1 ├── HelpDesk ├── HelpDesk.psd1 ├── HelpDesk.psm1 ├── computers.txt ├── docs │ ├── Get-HWInfo.md │ ├── Get-Info.md │ └── Get-VolumeReport.md ├── docs2 │ ├── Get-HWInfo.md │ ├── Get-Info.md │ └── Get-VolumeReport.md ├── en-us │ └── HelpDesk-help.xml ├── functions.ps1 └── vars.ps1 ├── MyInfo.psd1 ├── MyInfo.psm1 ├── blue.css ├── demo-workflowparallel.ps1 ├── demo-workflows.ps1 ├── info2.ps1 ├── info2a.ps1 ├── info3.ps1 ├── info4.ps1 ├── info5.ps1 ├── info6.ps1 ├── infoscript.ps1 └── myTemplates ├── .vscode ├── settings.json └── tasks.json ├── myFunction ├── function-template.ps1 └── plasterManifest.xml ├── myProject ├── License.txt ├── README.md ├── author-note.txt ├── changelog.txt ├── editor │ └── VSCode │ │ ├── settings.json │ │ └── tasks.json ├── module.psm1 ├── plastermanifest.xml └── test │ └── Module.T.ps1 ├── myTemplates.psd1 ├── myTemplates.psm1 ├── readme.txt └── tests └── myproject.tests.ps1 /Demo-ScheduledJob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/Demo-ScheduledJob.ps1 -------------------------------------------------------------------------------- /PowerShell Automation Workshop.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/PowerShell Automation Workshop.pdf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/README.md -------------------------------------------------------------------------------- /demos.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/demos.ps1 -------------------------------------------------------------------------------- /scripting/CreateVolumeReport.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/CreateVolumeReport.ps1 -------------------------------------------------------------------------------- /scripting/Get-BitsService.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/Get-BitsService.ps1 -------------------------------------------------------------------------------- /scripting/Get-Gitconfig.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/Get-Gitconfig.ps1 -------------------------------------------------------------------------------- /scripting/Get-MyOS.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/Get-MyOS.ps1 -------------------------------------------------------------------------------- /scripting/HelpDesk/HelpDesk.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/HelpDesk.psd1 -------------------------------------------------------------------------------- /scripting/HelpDesk/HelpDesk.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/HelpDesk.psm1 -------------------------------------------------------------------------------- /scripting/HelpDesk/computers.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/computers.txt -------------------------------------------------------------------------------- /scripting/HelpDesk/docs/Get-HWInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs/Get-HWInfo.md -------------------------------------------------------------------------------- /scripting/HelpDesk/docs/Get-Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs/Get-Info.md -------------------------------------------------------------------------------- /scripting/HelpDesk/docs/Get-VolumeReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs/Get-VolumeReport.md -------------------------------------------------------------------------------- /scripting/HelpDesk/docs2/Get-HWInfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs2/Get-HWInfo.md -------------------------------------------------------------------------------- /scripting/HelpDesk/docs2/Get-Info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs2/Get-Info.md -------------------------------------------------------------------------------- /scripting/HelpDesk/docs2/Get-VolumeReport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/docs2/Get-VolumeReport.md -------------------------------------------------------------------------------- /scripting/HelpDesk/en-us/HelpDesk-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/en-us/HelpDesk-help.xml -------------------------------------------------------------------------------- /scripting/HelpDesk/functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/functions.ps1 -------------------------------------------------------------------------------- /scripting/HelpDesk/vars.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/HelpDesk/vars.ps1 -------------------------------------------------------------------------------- /scripting/MyInfo.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/MyInfo.psd1 -------------------------------------------------------------------------------- /scripting/MyInfo.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/MyInfo.psm1 -------------------------------------------------------------------------------- /scripting/blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/blue.css -------------------------------------------------------------------------------- /scripting/demo-workflowparallel.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/demo-workflowparallel.ps1 -------------------------------------------------------------------------------- /scripting/demo-workflows.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/demo-workflows.ps1 -------------------------------------------------------------------------------- /scripting/info2.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info2.ps1 -------------------------------------------------------------------------------- /scripting/info2a.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info2a.ps1 -------------------------------------------------------------------------------- /scripting/info3.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info3.ps1 -------------------------------------------------------------------------------- /scripting/info4.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info4.ps1 -------------------------------------------------------------------------------- /scripting/info5.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info5.ps1 -------------------------------------------------------------------------------- /scripting/info6.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/info6.ps1 -------------------------------------------------------------------------------- /scripting/infoscript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/infoscript.ps1 -------------------------------------------------------------------------------- /scripting/myTemplates/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/.vscode/settings.json -------------------------------------------------------------------------------- /scripting/myTemplates/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/.vscode/tasks.json -------------------------------------------------------------------------------- /scripting/myTemplates/myFunction/function-template.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myFunction/function-template.ps1 -------------------------------------------------------------------------------- /scripting/myTemplates/myFunction/plasterManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myFunction/plasterManifest.xml -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/License.txt -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/README.md -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/author-note.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/author-note.txt -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/changelog.txt: -------------------------------------------------------------------------------- 1 | #Changelog for <%=$PLASTER_PARAM_ModuleName%> 2 | 3 | -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/editor/VSCode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/editor/VSCode/settings.json -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/editor/VSCode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/editor/VSCode/tasks.json -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/module.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/module.psm1 -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/plastermanifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/plastermanifest.xml -------------------------------------------------------------------------------- /scripting/myTemplates/myProject/test/Module.T.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myProject/test/Module.T.ps1 -------------------------------------------------------------------------------- /scripting/myTemplates/myTemplates.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myTemplates.psd1 -------------------------------------------------------------------------------- /scripting/myTemplates/myTemplates.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/myTemplates.psm1 -------------------------------------------------------------------------------- /scripting/myTemplates/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/readme.txt -------------------------------------------------------------------------------- /scripting/myTemplates/tests/myproject.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jdhitsolutions/PSAutomationWorkshop/HEAD/scripting/myTemplates/tests/myproject.tests.ps1 --------------------------------------------------------------------------------