diff --git a/RELEASENOTES.md b/RELEASENOTES.md index b9cf937..49642b3 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -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 diff --git a/docs/01-INSTALLATION.md b/docs/01-INSTALLATION.md index 4a7769a..764d86d 100644 --- a/docs/01-INSTALLATION.md +++ b/docs/01-INSTALLATION.md @@ -18,6 +18,7 @@ The following requirements must be installed _prior_ installation of Connect-MS3 ```powershell Find-Module PowerShellGet -ListAvailable ``` + Otherwise install with ```powershell @@ -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 @@ -61,4 +60,8 @@ After installation open a new powershell session and verify the availability of ```powershell Get-Module Connect-MS365 -ListAvailable -``` \ No newline at end of file +``` + +## Usage + +see [02-USAGE.md](/docs/02-USAGE.md) for usage instructions diff --git a/docs/02-USAGE.md b/docs/02-USAGE.md index c7f0d50..4f93a05 100644 --- a/docs/02-USAGE.md +++ b/docs/02-USAGE.md @@ -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 [-SPOOrgName ] [-MFA] +``` The service you want to connect is selected by `-Service` parameter, followed by one of the supported services diff --git a/src/Connect-MS365.psd1 b/src/Connect-MS365.psd1 index c11fec4..e422f61 100644 --- a/src/Connect-MS365.psd1 +++ b/src/Connect-MS365.psd1 @@ -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')