Skip to content

Commit a057d2b

Browse files
committed
Merge branch 'develop'
update main branch to fix 145
2 parents 04ec8cd + 9129e5f commit a057d2b

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

core/init/New-O365Object.ps1

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,17 @@ Function New-O365Object{
9393
[void]$VerboseOptions.Add('VerbosePreference','Continue');
9494
}
9595
Else{
96-
[void]$VerboseOptions.Add('Verbose',$false)
96+
[void]$VerboseOptions.Add('Verbose',$false);
97+
[void]$VerboseOptions.Add('VerbosePreference','SilentlyContinue');
9798
}
9899
#Check Debug options
99100
If($MyParams.ContainsKey('Debug') -and $MyParams.Debug -eq $true){
100-
[void]$VerboseOptions.Add('DebugPreference','Continue')
101+
[void]$VerboseOptions.Add('DebugPreference','Continue');
101102
[void]$VerboseOptions.Add("Debug",$true)
102103
}
103104
Else{
104-
[void]$VerboseOptions.Add("Debug",$false)
105+
[void]$VerboseOptions.Add("Debug",$false);
106+
[void]$VerboseOptions.Add('DebugPreference','SilentlyContinue')
105107
}
106108
################### LOG, CONSOLE OPTIONS #######################
107109
If($MyParams.ContainsKey('InformationAction')){
@@ -370,6 +372,7 @@ Function New-O365Object{
370372
PowerBI = $null;
371373
M365Admin = $null;
372374
MSPIM = $null;
375+
Fabric = $null;
373376
});
374377
userPrincipalName = $null;
375378
userId = $null;

monkey365.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'monkey365.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '0.95.1'
15+
ModuleVersion = '0.95.2'
1616

1717
# Supported PSEditions
1818
# CompatiblePSEditions = @()

0 commit comments

Comments
 (0)