File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff 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 ;
Original file line number Diff line number Diff line change 1212RootModule = ' 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 = @()
You can’t perform that action at this time.
0 commit comments