https://github.com/iricigor/se.intromodule
This is PowerShell introduction module. It explains advanced functions and CI/CD integrations.
https://github.com/iricigor/se.intromodule
ci-cd introduction pester-tests
Last synced: 8 months ago
JSON representation
This is PowerShell introduction module. It explains advanced functions and CI/CD integrations.
- Host: GitHub
- URL: https://github.com/iricigor/se.intromodule
- Owner: iricigor
- Created: 2018-05-22T19:24:37.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-10-30T08:34:59.000Z (over 6 years ago)
- Last Synced: 2025-03-05T10:40:45.280Z (over 1 year ago)
- Topics: ci-cd, introduction, pester-tests
- Language: PowerShell
- Homepage:
- Size: 21.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SE.IntroModule
[](https://ci.appveyor.com/project/iricigor/se-intromodule)
[](https://www.powershellgallery.com/packages/SE.IntroModule)
[](https://www.powershellgallery.com/pagitckages/SE.IntroModule)
## Introduction
This is PowerShell introduction module. It explains advanced functions and CI/CD integrations.
## How to install
You can install this module from PowerShell Gallery (preferred way) or by cloning GitHub repository.
Module is tested both on Windows PowerShell and PowerShell Core.
### From PSGallery
```PowerShell
Find-Module SE.IntroModule -Repository PSGallery | Install-Module -Scope CurrentUser -Force
```
### From GitHub
```PowerShell
git clone https://github.com/iricigor/SE.IntroModule.git # Clone this repository
Import-Module .\EasyAzureFunction\SE.IntroModule.psd1 -Force # Import module
```
## How to use
Here are two commands for quick start with this module:
```PowerShell
Get-Command -Module SE.IntroModule # for list of all commands
Get-Command -Module SE.IntroModule | Get-Help | Select Name, Synopsis # for explanation on all commands
```
## Examples
For list of examples, run
```PowerShell
Get-Help Get-Square -Examples
Get-Help Get-Cube -Examples
```