├── .gitignore ├── Section 10. Powershell and WMI ├── getting information from wmi.ps1 └── namespaces-classes-properties.ps1 ├── Section 11. Modules └── modules.ps1 ├── Section 12. Providers └── providers.ps1 ├── Section 13. Active Directory ├── active_directory_common.ps1 └── activedirectory overview.ps1 ├── Section 14. Creating Your First Script └── CourseScript.ps1 ├── Section 4. The Interactive Console ├── ProfileScript.ps1 └── Profiles Example Script.zip ├── Section 5. Cmdlets ├── AliasesScript.ps1 └── CmdletsOverview.ps1 ├── Section 6. Variables ├── ManagingVariables.ps1 └── data types.ps1 ├── Section 7. Conditional Logic ├── if-then-else.ps1 └── switch.ps1 ├── Section 8. Loops ├── Manipulating loops.ps1 ├── do-while loops.ps1 ├── for loops.ps1 └── foreach loops.ps1 └── Section 9. Objects and The Pipeline ├── objects.ps1 └── pipleline.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Section 10. Powershell and WMI/getting information from wmi.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 10. Powershell and WMI/getting information from wmi.ps1 -------------------------------------------------------------------------------- /Section 10. Powershell and WMI/namespaces-classes-properties.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 10. Powershell and WMI/namespaces-classes-properties.ps1 -------------------------------------------------------------------------------- /Section 11. Modules/modules.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 11. Modules/modules.ps1 -------------------------------------------------------------------------------- /Section 12. Providers/providers.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 12. Providers/providers.ps1 -------------------------------------------------------------------------------- /Section 13. Active Directory/active_directory_common.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 13. Active Directory/active_directory_common.ps1 -------------------------------------------------------------------------------- /Section 13. Active Directory/activedirectory overview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 13. Active Directory/activedirectory overview.ps1 -------------------------------------------------------------------------------- /Section 14. Creating Your First Script/CourseScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 14. Creating Your First Script/CourseScript.ps1 -------------------------------------------------------------------------------- /Section 4. The Interactive Console/ProfileScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 4. The Interactive Console/ProfileScript.ps1 -------------------------------------------------------------------------------- /Section 4. The Interactive Console/Profiles Example Script.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 4. The Interactive Console/Profiles Example Script.zip -------------------------------------------------------------------------------- /Section 5. Cmdlets/AliasesScript.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 5. Cmdlets/AliasesScript.ps1 -------------------------------------------------------------------------------- /Section 5. Cmdlets/CmdletsOverview.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 5. Cmdlets/CmdletsOverview.ps1 -------------------------------------------------------------------------------- /Section 6. Variables/ManagingVariables.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 6. Variables/ManagingVariables.ps1 -------------------------------------------------------------------------------- /Section 6. Variables/data types.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 6. Variables/data types.ps1 -------------------------------------------------------------------------------- /Section 7. Conditional Logic/if-then-else.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 7. Conditional Logic/if-then-else.ps1 -------------------------------------------------------------------------------- /Section 7. Conditional Logic/switch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 7. Conditional Logic/switch.ps1 -------------------------------------------------------------------------------- /Section 8. Loops/Manipulating loops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 8. Loops/Manipulating loops.ps1 -------------------------------------------------------------------------------- /Section 8. Loops/do-while loops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 8. Loops/do-while loops.ps1 -------------------------------------------------------------------------------- /Section 8. Loops/for loops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 8. Loops/for loops.ps1 -------------------------------------------------------------------------------- /Section 8. Loops/foreach loops.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 8. Loops/foreach loops.ps1 -------------------------------------------------------------------------------- /Section 9. Objects and The Pipeline/objects.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 9. Objects and The Pipeline/objects.ps1 -------------------------------------------------------------------------------- /Section 9. Objects and The Pipeline/pipleline.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adbertram/PowerShell-A-Getting-Started-Guide-For-IT-Admins/HEAD/Section 9. Objects and The Pipeline/pipleline.ps1 --------------------------------------------------------------------------------