Skip to content

Commit

Permalink
Release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
blindzero committed May 9, 2020
1 parent 25f3b29 commit 1c15b0c
Show file tree
Hide file tree
Showing 4 changed files with 48 additions and 27 deletions.
58 changes: 36 additions & 22 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,51 +2,65 @@

Powershell module to connect to all MS365 services and install required packages.

(c) 2020 by matthias@fleschuetz.de
(c) 2020 by [matthias fleschuetz](https://github.com/blindzero)
[https://github.com/blindzero/Connect-MS365](https://github.com/blindzero/Connect-MS365)

## ToDos / Wishlist

- MFA Switch behaviour
- Exchange Online
- Azure AD
- Azure
- Teams
- SharePoint Online
- SecurityCenter
- Installer for Modules
- Module Updater

## v0.0.1
## v1.0.0

### New

Initial version
All features from pre-release versions:

- #5 Adding support for Office365 Security & Compliance Center
- #6 Adding support for Azure ActiveDirectory (AzureAD, AAD) v2
- #2 Adding support for SharePoint Online service (SPO)
- Adding generated psm1 docs to docs dir in src
- #1 Adding support for MS Exchange Online service (EOL)
- Adding support for Microsoft Online service (MSOL) a.k.a. AzureAD v1
- Installs MSOnline module if not available

## v0.0.2
### Fix

- correction SCC function unit test to SCC script (calles wrong script for test)
- Manifest tags compatible for powershellgallery.com upload by removing spaces
- removing Umlauts

## v0.0.3
## v0.0.6

- #1 Adding support for MS Exchange Online service (EOL)
### New

## v0.0.4
- #5 Adding support for Office365 Security & Compliance Center
- #6 Adding support for Azure ActiveDirectory (AzureAD, AAD) v2

- #3 Adding support for MS Teams service (Teams)
- Adding additional docs for Installation and Usage
### Fix

- correction SCC function unit test to SCC script (calles wrong script for test)

## v0.0.5

- #2 Adding support for SharePoint Online service (SPO)
- Adding generated psm1 docs to docs dir in src

## v0.0.6
## v0.0.4

### New
- #5 Adding support for Office365 Security & Compliance Center
- #6 Adding support for Azure ActiveDirectory (AzureAD, AAD) v2
- #3 Adding support for MS Teams service (Teams)
- Adding additional docs for Installation and Usage

### Fix
- correction SCC function unit test to SCC script (calles wrong script for test)
## v0.0.3

- #1 Adding support for MS Exchange Online service (EOL)

## v0.0.2

- Manifest tags compatible for powershellgallery.com upload by removing spaces
- removing Umlauts

## v0.0.1

- Adding support for Microsoft Online service (MSOL) a.k.a. AzureAD v1
- Installs MSOnline module if not available
9 changes: 6 additions & 3 deletions docs/01-INSTALLATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ The following requirements must be installed _prior_ installation of Connect-MS3
```powershell
Find-Module PowerShellGet -ListAvailable
```

Otherwise install with

```powershell
Expand All @@ -31,9 +32,7 @@ The following requirements must be installed _prior_ installation of Connect-MS3
Installation from online [PowerShellGallery](https://powershellgallery.com) by using PowerShellGet function `Install-Module`.

```powershell
Install-Module Connect-MS365
```

#### Manual Installation
Expand Down Expand Up @@ -61,4 +60,8 @@ After installation open a new powershell session and verify the availability of

```powershell
Get-Module Connect-MS365 -ListAvailable
```
```

## Usage

see [02-USAGE.md](/docs/02-USAGE.md) for usage instructions
6 changes: 5 additions & 1 deletion docs/02-USAGE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

When installed properly (see 01-INSTALLATION.md), the module Connect-MS365 should be automatically available within your system.

Start Connect-MS365 by `Connect-MS365`
Start Connect-MS365 by using

```powershell
Connect-MS365 -Service <list of services> [-SPOOrgName <name of sharepoint org>] [-MFA]
```

The service you want to connect is selected by `-Service` parameter, followed by one of the supported services

Expand Down
2 changes: 1 addition & 1 deletion src/Connect-MS365.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Connect-MS365.psm1'

# Version number of this module.
ModuleVersion = '0.0.6'
ModuleVersion = '1.0.0'

# Supported PSEditions
CompatiblePSEditions = @('PSEdition_Desktop','Desktop')
Expand Down

0 comments on commit 1c15b0c

Please sign in to comment.