fabrisodotps1 / M365PSProfile

M365PSProfile installs and keeps the PowerShell Modules needed for Microsoft 365 Management up to date. It provides a simple way to add it to the PowerShell Profile.
GNU General Public License v3.0
37 stars 5 forks source link

Install-M365Module falsely assumes that a module version is installed #11

Closed diecknet closed 2 months ago

diecknet commented 3 months ago

I got some errors while running Install-M365Module -Scope AllUsers on a new machine using Windows PowerShell 5.1. New machine as in it doesn't have any of the standard M365 modules installed.

ExchangeOnlineManagement Module not found. Try to install...
Es ist nicht möglich, eine Methode für einen Ausdruck aufzurufen, der den NULL hat.
In C:\Program Files\WindowsPowerShell\Modules\M365PSProfile\0.5.0\M365PSProfile.psm1:340 Zeichen:49
+ ... ion]$InstalledModuleVersion = $($InstalledModules.Version.ToString())
+                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull

Install newest Module ExchangeOnlineManagement 3.5.0
Icewolf.EXO.SpamAnalyze Module not found. Try to install...
Es ist nicht möglich, eine Methode für einen Ausdruck aufzurufen, der den NULL hat.
In C:\Program Files\WindowsPowerShell\Modules\M365PSProfile\0.5.0\M365PSProfile.psm1:340 Zeichen:49
+ ... ion]$InstalledModuleVersion = $($InstalledModules.Version.ToString())
+                                     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [], RuntimeException
    + FullyQualifiedErrorId : InvokeMethodOnNull

Install newest Module Icewolf.EXO.SpamAnalyze 2.0.10

... And so on, for every standard module.

I believe this is because of the if-else statement starting at line 336.

BohrenAn commented 3 months ago

@diecknet Thank you for reporting this Issue. Will be fixed in the upcoming Version

BohrenAn commented 2 months ago

Version 0.6.0 has been released to PowerShell Gallery https://www.powershellgallery.com/packages/M365PSProfile/0.6.0

BohrenAn commented 2 months ago

Issue closed