Skip to content

Instantly share code, notes, and snippets.

@FH-Inway
Created June 26, 2022 13:46
Show Gist options
  • Save FH-Inway/7cc97d3c725073577c2ac3e4afd3f860 to your computer and use it in GitHub Desktop.
Save FH-Inway/7cc97d3c725073577c2ac3e4afd3f860 to your computer and use it in GitHub Desktop.
Log of d365fo.tools Az.Storage test
PS C:\windows\system32> $repositoryModulePath = ".\d365fo.tools"
$azureStorageAccountId = "miscfiles"
$sas = "sv2018-03-28&siunlisted&src&sigAUOpdsfpoWE976ASDhfjkasdf(5678sdfhk"
$container = "backupfiles"
$fileName = "Test.txt"
# Install d365fo.tools prerequisites
$modules = @("PSFramework", "PSScriptAnalyzer", "Az.Storage", "AzureAd", "PSNotification", "PSOAuthHelper", "ImportExcel")
foreach ($item in $modules) {
$module = Get-InstalledModule -Name $item -ErrorAction SilentlyContinue
if ($null -eq $module) {
Write-Host "Installing $item" -ForegroundColor Cyan
Install-Module -Name $item -Confirm:$false -Scope CurrentUser -SkipPublisherCheck -Verbose -Force
}
Import-Module $item -Verbose
}
# get d365fo.tools
cd C:\Temp
git clone https://github.com/FH-Inway/d365fo.tools.git
cd d365fo.tools
# switch to branch with changes for Az.Storage
git switch refactor-use-az.storage
# load module
Set-PSFConfig d365fo.tools.Import.IndividualFiles -Value $true
Set-PSFConfig d365fo.tools.Import.DoDotSource -Value $true
Import-Module -Name $repositoryModulePath -Force -Passthru -Verbose
# run tests
New-Item C:\Temp\$fileName
Set-Content C:\Temp\$fileName "d365fo.tools Az.Storage test"
Invoke-D365AzureStorageUpload -Verbose -AccountId $azureStorageAccountId -SAS $sas -Container $container -Filepath "c:\temp\$fileName" -Force -DeleteOnUpload
$file = Get-D365AzureStorageFile -Verbose -AccountId $azureStorageAccountId -SAS $sas -Container $container -Name $fileName
$file
Invoke-D365AzureStorageDownload -Verbose -AccountId $azureStorageAccountId -SAS $sas -Container $container -Name $fileName -Path "c:\temp"
Remove-Item C:\Temp\$fileName -Verbose
Installing PSFramework
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSFramework'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'PSFramework'.
VERBOSE: Performing the operation "Install-Module" on target "Version '1.7.237' of module 'PSFramework'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'PSFramework' with version '1.7.237' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSFramework'' for ''.
VERBOSE: InstallPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1361192335'
VERBOSE: DownloadPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1361192335\PSFramework\PSFramework.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'PSFramework'.
VERBOSE: Hash for package 'PSFramework' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1361192335'
VERBOSE: Skipping the Publisher check for the version '1.7.237' of module 'PSFramework'.
VERBOSE: Module 'PSFramework' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSFramework\1.7.237'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSFramework\1.7.237\PSFramework.psd1'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSFramework\1.7.237\xml\PSFramework.Format.ps1xml'.
VERBOSE: Populating RepositorySourceLocation property for module PSFramework.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSFramework\1.7.237\PSFramework.psm1'.
VERBOSE: Exporting function 'Import-ModuleFile'.
VERBOSE: Exporting function 'Convert-PsfConfigValue'.
VERBOSE: Exporting function 'Read-PsfConfigEnvironment'.
VERBOSE: Exporting function 'Read-PsfConfigFile'.
VERBOSE: Exporting function 'Read-PsfConfigPersisted'.
VERBOSE: Exporting function 'Write-PsfConfigFile'.
VERBOSE: Exporting function 'Resolve-PsfFilterConditionSet'.
VERBOSE: Exporting function 'Invoke-PsfTerminatingException'.
VERBOSE: Exporting function 'Convert-PsfMessageException'.
VERBOSE: Exporting function 'Convert-PsfMessageLevel'.
VERBOSE: Exporting function 'Convert-PsfMessageTarget'.
VERBOSE: Exporting function 'Invoke-PSFCommand'.
VERBOSE: Exporting function 'New-PSFSessionContainer'.
VERBOSE: Exporting function 'Register-PSFSessionObjectType'.
VERBOSE: Exporting function 'Export-PSFConfig'.
VERBOSE: Exporting function 'Get-PSFConfig'.
VERBOSE: Exporting function 'Get-PSFConfigValue'.
VERBOSE: Exporting function 'Import-PSFConfig'.
VERBOSE: Exporting function 'Register-PSFConfig'.
VERBOSE: Exporting function 'Register-PSFConfigSchema'.
VERBOSE: Exporting function 'Register-PSFConfigValidation'.
VERBOSE: Exporting function 'Remove-PSFConfig'.
VERBOSE: Exporting function 'Reset-PSFConfig'.
VERBOSE: Exporting function 'Select-PSFConfig'.
VERBOSE: Exporting function 'Unregister-PSFConfig'.
VERBOSE: Exporting function 'Get-PSFFeature'.
VERBOSE: Exporting function 'Register-PSFFeature'.
VERBOSE: Exporting function 'Set-PSFFeature'.
VERBOSE: Exporting function 'Test-PSFFeature'.
VERBOSE: Exporting function 'Add-PSFFilterCondition'.
VERBOSE: Exporting function 'Get-PSFFilterCondition'.
VERBOSE: Exporting function 'Get-PSFFilterConditionSet'.
VERBOSE: Exporting function 'Invoke-PSFFilter'.
VERBOSE: Exporting function 'New-PSFFilter'.
VERBOSE: Exporting function 'New-PSFFilterCondition'.
VERBOSE: Exporting function 'New-PSFFilterConditionSet'.
VERBOSE: Exporting function 'Test-PSFFilter'.
VERBOSE: Exporting function 'Get-PSFCallback'.
VERBOSE: Exporting function 'Get-PSFUserChoice'.
VERBOSE: Exporting function 'Register-PSFCallback'.
VERBOSE: Exporting function 'Stop-PSFFunction'.
VERBOSE: Exporting function 'Test-PSFFunctionInterrupt'.
VERBOSE: Exporting function 'Test-PSFLanguageMode'.
VERBOSE: Exporting function 'Test-PSFParameterBinding'.
VERBOSE: Exporting function 'Test-PSFPowerShell'.
VERBOSE: Exporting function 'Unregister-PSFCallback'.
VERBOSE: Exporting function 'Export-PSFModuleClass'.
VERBOSE: Exporting function 'Import-PSFCmdlet'.
VERBOSE: Exporting function 'Register-PSFParameterClassMapping'.
VERBOSE: Exporting function 'Set-PSFTypeAlias'.
VERBOSE: Exporting function 'Get-PSFLicense'.
VERBOSE: Exporting function 'New-PSFLicense'.
VERBOSE: Exporting function 'Remove-PSFLicense'.
VERBOSE: Exporting function 'Get-PSFLocalizedString'.
VERBOSE: Exporting function 'Import-PSFLocalizedString'.
VERBOSE: Exporting function 'Add-PSFLoggingProviderRunspace'.
VERBOSE: Exporting function 'Get-PSFLoggingProvider'.
VERBOSE: Exporting function 'Get-PSFLoggingProviderInstance'.
VERBOSE: Exporting function 'Import-PSFLoggingProvider'.
VERBOSE: Exporting function 'Install-PSFLoggingProvider'.
VERBOSE: Exporting function 'Register-PSFLoggingProvider'.
VERBOSE: Exporting function 'Remove-PSFLoggingProviderRunspace'.
VERBOSE: Exporting function 'Set-PSFLoggingProvider'.
VERBOSE: Exporting function 'Clear-PSFMessage'.
VERBOSE: Exporting function 'Get-PSFMessage'.
VERBOSE: Exporting function 'Get-PSFMessageLevelModifier'.
VERBOSE: Exporting function 'New-PSFMessageLevelModifier'.
VERBOSE: Exporting function 'Register-PSFMessageEvent'.
VERBOSE: Exporting function 'Register-PSFMessageTransform'.
VERBOSE: Exporting function 'Remove-PSFMessageLevelModifier'.
VERBOSE: Exporting function 'Wait-PSFMessage'.
VERBOSE: Exporting function 'Write-PSFHostColor'.
VERBOSE: Exporting function 'Write-PSFMessageProxy'.
VERBOSE: Exporting function 'Get-PSFPipeline'.
VERBOSE: Exporting function 'Clear-PSFResultCache'.
VERBOSE: Exporting function 'Get-PSFResultCache'.
VERBOSE: Exporting function 'Set-PSFResultCache'.
VERBOSE: Exporting function 'Get-PSFDynamicContentObject'.
VERBOSE: Exporting function 'Get-PSFRunspace'.
VERBOSE: Exporting function 'Register-PSFRunspace'.
VERBOSE: Exporting function 'Set-PSFDynamicContentObject'.
VERBOSE: Exporting function 'Start-PSFRunspace'.
VERBOSE: Exporting function 'Stop-PSFRunspace'.
VERBOSE: Exporting function 'ConvertFrom-PSFClixml'.
VERBOSE: Exporting function 'ConvertTo-PSFClixml'.
VERBOSE: Exporting function 'Export-PSFClixml'.
VERBOSE: Exporting function 'Get-PSFTypeSerializationData'.
VERBOSE: Exporting function 'Import-PSFClixml'.
VERBOSE: Exporting function 'Register-PSFTypeSerializationData'.
VERBOSE: Exporting function 'New-PSFTeppCompletionResult'.
VERBOSE: Exporting function 'Register-PSFTeppArgumentCompleter'.
VERBOSE: Exporting function 'Register-PSFTeppScriptblock'.
VERBOSE: Exporting function 'Set-PSFTeppResult'.
VERBOSE: Exporting function 'Disable-PSFTaskEngineTask'.
VERBOSE: Exporting function 'Enable-PSFTaskEngineTask'.
VERBOSE: Exporting function 'Get-PSFTaskEngineCache'.
VERBOSE: Exporting function 'Get-PSFTaskEngineTask'.
VERBOSE: Exporting function 'Register-PSFTaskEngineTask'.
VERBOSE: Exporting function 'Set-PSFTaskEngineCache'.
VERBOSE: Exporting function 'Test-PSFTaskEngineCache'.
VERBOSE: Exporting function 'Test-PSFTaskEngineTask'.
VERBOSE: Exporting function 'Get-PSFTempItem'.
VERBOSE: Exporting function 'New-PSFTempDirectory'.
VERBOSE: Exporting function 'New-PSFTempFile'.
VERBOSE: Exporting function 'New-PSFTempItem'.
VERBOSE: Exporting function 'Register-PSFTempProvider'.
VERBOSE: Exporting function 'Remove-PSFTempItem'.
VERBOSE: Exporting function 'Compare-PSFArray'.
VERBOSE: Exporting function 'ConvertFrom-PSFArray'.
VERBOSE: Exporting function 'Get-PSFPath'.
VERBOSE: Exporting function 'Get-PSFScriptblock'.
VERBOSE: Exporting function 'Import-PSFPowerShellDataFile'.
VERBOSE: Exporting function 'Join-PSFPath'.
VERBOSE: Exporting function 'New-PSFSupportPackage'.
VERBOSE: Exporting function 'New-PSFThrottle'.
VERBOSE: Exporting function 'Remove-PSFAlias'.
VERBOSE: Exporting function 'Resolve-PSFDefaultParameterValue'.
VERBOSE: Exporting function 'Resolve-PSFPath'.
VERBOSE: Exporting function 'Select-PSFPropertyValue'.
VERBOSE: Exporting function 'Set-PSFPath'.
VERBOSE: Exporting function 'Set-PSFScriptblock'.
VERBOSE: Exporting cmdlet 'ConvertTo-PSFHashtable'.
VERBOSE: Exporting cmdlet 'Invoke-PSFCallback'.
VERBOSE: Exporting cmdlet 'Invoke-PSFProtectedCommand'.
VERBOSE: Exporting cmdlet 'Remove-PSFNull'.
VERBOSE: Exporting cmdlet 'Select-PSFObject'.
VERBOSE: Exporting cmdlet 'Set-PSFObjectOrder'.
VERBOSE: Exporting cmdlet 'Set-PSFConfig'.
VERBOSE: Exporting cmdlet 'Test-PSFShouldProcess'.
VERBOSE: Exporting cmdlet 'Write-PSFMessage'.
VERBOSE: Exporting alias 'Get-LastResult'.
VERBOSE: Exporting alias 'glr'.
VERBOSE: Exporting alias 'Sort-PSFObject'.
VERBOSE: Importing cmdlet 'ConvertTo-PSFHashtable'.
VERBOSE: Importing cmdlet 'Invoke-PSFCallback'.
VERBOSE: Importing cmdlet 'Invoke-PSFProtectedCommand'.
VERBOSE: Importing cmdlet 'Remove-PSFNull'.
VERBOSE: Importing cmdlet 'Select-PSFObject'.
VERBOSE: Importing cmdlet 'Set-PSFConfig'.
VERBOSE: Importing cmdlet 'Set-PSFObjectOrder'.
VERBOSE: Importing cmdlet 'Test-PSFShouldProcess'.
VERBOSE: Importing cmdlet 'Write-PSFMessage'.
VERBOSE: Importing function 'Add-PSFFilterCondition'.
VERBOSE: Importing function 'Add-PSFLoggingProviderRunspace'.
VERBOSE: Importing function 'Clear-PSFMessage'.
VERBOSE: Importing function 'Clear-PSFResultCache'.
VERBOSE: Importing function 'Compare-PSFArray'.
VERBOSE: Importing function 'ConvertFrom-PSFArray'.
VERBOSE: Importing function 'ConvertFrom-PSFClixml'.
VERBOSE: Importing function 'ConvertTo-PSFClixml'.
VERBOSE: Importing function 'Disable-PSFTaskEngineTask'.
VERBOSE: Importing function 'Enable-PSFTaskEngineTask'.
VERBOSE: Importing function 'Export-PSFClixml'.
VERBOSE: Importing function 'Export-PSFConfig'.
VERBOSE: Importing function 'Export-PSFModuleClass'.
VERBOSE: Importing function 'Get-PSFCallback'.
VERBOSE: Importing function 'Get-PSFConfig'.
VERBOSE: Importing function 'Get-PSFConfigValue'.
VERBOSE: Importing function 'Get-PSFDynamicContentObject'.
VERBOSE: Importing function 'Get-PSFFeature'.
VERBOSE: Importing function 'Get-PSFFilterCondition'.
VERBOSE: Importing function 'Get-PSFFilterConditionSet'.
VERBOSE: Importing function 'Get-PSFLicense'.
VERBOSE: Importing function 'Get-PSFLocalizedString'.
VERBOSE: Importing function 'Get-PSFLoggingProvider'.
VERBOSE: Importing function 'Get-PSFLoggingProviderInstance'.
VERBOSE: Importing function 'Get-PSFMessage'.
VERBOSE: Importing function 'Get-PSFMessageLevelModifier'.
VERBOSE: Importing function 'Get-PSFPath'.
VERBOSE: Importing function 'Get-PSFPipeline'.
VERBOSE: Importing function 'Get-PSFResultCache'.
VERBOSE: Importing function 'Get-PSFRunspace'.
VERBOSE: Importing function 'Get-PSFScriptblock'.
VERBOSE: Importing function 'Get-PSFTaskEngineCache'.
VERBOSE: Importing function 'Get-PSFTaskEngineTask'.
VERBOSE: Importing function 'Get-PSFTempItem'.
VERBOSE: Importing function 'Get-PSFTypeSerializationData'.
VERBOSE: Importing function 'Get-PSFUserChoice'.
VERBOSE: Importing function 'Import-PSFClixml'.
VERBOSE: Importing function 'Import-PSFCmdlet'.
VERBOSE: Importing function 'Import-PSFConfig'.
VERBOSE: Importing function 'Import-PSFLocalizedString'.
VERBOSE: Importing function 'Import-PSFLoggingProvider'.
VERBOSE: Importing function 'Import-PSFPowerShellDataFile'.
VERBOSE: Importing function 'Install-PSFLoggingProvider'.
VERBOSE: Importing function 'Invoke-PSFCommand'.
VERBOSE: Importing function 'Invoke-PSFFilter'.
VERBOSE: Importing function 'Join-PSFPath'.
VERBOSE: Importing function 'New-PSFFilter'.
VERBOSE: Importing function 'New-PSFFilterCondition'.
VERBOSE: Importing function 'New-PSFFilterConditionSet'.
VERBOSE: Importing function 'New-PSFLicense'.
VERBOSE: Importing function 'New-PSFMessageLevelModifier'.
VERBOSE: Importing function 'New-PSFSessionContainer'.
VERBOSE: Importing function 'New-PSFSupportPackage'.
VERBOSE: Importing function 'New-PSFTempDirectory'.
VERBOSE: Importing function 'New-PSFTempFile'.
VERBOSE: Importing function 'New-PSFTempItem'.
VERBOSE: Importing function 'New-PSFTeppCompletionResult'.
VERBOSE: Importing function 'New-PSFThrottle'.
VERBOSE: Importing function 'Register-PSFCallback'.
VERBOSE: Importing function 'Register-PSFConfig'.
VERBOSE: Importing function 'Register-PSFConfigSchema'.
VERBOSE: Importing function 'Register-PSFConfigValidation'.
VERBOSE: Importing function 'Register-PSFFeature'.
VERBOSE: Importing function 'Register-PSFLoggingProvider'.
VERBOSE: Importing function 'Register-PSFMessageEvent'.
VERBOSE: Importing function 'Register-PSFMessageTransform'.
VERBOSE: Importing function 'Register-PSFParameterClassMapping'.
VERBOSE: Importing function 'Register-PSFRunspace'.
VERBOSE: Importing function 'Register-PSFSessionObjectType'.
VERBOSE: Importing function 'Register-PSFTaskEngineTask'.
VERBOSE: Importing function 'Register-PSFTempProvider'.
VERBOSE: Importing function 'Register-PSFTeppArgumentCompleter'.
VERBOSE: Importing function 'Register-PSFTeppScriptblock'.
VERBOSE: Importing function 'Register-PSFTypeSerializationData'.
VERBOSE: Importing function 'Remove-PSFAlias'.
VERBOSE: Importing function 'Remove-PSFConfig'.
VERBOSE: Importing function 'Remove-PSFLicense'.
VERBOSE: Importing function 'Remove-PSFLoggingProviderRunspace'.
VERBOSE: Importing function 'Remove-PSFMessageLevelModifier'.
VERBOSE: Importing function 'Remove-PSFTempItem'.
VERBOSE: Importing function 'Reset-PSFConfig'.
VERBOSE: Importing function 'Resolve-PSFDefaultParameterValue'.
VERBOSE: Importing function 'Resolve-PSFPath'.
VERBOSE: Importing function 'Select-PSFConfig'.
VERBOSE: Importing function 'Select-PSFPropertyValue'.
VERBOSE: Importing function 'Set-PSFDynamicContentObject'.
VERBOSE: Importing function 'Set-PSFFeature'.
VERBOSE: Importing function 'Set-PSFLoggingProvider'.
VERBOSE: Importing function 'Set-PSFPath'.
VERBOSE: Importing function 'Set-PSFResultCache'.
VERBOSE: Importing function 'Set-PSFScriptblock'.
VERBOSE: Importing function 'Set-PSFTaskEngineCache'.
VERBOSE: Importing function 'Set-PSFTeppResult'.
VERBOSE: Importing function 'Set-PSFTypeAlias'.
VERBOSE: Importing function 'Start-PSFRunspace'.
VERBOSE: Importing function 'Stop-PSFFunction'.
VERBOSE: Importing function 'Stop-PSFRunspace'.
VERBOSE: Importing function 'Test-PSFFeature'.
VERBOSE: Importing function 'Test-PSFFilter'.
VERBOSE: Importing function 'Test-PSFFunctionInterrupt'.
VERBOSE: Importing function 'Test-PSFLanguageMode'.
VERBOSE: Importing function 'Test-PSFParameterBinding'.
VERBOSE: Importing function 'Test-PSFPowerShell'.
VERBOSE: Importing function 'Test-PSFTaskEngineCache'.
VERBOSE: Importing function 'Test-PSFTaskEngineTask'.
VERBOSE: Importing function 'Unregister-PSFCallback'.
VERBOSE: Importing function 'Unregister-PSFConfig'.
VERBOSE: Importing function 'Wait-PSFMessage'.
VERBOSE: Importing function 'Write-PSFHostColor'.
VERBOSE: Importing function 'Write-PSFMessageProxy'.
VERBOSE: Importing alias 'Get-LastResult'.
VERBOSE: Importing alias 'glr'.
VERBOSE: Importing alias 'Sort-PSFObject'.
Installing PSScriptAnalyzer
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSScriptAnalyzer'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'PSScriptAnalyzer'.
VERBOSE: Performing the operation "Install-Module" on target "Version '1.20.0' of module 'PSScriptAnalyzer'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'PSScriptAnalyzer' with version '1.20.0' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSScriptAnalyzer'' for ''.
VERBOSE: InstallPackage' - name='PSScriptAnalyzer', version='1.20.0',destination='C:\Users\Administrator\AppData\Local\Temp\352240460'
VERBOSE: DownloadPackage' - name='PSScriptAnalyzer', version='1.20.0',destination='C:\Users\Administrator\AppData\Local\Temp\352240460\PSScriptAnalyzer\PSScriptAnalyzer.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PSScriptAnalyzer/1.20.0'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PSScriptAnalyzer/1.20.0'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PSScriptAnalyzer/1.20.0'.
VERBOSE: Completed downloading 'PSScriptAnalyzer'.
VERBOSE: Hash for package 'PSScriptAnalyzer' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PSScriptAnalyzer', version='1.20.0',destination='C:\Users\Administrator\AppData\Local\Temp\352240460'
VERBOSE: Skipping the Publisher check for the version '1.20.0' of module 'PSScriptAnalyzer'.
VERBOSE: Module 'PSScriptAnalyzer' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer\1.20.0'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer\1.20.0\PSScriptAnalyzer.psd1'.
VERBOSE: Loading 'TypesToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer\1.20.0\ScriptAnalyzer.types.ps1xml'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer\1.20.0\ScriptAnalyzer.format.ps1xml'.
VERBOSE: Populating RepositorySourceLocation property for module PSScriptAnalyzer.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSScriptAnalyzer\1.20.0\PSScriptAnalyzer.psm1'.
VERBOSE: Exporting function 'RuleNameCompleter'.
VERBOSE: Exporting cmdlet 'Get-ScriptAnalyzerRule'.
VERBOSE: Exporting cmdlet 'Invoke-Formatter'.
VERBOSE: Exporting cmdlet 'Invoke-ScriptAnalyzer'.
VERBOSE: Importing cmdlet 'Get-ScriptAnalyzerRule'.
VERBOSE: Importing cmdlet 'Invoke-Formatter'.
VERBOSE: Importing cmdlet 'Invoke-ScriptAnalyzer'.
Installing Az.Storage
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='Az.Storage'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'Az.Storage'.
VERBOSE: Performing the operation "Install-Module" on target "Version '4.6.0' of module 'Az.Storage'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'Az.Storage' with version '4.6.0' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='Az.Storage'' for ''.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='Az.Accounts'' for ''.
VERBOSE: InstallPackage' - name='Az.Accounts', version='2.8.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577'
VERBOSE: DownloadPackage' - name='Az.Accounts', version='2.8.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577\Az.Accounts\Az.Accounts.nupkg', uri='https://www.powershellgallery.com/api/v2/package/Az.Accounts/2.8.0'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/Az.Accounts/2.8.0'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/Az.Accounts/2.8.0'.
VERBOSE: Completed downloading 'Az.Accounts'.
VERBOSE: Hash for package 'Az.Accounts' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='Az.Accounts', version='2.8.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577'
VERBOSE: InstallPackage' - name='Az.Storage', version='4.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577'
VERBOSE: DownloadPackage' - name='Az.Storage', version='4.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577\Az.Storage\Az.Storage.nupkg', uri='https://www.powershellgallery.com/api/v2/package/Az.Storage/4.6.0'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/Az.Storage/4.6.0'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/Az.Storage/4.6.0'.
VERBOSE: Completed downloading 'Az.Storage'.
VERBOSE: Hash for package 'Az.Storage' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='Az.Storage', version='4.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\1185471577'
VERBOSE: Skipping the Publisher check for the version '2.8.0' of module 'Az.Accounts'.
VERBOSE: Installing the dependency module 'Az.Accounts' with version '2.8.0' for the module 'Az.Storage'.
VERBOSE: Module 'Az.Accounts' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Accounts\2.8.0'.
VERBOSE: Skipping the Publisher check for the version '4.6.0' of module 'Az.Storage'.
VERBOSE: Module 'Az.Storage' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Az.Storage.psd1'.
VERBOSE: Cannot verify the Microsoft .NET Framework version 4.7.2 because it is not included in the list of permitted versions.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Management.Storage.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Management.Storage.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Common.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Common.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Blob.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Blob.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.File.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.File.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Queue.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.Queue.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Cosmos.Table.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Cosmos.Table.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.DocumentDB.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.DocumentDB.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.DataMovement.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.Storage.DataMovement.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.DocumentDB.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.DocumentDB.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.OData.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.OData.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.OData.Edm.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.OData.Edm.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Spatial.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Spatial.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.KeyVault.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Microsoft.Azure.KeyVault.Core.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Blobs.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Blobs.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Common.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Common.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Files.DataLake.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Files.DataLake.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Queues.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Queues.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Files.Shares.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Storage.Files.Shares.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Data.Tables.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Azure.Data.Tables.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\System.IO.Hashing.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\System.IO.Hashing.dll'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Storage.Management.format.ps1xml'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Storage.format.ps1xml'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Storage.generated.format.ps1xml'.
VERBOSE: Populating RepositorySourceLocation property for module Az.Storage.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\Az.Storage\4.6.0\Az.Storage.psm1'.
VERBOSE: Exporting function 'Test-DotNet'.
VERBOSE: Exporting function 'Preload-Assembly'.
VERBOSE: Exporting cmdlet 'Add-AzRmStorageContainerLegalHold'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageBlobDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageBlobLastAccessTimeTracking'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageBlobRestorePolicy'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageContainerDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageBlobDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageBlobLastAccessTimeTracking'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageBlobRestorePolicy'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageContainerDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobServiceProperty'.
VERBOSE: Exporting cmdlet 'Get-AzRmStorageContainer'.
VERBOSE: Exporting cmdlet 'Get-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'Invoke-AzRmStorageContainerImmutableStorageWithVersioningMigration'.
VERBOSE: Exporting cmdlet 'Lock-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'New-AzRmStorageContainer'.
VERBOSE: Exporting cmdlet 'Remove-AzRmStorageContainer'.
VERBOSE: Exporting cmdlet 'Remove-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzRmStorageContainerLegalHold'.
VERBOSE: Exporting cmdlet 'Set-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'Update-AzStorageBlobServiceProperty'.
VERBOSE: Exporting cmdlet 'Update-AzRmStorageContainer'.
VERBOSE: Exporting cmdlet 'Get-AzStorageFileServiceProperty'.
VERBOSE: Exporting cmdlet 'Get-AzRmStorageShare'.
VERBOSE: Exporting cmdlet 'New-AzRmStorageShare'.
VERBOSE: Exporting cmdlet 'Remove-AzRmStorageShare'.
VERBOSE: Exporting cmdlet 'Restore-AzRmStorageShare'.
VERBOSE: Exporting cmdlet 'Update-AzStorageFileServiceProperty'.
VERBOSE: Exporting cmdlet 'Update-AzRmStorageShare'.
VERBOSE: Exporting cmdlet 'Add-AzStorageAccountManagementPolicyAction'.
VERBOSE: Exporting cmdlet 'Add-AzStorageAccountNetworkRule'.
VERBOSE: Exporting cmdlet 'Get-AzStorageObjectReplicationPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageAccount'.
VERBOSE: Exporting cmdlet 'Get-AzStorageAccountKey'.
VERBOSE: Exporting cmdlet 'Get-AzStorageAccountManagementPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageAccountNetworkRuleSet'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobInventoryPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageEncryptionScope'.
VERBOSE: Exporting cmdlet 'Invoke-AzStorageAccountFailover'.
VERBOSE: Exporting cmdlet 'Invoke-AzStorageAccountHierarchicalNamespaceUpgrade'.
VERBOSE: Exporting cmdlet 'New-AzStorageBlobRangeToRestore'.
VERBOSE: Exporting cmdlet 'New-AzStorageObjectReplicationPolicyRule'.
VERBOSE: Exporting cmdlet 'New-AzStorageAccount'.
VERBOSE: Exporting cmdlet 'New-AzStorageAccountKey'.
VERBOSE: Exporting cmdlet 'New-AzStorageAccountManagementPolicyFilter'.
VERBOSE: Exporting cmdlet 'New-AzStorageAccountManagementPolicyRule'.
VERBOSE: Exporting cmdlet 'New-AzStorageBlobInventoryPolicyRule'.
VERBOSE: Exporting cmdlet 'New-AzStorageEncryptionScope'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageObjectReplicationPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageAccount'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageAccountManagementPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageAccountNetworkRule'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageBlobInventoryPolicy'.
VERBOSE: Exporting cmdlet 'Restore-AzStorageBlobRange'.
VERBOSE: Exporting cmdlet 'Revoke-AzStorageAccountUserDelegationKeys'.
VERBOSE: Exporting cmdlet 'Set-AzStorageObjectReplicationPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzCurrentStorageAccount'.
VERBOSE: Exporting cmdlet 'Set-AzStorageAccount'.
VERBOSE: Exporting cmdlet 'Set-AzStorageAccountManagementPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzStorageBlobInventoryPolicy'.
VERBOSE: Exporting cmdlet 'Stop-AzStorageAccountHierarchicalNamespaceUpgrade'.
VERBOSE: Exporting cmdlet 'Update-AzStorageAccountNetworkRuleSet'.
VERBOSE: Exporting cmdlet 'Update-AzStorageEncryptionScope'.
VERBOSE: Exporting cmdlet 'Get-AzStorageAccountNameAvailability'.
VERBOSE: Exporting cmdlet 'Get-AzStorageUsage'.
VERBOSE: Exporting cmdlet 'New-AzStorageBlobQueryConfig'.
VERBOSE: Exporting cmdlet 'Set-AzDataLakeGen2ItemAclObject'.
VERBOSE: Exporting cmdlet 'Get-AzStorageTableStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageTable'.
VERBOSE: Exporting cmdlet 'New-AzStorageTableSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageTableStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'New-AzStorageTable'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageTableStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageTable'.
VERBOSE: Exporting cmdlet 'Set-AzStorageTableStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzStorageQueue'.
VERBOSE: Exporting cmdlet 'New-AzStorageQueue'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageQueue'.
VERBOSE: Exporting cmdlet 'Get-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'New-AzStorageQueueSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Close-AzStorageFileHandle'.
VERBOSE: Exporting cmdlet 'Get-AzStorageFile'.
VERBOSE: Exporting cmdlet 'Get-AzStorageFileContent'.
VERBOSE: Exporting cmdlet 'Get-AzStorageFileCopyState'.
VERBOSE: Exporting cmdlet 'Get-AzStorageFileHandle'.
VERBOSE: Exporting cmdlet 'Get-AzStorageShare'.
VERBOSE: Exporting cmdlet 'Get-AzStorageShareStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'New-AzStorageDirectory'.
VERBOSE: Exporting cmdlet 'New-AzStorageFileSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageShare'.
VERBOSE: Exporting cmdlet 'New-AzStorageShareSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageShareStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageDirectory'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageFile'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageShare'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageShareStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzStorageFileContent'.
VERBOSE: Exporting cmdlet 'Set-AzStorageShareQuota'.
VERBOSE: Exporting cmdlet 'Set-AzStorageShareStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Start-AzStorageFileCopy'.
VERBOSE: Exporting cmdlet 'Stop-AzStorageFileCopy'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Disable-AzStorageStaticWebsite'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageDeleteRetentionPolicy'.
VERBOSE: Exporting cmdlet 'Enable-AzStorageStaticWebsite'.
VERBOSE: Exporting cmdlet 'Get-AzStorageCORSRule'.
VERBOSE: Exporting cmdlet 'Get-AzStorageServiceLoggingProperty'.
VERBOSE: Exporting cmdlet 'Get-AzStorageServiceMetricsProperty'.
VERBOSE: Exporting cmdlet 'Get-AzStorageServiceProperty'.
VERBOSE: Exporting cmdlet 'New-AzStorageAccountSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageContext'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageCORSRule'.
VERBOSE: Exporting cmdlet 'Set-AzStorageCORSRule'.
VERBOSE: Exporting cmdlet 'Set-AzStorageServiceLoggingProperty'.
VERBOSE: Exporting cmdlet 'Set-AzStorageServiceMetricsProperty'.
VERBOSE: Exporting cmdlet 'Update-AzStorageServiceProperty'.
VERBOSE: Exporting cmdlet 'Set-AzStorageContainerAcl'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobQueryResult'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobTag'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageBlobImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageBlob'.
VERBOSE: Exporting cmdlet 'Set-AzStorageBlobImmutabilityPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzStorageBlobLegalHold'.
VERBOSE: Exporting cmdlet 'Set-AzStorageBlobTag'.
VERBOSE: Exporting cmdlet 'Set-AzStorageBlobContent'.
VERBOSE: Exporting cmdlet 'Copy-AzStorageBlob'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlob'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobByTag'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobContent'.
VERBOSE: Exporting cmdlet 'Get-AzStorageBlobCopyState'.
VERBOSE: Exporting cmdlet 'Get-AzStorageContainer'.
VERBOSE: Exporting cmdlet 'Get-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'New-AzStorageBlobSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageContainer'.
VERBOSE: Exporting cmdlet 'New-AzStorageContainerSASToken'.
VERBOSE: Exporting cmdlet 'New-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageContainer'.
VERBOSE: Exporting cmdlet 'Remove-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Restore-AzStorageContainer'.
VERBOSE: Exporting cmdlet 'Set-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Exporting cmdlet 'Start-AzStorageBlobCopy'.
VERBOSE: Exporting cmdlet 'Start-AzStorageBlobIncrementalCopy'.
VERBOSE: Exporting cmdlet 'Stop-AzStorageBlobCopy'.
VERBOSE: Exporting cmdlet 'Get-AzDataLakeGen2ChildItem'.
VERBOSE: Exporting cmdlet 'Get-AzDataLakeGen2ItemContent'.
VERBOSE: Exporting cmdlet 'Get-AzDataLakeGen2Item'.
VERBOSE: Exporting cmdlet 'Move-AzDataLakeGen2Item'.
VERBOSE: Exporting cmdlet 'New-AzDataLakeGen2Item'.
VERBOSE: Exporting cmdlet 'New-AzDataLakeGen2SasToken'.
VERBOSE: Exporting cmdlet 'Remove-AzDataLakeGen2AclRecursive'.
VERBOSE: Exporting cmdlet 'Remove-AzDataLakeGen2Item'.
VERBOSE: Exporting cmdlet 'Set-AzDataLakeGen2AclRecursive'.
VERBOSE: Exporting cmdlet 'Update-AzDataLakeGen2AclRecursive'.
VERBOSE: Exporting cmdlet 'Update-AzDataLakeGen2Item'.
VERBOSE: Exporting alias 'New-AzDataLakeGen2ItemAclObject'.
VERBOSE: Exporting alias 'Disable-AzStorageSoftDelete'.
VERBOSE: Exporting alias 'Enable-AzStorageSoftDelete'.
VERBOSE: Exporting alias 'Get-AzStorageContainerAcl'.
VERBOSE: Exporting alias 'Get-AzDatalakeGen2FileSystem'.
VERBOSE: Exporting alias 'New-AzDatalakeGen2FileSystem'.
VERBOSE: Exporting alias 'Remove-AzDatalakeGen2FileSystem'.
VERBOSE: Exporting alias 'Start-CopyAzureStorageBlob'.
VERBOSE: Exporting alias 'Stop-CopyAzureStorageBlob'.
VERBOSE: Importing cmdlet 'Add-AzRmStorageContainerLegalHold'.
VERBOSE: Importing cmdlet 'Add-AzStorageAccountManagementPolicyAction'.
VERBOSE: Importing cmdlet 'Add-AzStorageAccountNetworkRule'.
VERBOSE: Importing cmdlet 'Close-AzStorageFileHandle'.
VERBOSE: Importing cmdlet 'Copy-AzStorageBlob'.
VERBOSE: Importing cmdlet 'Disable-AzStorageBlobDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Disable-AzStorageBlobLastAccessTimeTracking'.
VERBOSE: Importing cmdlet 'Disable-AzStorageBlobRestorePolicy'.
VERBOSE: Importing cmdlet 'Disable-AzStorageContainerDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Disable-AzStorageDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Disable-AzStorageStaticWebsite'.
VERBOSE: Importing cmdlet 'Enable-AzStorageBlobDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Enable-AzStorageBlobLastAccessTimeTracking'.
VERBOSE: Importing cmdlet 'Enable-AzStorageBlobRestorePolicy'.
VERBOSE: Importing cmdlet 'Enable-AzStorageContainerDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Enable-AzStorageDeleteRetentionPolicy'.
VERBOSE: Importing cmdlet 'Enable-AzStorageStaticWebsite'.
VERBOSE: Importing cmdlet 'Get-AzDataLakeGen2ChildItem'.
VERBOSE: Importing cmdlet 'Get-AzDataLakeGen2Item'.
VERBOSE: Importing cmdlet 'Get-AzDataLakeGen2ItemContent'.
VERBOSE: Importing cmdlet 'Get-AzRmStorageContainer'.
VERBOSE: Importing cmdlet 'Get-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Get-AzRmStorageShare'.
VERBOSE: Importing cmdlet 'Get-AzStorageAccount'.
VERBOSE: Importing cmdlet 'Get-AzStorageAccountKey'.
VERBOSE: Importing cmdlet 'Get-AzStorageAccountManagementPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageAccountNameAvailability'.
VERBOSE: Importing cmdlet 'Get-AzStorageAccountNetworkRuleSet'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlob'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobByTag'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobContent'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobCopyState'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobInventoryPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobQueryResult'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobServiceProperty'.
VERBOSE: Importing cmdlet 'Get-AzStorageBlobTag'.
VERBOSE: Importing cmdlet 'Get-AzStorageContainer'.
VERBOSE: Importing cmdlet 'Get-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageCORSRule'.
VERBOSE: Importing cmdlet 'Get-AzStorageEncryptionScope'.
VERBOSE: Importing cmdlet 'Get-AzStorageFile'.
VERBOSE: Importing cmdlet 'Get-AzStorageFileContent'.
VERBOSE: Importing cmdlet 'Get-AzStorageFileCopyState'.
VERBOSE: Importing cmdlet 'Get-AzStorageFileHandle'.
VERBOSE: Importing cmdlet 'Get-AzStorageFileServiceProperty'.
VERBOSE: Importing cmdlet 'Get-AzStorageObjectReplicationPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageQueue'.
VERBOSE: Importing cmdlet 'Get-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageServiceLoggingProperty'.
VERBOSE: Importing cmdlet 'Get-AzStorageServiceMetricsProperty'.
VERBOSE: Importing cmdlet 'Get-AzStorageServiceProperty'.
VERBOSE: Importing cmdlet 'Get-AzStorageShare'.
VERBOSE: Importing cmdlet 'Get-AzStorageShareStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageTable'.
VERBOSE: Importing cmdlet 'Get-AzStorageTableStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Get-AzStorageUsage'.
VERBOSE: Importing cmdlet 'Invoke-AzRmStorageContainerImmutableStorageWithVersioningMigration'.
VERBOSE: Importing cmdlet 'Invoke-AzStorageAccountFailover'.
VERBOSE: Importing cmdlet 'Invoke-AzStorageAccountHierarchicalNamespaceUpgrade'.
VERBOSE: Importing cmdlet 'Lock-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Move-AzDataLakeGen2Item'.
VERBOSE: Importing cmdlet 'New-AzDataLakeGen2Item'.
VERBOSE: Importing cmdlet 'New-AzDataLakeGen2SasToken'.
VERBOSE: Importing cmdlet 'New-AzRmStorageContainer'.
VERBOSE: Importing cmdlet 'New-AzRmStorageShare'.
VERBOSE: Importing cmdlet 'New-AzStorageAccount'.
VERBOSE: Importing cmdlet 'New-AzStorageAccountKey'.
VERBOSE: Importing cmdlet 'New-AzStorageAccountManagementPolicyFilter'.
VERBOSE: Importing cmdlet 'New-AzStorageAccountManagementPolicyRule'.
VERBOSE: Importing cmdlet 'New-AzStorageAccountSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageBlobInventoryPolicyRule'.
VERBOSE: Importing cmdlet 'New-AzStorageBlobQueryConfig'.
VERBOSE: Importing cmdlet 'New-AzStorageBlobRangeToRestore'.
VERBOSE: Importing cmdlet 'New-AzStorageBlobSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageContainer'.
VERBOSE: Importing cmdlet 'New-AzStorageContainerSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'New-AzStorageContext'.
VERBOSE: Importing cmdlet 'New-AzStorageDirectory'.
VERBOSE: Importing cmdlet 'New-AzStorageEncryptionScope'.
VERBOSE: Importing cmdlet 'New-AzStorageFileSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageObjectReplicationPolicyRule'.
VERBOSE: Importing cmdlet 'New-AzStorageQueue'.
VERBOSE: Importing cmdlet 'New-AzStorageQueueSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'New-AzStorageShare'.
VERBOSE: Importing cmdlet 'New-AzStorageShareSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageShareStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'New-AzStorageTable'.
VERBOSE: Importing cmdlet 'New-AzStorageTableSASToken'.
VERBOSE: Importing cmdlet 'New-AzStorageTableStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzDataLakeGen2AclRecursive'.
VERBOSE: Importing cmdlet 'Remove-AzDataLakeGen2Item'.
VERBOSE: Importing cmdlet 'Remove-AzRmStorageContainer'.
VERBOSE: Importing cmdlet 'Remove-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzRmStorageContainerLegalHold'.
VERBOSE: Importing cmdlet 'Remove-AzRmStorageShare'.
VERBOSE: Importing cmdlet 'Remove-AzStorageAccount'.
VERBOSE: Importing cmdlet 'Remove-AzStorageAccountManagementPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageAccountNetworkRule'.
VERBOSE: Importing cmdlet 'Remove-AzStorageBlob'.
VERBOSE: Importing cmdlet 'Remove-AzStorageBlobImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageBlobInventoryPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageContainer'.
VERBOSE: Importing cmdlet 'Remove-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageCORSRule'.
VERBOSE: Importing cmdlet 'Remove-AzStorageDirectory'.
VERBOSE: Importing cmdlet 'Remove-AzStorageFile'.
VERBOSE: Importing cmdlet 'Remove-AzStorageObjectReplicationPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageQueue'.
VERBOSE: Importing cmdlet 'Remove-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageShare'.
VERBOSE: Importing cmdlet 'Remove-AzStorageShareStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzStorageTable'.
VERBOSE: Importing cmdlet 'Remove-AzStorageTableStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Restore-AzRmStorageShare'.
VERBOSE: Importing cmdlet 'Restore-AzStorageBlobRange'.
VERBOSE: Importing cmdlet 'Restore-AzStorageContainer'.
VERBOSE: Importing cmdlet 'Revoke-AzStorageAccountUserDelegationKeys'.
VERBOSE: Importing cmdlet 'Set-AzCurrentStorageAccount'.
VERBOSE: Importing cmdlet 'Set-AzDataLakeGen2AclRecursive'.
VERBOSE: Importing cmdlet 'Set-AzDataLakeGen2ItemAclObject'.
VERBOSE: Importing cmdlet 'Set-AzRmStorageContainerImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageAccount'.
VERBOSE: Importing cmdlet 'Set-AzStorageAccountManagementPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageBlobContent'.
VERBOSE: Importing cmdlet 'Set-AzStorageBlobImmutabilityPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageBlobInventoryPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageBlobLegalHold'.
VERBOSE: Importing cmdlet 'Set-AzStorageBlobTag'.
VERBOSE: Importing cmdlet 'Set-AzStorageContainerAcl'.
VERBOSE: Importing cmdlet 'Set-AzStorageContainerStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageCORSRule'.
VERBOSE: Importing cmdlet 'Set-AzStorageFileContent'.
VERBOSE: Importing cmdlet 'Set-AzStorageObjectReplicationPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageQueueStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageServiceLoggingProperty'.
VERBOSE: Importing cmdlet 'Set-AzStorageServiceMetricsProperty'.
VERBOSE: Importing cmdlet 'Set-AzStorageShareQuota'.
VERBOSE: Importing cmdlet 'Set-AzStorageShareStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Set-AzStorageTableStoredAccessPolicy'.
VERBOSE: Importing cmdlet 'Start-AzStorageBlobCopy'.
VERBOSE: Importing cmdlet 'Start-AzStorageBlobIncrementalCopy'.
VERBOSE: Importing cmdlet 'Start-AzStorageFileCopy'.
VERBOSE: Importing cmdlet 'Stop-AzStorageAccountHierarchicalNamespaceUpgrade'.
VERBOSE: Importing cmdlet 'Stop-AzStorageBlobCopy'.
VERBOSE: Importing cmdlet 'Stop-AzStorageFileCopy'.
VERBOSE: Importing cmdlet 'Update-AzDataLakeGen2AclRecursive'.
VERBOSE: Importing cmdlet 'Update-AzDataLakeGen2Item'.
VERBOSE: Importing cmdlet 'Update-AzRmStorageContainer'.
VERBOSE: Importing cmdlet 'Update-AzRmStorageShare'.
VERBOSE: Importing cmdlet 'Update-AzStorageAccountNetworkRuleSet'.
VERBOSE: Importing cmdlet 'Update-AzStorageBlobServiceProperty'.
VERBOSE: Importing cmdlet 'Update-AzStorageEncryptionScope'.
VERBOSE: Importing cmdlet 'Update-AzStorageFileServiceProperty'.
VERBOSE: Importing cmdlet 'Update-AzStorageServiceProperty'.
VERBOSE: Importing alias 'Disable-AzStorageSoftDelete'.
VERBOSE: Importing alias 'Enable-AzStorageSoftDelete'.
VERBOSE: Importing alias 'Get-AzDatalakeGen2FileSystem'.
VERBOSE: Importing alias 'Get-AzStorageContainerAcl'.
VERBOSE: Importing alias 'New-AzDatalakeGen2FileSystem'.
VERBOSE: Importing alias 'New-AzDataLakeGen2ItemAclObject'.
VERBOSE: Importing alias 'Remove-AzDatalakeGen2FileSystem'.
VERBOSE: Importing alias 'Start-CopyAzureStorageBlob'.
VERBOSE: Importing alias 'Stop-CopyAzureStorageBlob'.
Installing AzureAd
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='AzureAd'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'AzureAd'.
VERBOSE: Performing the operation "Install-Module" on target "Version '2.0.2.140' of module 'AzureAD'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'AzureAD' with version '2.0.2.140' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='AzureAD'' for ''.
VERBOSE: InstallPackage' - name='AzureAD', version='2.0.2.140',destination='C:\Users\Administrator\AppData\Local\Temp\176809651'
VERBOSE: DownloadPackage' - name='AzureAD', version='2.0.2.140',destination='C:\Users\Administrator\AppData\Local\Temp\176809651\AzureAD\AzureAD.nupkg', uri='https://www.powershellgallery.com/api/v2/package/AzureAD/2.0.2.140'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/AzureAD/2.0.2.140'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/AzureAD/2.0.2.140'.
VERBOSE: Completed downloading 'AzureAD'.
VERBOSE: Hash for package 'AzureAD' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='AzureAD', version='2.0.2.140',destination='C:\Users\Administrator\AppData\Local\Temp\176809651'
VERBOSE: Skipping the Publisher check for the version '2.0.2.140' of module 'AzureAD'.
VERBOSE: Module 'AzureAD' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAD\2.0.2.140'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\AzureAd.psd1'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\AzureAD.Format.ps1xml'.
VERBOSE: Populating RepositorySourceLocation property for module AzureAd.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.Azure.AD.CommonLibrary.dll'.
VERBOSE: Importing cmdlet 'Connect-AzureAD'.
VERBOSE: Importing cmdlet 'Disconnect-AzureAD'.
VERBOSE: Importing cmdlet 'Get-AzureADCurrentSessionInfo'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.AzureAD16.Graph.PowerShell.Custom.dll'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationLogo'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationLogo'.
VERBOSE: Importing cmdlet 'Set-AzureADUserPassword'.
VERBOSE: Importing cmdlet 'Get-AzureADContactThumbnailPhoto'.
VERBOSE: Importing cmdlet 'Get-AzureADUserThumbnailPhoto'.
VERBOSE: Importing cmdlet 'Set-AzureADUserThumbnailPhoto'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'Update-AzureADSignedInUserPassword'.
VERBOSE: Importing cmdlet 'New-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'New-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'New-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Set-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Remove-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Get-AzureADUserExtension'.
VERBOSE: Importing cmdlet 'Set-AzureADUserExtension'.
VERBOSE: Importing cmdlet 'Remove-AzureADUserExtension'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.AzureAD16.Graph.Client.dll'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.MS.GraphV10.PowerShell.dll'.
VERBOSE: Importing cmdlet 'Add-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationKey'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationPassword'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationKey'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationPassword'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplicationLogo'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnector'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorGroupMember'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorMemberOf'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAuthorizationPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSAuthorizationPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroupPermissionGrant'.
VERBOSE: Importing cmdlet 'Get-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'New-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Set-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Get-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'New-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'Get-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'New-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Set-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Get-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Add-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Get-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Add-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Reset-AzureADMSLifeCycleGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'Get-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'New-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'Set-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'New-AzureADMSInvitation'.
VERBOSE: Importing cmdlet 'Add-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Add-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Get-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'New-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'Set-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Get-AzureADMSDeletedGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Restore-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Get-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'New-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing alias 'Get-AzureADApplicationProxyConnectorGroupMembers'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.MS.GraphV10.PowerShell.Custom.dll'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationCustomDomainCertificate'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationSingleSignOn'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyConnector'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.MS.GraphV10.Client.dll'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\AzureAd\2.0.2.140\Microsoft.Open.AzureAD16.Graph.PowerShell.dll'.
VERBOSE: Exporting cmdlet 'Add-AzureADApplicationOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplication'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationServiceEndpoint'.
VERBOSE: Exporting cmdlet 'Get-AzureADDeletedApplication'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDeletedApplication'.
VERBOSE: Exporting cmdlet 'New-AzureADApplication'.
VERBOSE: Exporting cmdlet 'New-AzureADApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplication'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationOwner'.
VERBOSE: Exporting cmdlet 'Restore-AzureADDeletedApplication'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplication'.
VERBOSE: Exporting cmdlet 'Get-AzureADContact'.
VERBOSE: Exporting cmdlet 'Get-AzureADContactDirectReport'.
VERBOSE: Exporting cmdlet 'Get-AzureADContactManager'.
VERBOSE: Exporting cmdlet 'Get-AzureADContactMembership'.
VERBOSE: Exporting cmdlet 'Remove-AzureADContact'.
VERBOSE: Exporting cmdlet 'Remove-AzureADContactManager'.
VERBOSE: Exporting cmdlet 'Select-AzureADGroupIdsContactIsMemberOf'.
VERBOSE: Exporting cmdlet 'Get-AzureADContract'.
VERBOSE: Exporting cmdlet 'Add-AzureADDeviceRegisteredOwner'.
VERBOSE: Exporting cmdlet 'Add-AzureADDeviceRegisteredUser'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDeviceRegisteredOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADDevice'.
VERBOSE: Exporting cmdlet 'Get-AzureADDeviceRegisteredOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADDeviceRegisteredUser'.
VERBOSE: Exporting cmdlet 'New-AzureADDevice'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDevice'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDeviceRegisteredUser'.
VERBOSE: Exporting cmdlet 'Set-AzureADDevice'.
VERBOSE: Exporting cmdlet 'Get-AzureADDeviceConfiguration'.
VERBOSE: Exporting cmdlet 'Get-AzureADObjectByObjectId'.
VERBOSE: Exporting cmdlet 'Enable-AzureADDirectoryRole'.
VERBOSE: Exporting cmdlet 'Add-AzureADDirectoryRoleMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADDirectoryRoleMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADDirectoryRole'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDirectoryRoleMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADDirectoryRoleTemplate'.
VERBOSE: Exporting cmdlet 'Confirm-AzureADDomain'.
VERBOSE: Exporting cmdlet 'Get-CrossCloudVerificationCode'.
VERBOSE: Exporting cmdlet 'Get-AzureADDomain'.
VERBOSE: Exporting cmdlet 'Get-AzureADDomainNameReference'.
VERBOSE: Exporting cmdlet 'Get-AzureADDomainServiceConfigurationRecord'.
VERBOSE: Exporting cmdlet 'Get-AzureADDomainVerificationDnsRecord'.
VERBOSE: Exporting cmdlet 'New-AzureADDomain'.
VERBOSE: Exporting cmdlet 'Remove-AzureADDomain'.
VERBOSE: Exporting cmdlet 'Set-AzureADDomain'.
VERBOSE: Exporting cmdlet 'Get-AzureADExtensionProperty'.
VERBOSE: Exporting cmdlet 'Add-AzureADGroupMember'.
VERBOSE: Exporting cmdlet 'Add-AzureADGroupOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADGroupAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Get-AzureADGroupMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADGroupOwner'.
VERBOSE: Exporting cmdlet 'New-AzureADGroup'.
VERBOSE: Exporting cmdlet 'New-AzureADGroupAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADGroup'.
VERBOSE: Exporting cmdlet 'Remove-AzureADGroupAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADGroupMember'.
VERBOSE: Exporting cmdlet 'Remove-AzureADGroupOwner'.
VERBOSE: Exporting cmdlet 'Select-AzureADGroupIdsGroupIsMemberOf'.
VERBOSE: Exporting cmdlet 'Set-AzureADGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADOAuth2PermissionGrant'.
VERBOSE: Exporting cmdlet 'Remove-AzureADOAuth2PermissionGrant'.
VERBOSE: Exporting cmdlet 'Add-AzureADServicePrincipalOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipal'.
VERBOSE: Exporting cmdlet 'Get-AzureADServiceAppRoleAssignedTo'.
VERBOSE: Exporting cmdlet 'Get-AzureADServiceAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalCreatedObject'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalMembership'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalOAuth2PermissionGrant'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalOwnedObject'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalOwner'.
VERBOSE: Exporting cmdlet 'New-AzureADServicePrincipal'.
VERBOSE: Exporting cmdlet 'New-AzureADServiceAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADServicePrincipal'.
VERBOSE: Exporting cmdlet 'Remove-AzureADServiceAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADServicePrincipalOwner'.
VERBOSE: Exporting cmdlet 'Select-AzureADGroupIdsServicePrincipalIsMemberOf'.
VERBOSE: Exporting cmdlet 'Set-AzureADServicePrincipal'.
VERBOSE: Exporting cmdlet 'Revoke-AzureADSignedInUserAllRefreshToken'.
VERBOSE: Exporting cmdlet 'Get-AzureADSubscribedSku'.
VERBOSE: Exporting cmdlet 'Get-AzureADTenantDetail'.
VERBOSE: Exporting cmdlet 'Set-AzureADTenantDetail'.
VERBOSE: Exporting cmdlet 'Get-AzureADUser'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserCreatedObject'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserDirectReport'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserLicenseDetail'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserManager'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserMembership'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserOAuth2PermissionGrant'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserOwnedDevice'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserOwnedObject'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserRegisteredDevice'.
VERBOSE: Exporting cmdlet 'New-AzureADUser'.
VERBOSE: Exporting cmdlet 'New-AzureADUserAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADUser'.
VERBOSE: Exporting cmdlet 'Remove-AzureADUserAppRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADUserManager'.
VERBOSE: Exporting cmdlet 'Revoke-AzureADUserAllRefreshToken'.
VERBOSE: Exporting cmdlet 'Select-AzureADGroupIdsUserIsMemberOf'.
VERBOSE: Exporting cmdlet 'Set-AzureADUser'.
VERBOSE: Exporting cmdlet 'Set-AzureADUserLicense'.
VERBOSE: Exporting cmdlet 'Set-AzureADUserManager'.
VERBOSE: Exporting cmdlet 'Connect-AzureAD'.
VERBOSE: Exporting cmdlet 'Disconnect-AzureAD'.
VERBOSE: Exporting cmdlet 'Get-AzureADCurrentSessionInfo'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationLogo'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationLogo'.
VERBOSE: Exporting cmdlet 'Set-AzureADUserPassword'.
VERBOSE: Exporting cmdlet 'Get-AzureADContactThumbnailPhoto'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserThumbnailPhoto'.
VERBOSE: Exporting cmdlet 'Set-AzureADUserThumbnailPhoto'.
VERBOSE: Exporting cmdlet 'New-AzureADApplicationKeyCredential'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationKeyCredential'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationKeyCredential'.
VERBOSE: Exporting cmdlet 'New-AzureADApplicationPasswordCredential'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationPasswordCredential'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationPasswordCredential'.
VERBOSE: Exporting cmdlet 'Update-AzureADSignedInUserPassword'.
VERBOSE: Exporting cmdlet 'New-AzureADServicePrincipalKeyCredential'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalKeyCredential'.
VERBOSE: Exporting cmdlet 'Remove-AzureADServicePrincipalKeyCredential'.
VERBOSE: Exporting cmdlet 'New-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Exporting cmdlet 'Get-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Exporting cmdlet 'Remove-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Exporting cmdlet 'Get-AzureADTrustedCertificateAuthority'.
VERBOSE: Exporting cmdlet 'New-AzureADTrustedCertificateAuthority'.
VERBOSE: Exporting cmdlet 'Set-AzureADTrustedCertificateAuthority'.
VERBOSE: Exporting cmdlet 'Remove-AzureADTrustedCertificateAuthority'.
VERBOSE: Exporting cmdlet 'Get-AzureADUserExtension'.
VERBOSE: Exporting cmdlet 'Set-AzureADUserExtension'.
VERBOSE: Exporting cmdlet 'Remove-AzureADUserExtension'.
VERBOSE: Exporting cmdlet 'Add-AzureADMSApplicationOwner'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSApplication'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSApplicationOwner'.
VERBOSE: Exporting cmdlet 'New-AzureADMSApplication'.
VERBOSE: Exporting cmdlet 'New-AzureADMSApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'New-AzureADMSApplicationKey'.
VERBOSE: Exporting cmdlet 'New-AzureADMSApplicationPassword'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplication'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplicationExtensionProperty'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplicationKey'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplicationOwner'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplicationPassword'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSApplication'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSApplicationLogo'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyApplication'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyConnector'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyConnectorGroupMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyConnectorMemberOf'.
VERBOSE: Exporting cmdlet 'New-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSAuthorizationPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSAuthorizationPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSGroupPermissionGrant'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Exporting cmdlet 'New-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSPermissionGrantPolicy'.
VERBOSE: Exporting cmdlet 'New-AzureADMSPermissionGrantPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSPermissionGrantPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSPermissionGrantPolicy'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSRoleAssignment'.
VERBOSE: Exporting cmdlet 'New-AzureADMSRoleAssignment'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSRoleAssignment'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSRoleDefinition'.
VERBOSE: Exporting cmdlet 'New-AzureADMSRoleDefinition'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSRoleDefinition'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSRoleDefinition'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSConditionalAccessPolicy'.
VERBOSE: Exporting cmdlet 'New-AzureADMSConditionalAccessPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSConditionalAccessPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSConditionalAccessPolicy'.
VERBOSE: Exporting cmdlet 'Add-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Exporting cmdlet 'Add-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Exporting cmdlet 'New-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Exporting cmdlet 'Reset-AzureADMSLifeCycleGroup'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSIdentityProvider'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSIdentityProvider'.
VERBOSE: Exporting cmdlet 'New-AzureADMSIdentityProvider'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSIdentityProvider'.
VERBOSE: Exporting cmdlet 'New-AzureADMSInvitation'.
VERBOSE: Exporting cmdlet 'Add-AzureADMSAdministrativeUnitMember'.
VERBOSE: Exporting cmdlet 'Add-AzureADMSScopedRoleMembership'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSAdministrativeUnit'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSAdministrativeUnitMember'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSScopedRoleMembership'.
VERBOSE: Exporting cmdlet 'New-AzureADMSAdministrativeUnit'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSAdministrativeUnit'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSAdministrativeUnitMember'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSScopedRoleMembership'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSAdministrativeUnit'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSDeletedGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSDeletedDirectoryObject'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSDeletedDirectoryObject'.
VERBOSE: Exporting cmdlet 'Restore-AzureADMSDeletedDirectoryObject'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSGroup'.
VERBOSE: Exporting cmdlet 'New-AzureADMSGroup'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSGroup'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSGroup'.
VERBOSE: Exporting cmdlet 'Get-AzureADMSNamedLocationPolicy'.
VERBOSE: Exporting cmdlet 'New-AzureADMSNamedLocationPolicy'.
VERBOSE: Exporting cmdlet 'Remove-AzureADMSNamedLocationPolicy'.
VERBOSE: Exporting cmdlet 'Set-AzureADMSNamedLocationPolicy'.
VERBOSE: Exporting cmdlet 'New-AzureADApplicationProxyApplication'.
VERBOSE: Exporting cmdlet 'Remove-AzureADApplicationProxyApplication'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyApplication'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyApplicationCustomDomainCertificate'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyApplicationSingleSignOn'.
VERBOSE: Exporting cmdlet 'Set-AzureADApplicationProxyConnector'.
VERBOSE: Exporting cmdlet 'Get-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Exporting alias 'Get-AzureADApplicationProxyConnectorGroupMembers'.
VERBOSE: Importing cmdlet 'Add-AzureADApplicationOwner'.
VERBOSE: Importing cmdlet 'Add-AzureADDeviceRegisteredOwner'.
VERBOSE: Importing cmdlet 'Add-AzureADDeviceRegisteredUser'.
VERBOSE: Importing cmdlet 'Add-AzureADDirectoryRoleMember'.
VERBOSE: Importing cmdlet 'Add-AzureADGroupMember'.
VERBOSE: Importing cmdlet 'Add-AzureADGroupOwner'.
VERBOSE: Importing cmdlet 'Add-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Add-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'Add-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Add-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'Add-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Add-AzureADServicePrincipalOwner'.
VERBOSE: Importing cmdlet 'Confirm-AzureADDomain'.
VERBOSE: Importing cmdlet 'Connect-AzureAD'.
VERBOSE: Importing cmdlet 'Disconnect-AzureAD'.
VERBOSE: Importing cmdlet 'Enable-AzureADDirectoryRole'.
VERBOSE: Importing cmdlet 'Get-AzureADApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationLogo'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnector'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorGroupMember'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationProxyConnectorMemberOf'.
VERBOSE: Importing cmdlet 'Get-AzureADApplicationServiceEndpoint'.
VERBOSE: Importing cmdlet 'Get-AzureADContact'.
VERBOSE: Importing cmdlet 'Get-AzureADContactDirectReport'.
VERBOSE: Importing cmdlet 'Get-AzureADContactManager'.
VERBOSE: Importing cmdlet 'Get-AzureADContactMembership'.
VERBOSE: Importing cmdlet 'Get-AzureADContactThumbnailPhoto'.
VERBOSE: Importing cmdlet 'Get-AzureADContract'.
VERBOSE: Importing cmdlet 'Get-AzureADCurrentSessionInfo'.
VERBOSE: Importing cmdlet 'Get-AzureADDeletedApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADDevice'.
VERBOSE: Importing cmdlet 'Get-AzureADDeviceConfiguration'.
VERBOSE: Importing cmdlet 'Get-AzureADDeviceRegisteredOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADDeviceRegisteredUser'.
VERBOSE: Importing cmdlet 'Get-AzureADDirectoryRole'.
VERBOSE: Importing cmdlet 'Get-AzureADDirectoryRoleMember'.
VERBOSE: Importing cmdlet 'Get-AzureADDirectoryRoleTemplate'.
VERBOSE: Importing cmdlet 'Get-AzureADDomain'.
VERBOSE: Importing cmdlet 'Get-AzureADDomainNameReference'.
VERBOSE: Importing cmdlet 'Get-AzureADDomainServiceConfigurationRecord'.
VERBOSE: Importing cmdlet 'Get-AzureADDomainVerificationDnsRecord'.
VERBOSE: Importing cmdlet 'Get-AzureADExtensionProperty'.
VERBOSE: Importing cmdlet 'Get-AzureADGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADGroupAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Get-AzureADGroupMember'.
VERBOSE: Importing cmdlet 'Get-AzureADGroupOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Get-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADMSAuthorizationPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Get-AzureADMSDeletedGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSGroupPermissionGrant'.
VERBOSE: Importing cmdlet 'Get-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'Get-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Get-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Get-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Get-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'Get-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Get-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'Get-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Get-AzureADOAuth2PermissionGrant'.
VERBOSE: Importing cmdlet 'Get-AzureADObjectByObjectId'.
VERBOSE: Importing cmdlet 'Get-AzureADServiceAppRoleAssignedTo'.
VERBOSE: Importing cmdlet 'Get-AzureADServiceAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipal'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalCreatedObject'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalMembership'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalOAuth2PermissionGrant'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalOwnedObject'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalOwner'.
VERBOSE: Importing cmdlet 'Get-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'Get-AzureADSubscribedSku'.
VERBOSE: Importing cmdlet 'Get-AzureADTenantDetail'.
VERBOSE: Importing cmdlet 'Get-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Get-AzureADUser'.
VERBOSE: Importing cmdlet 'Get-AzureADUserAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Get-AzureADUserCreatedObject'.
VERBOSE: Importing cmdlet 'Get-AzureADUserDirectReport'.
VERBOSE: Importing cmdlet 'Get-AzureADUserExtension'.
VERBOSE: Importing cmdlet 'Get-AzureADUserLicenseDetail'.
VERBOSE: Importing cmdlet 'Get-AzureADUserManager'.
VERBOSE: Importing cmdlet 'Get-AzureADUserMembership'.
VERBOSE: Importing cmdlet 'Get-AzureADUserOAuth2PermissionGrant'.
VERBOSE: Importing cmdlet 'Get-AzureADUserOwnedDevice'.
VERBOSE: Importing cmdlet 'Get-AzureADUserOwnedObject'.
VERBOSE: Importing cmdlet 'Get-AzureADUserRegisteredDevice'.
VERBOSE: Importing cmdlet 'Get-AzureADUserThumbnailPhoto'.
VERBOSE: Importing cmdlet 'Get-CrossCloudVerificationCode'.
VERBOSE: Importing cmdlet 'New-AzureADApplication'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'New-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'New-AzureADDevice'.
VERBOSE: Importing cmdlet 'New-AzureADDomain'.
VERBOSE: Importing cmdlet 'New-AzureADGroup'.
VERBOSE: Importing cmdlet 'New-AzureADGroupAppRoleAssignment'.
VERBOSE: Importing cmdlet 'New-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationKey'.
VERBOSE: Importing cmdlet 'New-AzureADMSApplicationPassword'.
VERBOSE: Importing cmdlet 'New-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'New-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'New-AzureADMSInvitation'.
VERBOSE: Importing cmdlet 'New-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'New-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'New-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'New-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'New-AzureADServiceAppRoleAssignment'.
VERBOSE: Importing cmdlet 'New-AzureADServicePrincipal'.
VERBOSE: Importing cmdlet 'New-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'New-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'New-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'New-AzureADUser'.
VERBOSE: Importing cmdlet 'New-AzureADUserAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationKeyCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationPasswordCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADContact'.
VERBOSE: Importing cmdlet 'Remove-AzureADContactManager'.
VERBOSE: Importing cmdlet 'Remove-AzureADDeletedApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADDevice'.
VERBOSE: Importing cmdlet 'Remove-AzureADDeviceRegisteredOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADDeviceRegisteredUser'.
VERBOSE: Importing cmdlet 'Remove-AzureADDirectoryRoleMember'.
VERBOSE: Importing cmdlet 'Remove-AzureADDomain'.
VERBOSE: Importing cmdlet 'Remove-AzureADGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADGroupAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADGroupMember'.
VERBOSE: Importing cmdlet 'Remove-AzureADGroupOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSAdministrativeUnitMember'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationExtensionProperty'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationKey'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationPassword'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSLifecyclePolicyGroup'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSScopedRoleMembership'.
VERBOSE: Importing cmdlet 'Remove-AzureADMSServicePrincipalDelegatedPermissionClassification'.
VERBOSE: Importing cmdlet 'Remove-AzureADOAuth2PermissionGrant'.
VERBOSE: Importing cmdlet 'Remove-AzureADServiceAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipal'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipalKeyCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipalOwner'.
VERBOSE: Importing cmdlet 'Remove-AzureADServicePrincipalPasswordCredential'.
VERBOSE: Importing cmdlet 'Remove-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Remove-AzureADUser'.
VERBOSE: Importing cmdlet 'Remove-AzureADUserAppRoleAssignment'.
VERBOSE: Importing cmdlet 'Remove-AzureADUserExtension'.
VERBOSE: Importing cmdlet 'Remove-AzureADUserManager'.
VERBOSE: Importing cmdlet 'Reset-AzureADMSLifeCycleGroup'.
VERBOSE: Importing cmdlet 'Restore-AzureADDeletedApplication'.
VERBOSE: Importing cmdlet 'Restore-AzureADMSDeletedDirectoryObject'.
VERBOSE: Importing cmdlet 'Revoke-AzureADSignedInUserAllRefreshToken'.
VERBOSE: Importing cmdlet 'Revoke-AzureADUserAllRefreshToken'.
VERBOSE: Importing cmdlet 'Select-AzureADGroupIdsContactIsMemberOf'.
VERBOSE: Importing cmdlet 'Select-AzureADGroupIdsGroupIsMemberOf'.
VERBOSE: Importing cmdlet 'Select-AzureADGroupIdsServicePrincipalIsMemberOf'.
VERBOSE: Importing cmdlet 'Select-AzureADGroupIdsUserIsMemberOf'.
VERBOSE: Importing cmdlet 'Set-AzureADApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationLogo'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationConnectorGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationCustomDomainCertificate'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyApplicationSingleSignOn'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyConnector'.
VERBOSE: Importing cmdlet 'Set-AzureADApplicationProxyConnectorGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADDevice'.
VERBOSE: Importing cmdlet 'Set-AzureADDomain'.
VERBOSE: Importing cmdlet 'Set-AzureADGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADMSAdministrativeUnit'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplication'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplicationLogo'.
VERBOSE: Importing cmdlet 'Set-AzureADMSApplicationVerifiedPublisher'.
VERBOSE: Importing cmdlet 'Set-AzureADMSAuthorizationPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSConditionalAccessPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSGroup'.
VERBOSE: Importing cmdlet 'Set-AzureADMSGroupLifecyclePolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSIdentityProvider'.
VERBOSE: Importing cmdlet 'Set-AzureADMSNamedLocationPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSPermissionGrantConditionSet'.
VERBOSE: Importing cmdlet 'Set-AzureADMSPermissionGrantPolicy'.
VERBOSE: Importing cmdlet 'Set-AzureADMSRoleDefinition'.
VERBOSE: Importing cmdlet 'Set-AzureADServicePrincipal'.
VERBOSE: Importing cmdlet 'Set-AzureADTenantDetail'.
VERBOSE: Importing cmdlet 'Set-AzureADTrustedCertificateAuthority'.
VERBOSE: Importing cmdlet 'Set-AzureADUser'.
VERBOSE: Importing cmdlet 'Set-AzureADUserExtension'.
VERBOSE: Importing cmdlet 'Set-AzureADUserLicense'.
VERBOSE: Importing cmdlet 'Set-AzureADUserManager'.
VERBOSE: Importing cmdlet 'Set-AzureADUserPassword'.
VERBOSE: Importing cmdlet 'Set-AzureADUserThumbnailPhoto'.
VERBOSE: Importing cmdlet 'Update-AzureADSignedInUserPassword'.
VERBOSE: Importing alias 'Get-AzureADApplicationProxyConnectorGroupMembers'.
Installing PSNotification
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSNotification'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'PSNotification'.
VERBOSE: Performing the operation "Install-Module" on target "Version '0.5.3' of module 'psnotification'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'psnotification' with version '0.5.3' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='psnotification'' for ''.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSFramework'' for ''.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PoshRSJob'' for ''.
VERBOSE: InstallPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: DownloadPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490\PSFramework\PSFramework.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'PSFramework'.
VERBOSE: Hash for package 'PSFramework' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: InstallPackage' - name='PoshRSJob', version='1.7.4.4',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: DownloadPackage' - name='PoshRSJob', version='1.7.4.4',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490\PoshRSJob\PoshRSJob.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PoshRSJob/1.7.4.4'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PoshRSJob/1.7.4.4'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PoshRSJob/1.7.4.4'.
VERBOSE: Completed downloading 'PoshRSJob'.
VERBOSE: Hash for package 'PoshRSJob' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PoshRSJob', version='1.7.4.4',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: InstallPackage' - name='psnotification', version='0.5.3',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: DownloadPackage' - name='psnotification', version='0.5.3',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490\psnotification\psnotification.nupkg', uri='https://www.powershellgallery.com/api/v2/package/psnotification/0.5.3'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/psnotification/0.5.3'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/psnotification/0.5.3'.
VERBOSE: Completed downloading 'psnotification'.
VERBOSE: Hash for package 'psnotification' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='psnotification', version='0.5.3',destination='C:\Users\Administrator\AppData\Local\Temp\1175015490'
VERBOSE: Skipping the Publisher check for the version '1.7.237' of module 'PSFramework'.
VERBOSE: Installing the dependency module 'PSFramework' with version '1.7.237' for the module 'psnotification'.
WARNING: The version '1.7.237' of module 'PSFramework' is currently in use. Retry the operation after closing the applications.
VERBOSE: Module 'PSFramework' is in currently in use or you don't have the required permissions.
VERBOSE: Skipping the Publisher check for the version '1.7.4.4' of module 'PoshRSJob'.
VERBOSE: Installing the dependency module 'PoshRSJob' with version '1.7.4.4' for the module 'psnotification'.
VERBOSE: Module 'PoshRSJob' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PoshRSJob\1.7.4.4'.
VERBOSE: Skipping the Publisher check for the version '0.5.3' of module 'psnotification'.
VERBOSE: Module 'psnotification' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\psnotification\0.5.3'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSNotification\0.5.3\PSNotification.psd1'.
VERBOSE: Populating RepositorySourceLocation property for module PSNotification.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSNotification\0.5.3\PSNotification.psm1'.
VERBOSE: Exporting function 'Import-ModuleFile'.
VERBOSE: Exporting function 'Get-PSNUrl'.
VERBOSE: Exporting function 'Invoke-PSNHttpEndpoint'.
VERBOSE: Exporting function 'Invoke-PSNMessage'.
VERBOSE: Exporting function 'Set-PSNUrl'.
VERBOSE: Importing function 'Get-PSNUrl'.
VERBOSE: Importing function 'Invoke-PSNHttpEndpoint'.
VERBOSE: Importing function 'Invoke-PSNMessage'.
VERBOSE: Importing function 'Set-PSNUrl'.
Installing PSOAuthHelper
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSOAuthHelper'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'PSOAuthHelper'.
VERBOSE: Performing the operation "Install-Module" on target "Version '0.3.1' of module 'PSOAuthHelper'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'PSOAuthHelper' with version '0.3.1' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSOAuthHelper'' for ''.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='PSFramework'' for ''.
VERBOSE: InstallPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222'
VERBOSE: DownloadPackage' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222\PSFramework\PSFramework.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PSFramework/1.7.237'.
VERBOSE: Completed downloading 'PSFramework'.
VERBOSE: Hash for package 'PSFramework' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PSFramework', version='1.7.237',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222'
VERBOSE: InstallPackage' - name='PSOAuthHelper', version='0.3.1',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222'
VERBOSE: DownloadPackage' - name='PSOAuthHelper', version='0.3.1',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222\PSOAuthHelper\PSOAuthHelper.nupkg', uri='https://www.powershellgallery.com/api/v2/package/PSOAuthHelper/0.3.1'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/PSOAuthHelper/0.3.1'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/PSOAuthHelper/0.3.1'.
VERBOSE: Completed downloading 'PSOAuthHelper'.
VERBOSE: Hash for package 'PSOAuthHelper' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='PSOAuthHelper', version='0.3.1',destination='C:\Users\Administrator\AppData\Local\Temp\2078284222'
VERBOSE: Skipping the Publisher check for the version '1.7.237' of module 'PSFramework'.
VERBOSE: Installing the dependency module 'PSFramework' with version '1.7.237' for the module 'PSOAuthHelper'.
WARNING: The version '1.7.237' of module 'PSFramework' is currently in use. Retry the operation after closing the applications.
VERBOSE: Module 'PSFramework' is in currently in use or you don't have the required permissions.
VERBOSE: Skipping the Publisher check for the version '0.3.1' of module 'PSOAuthHelper'.
VERBOSE: Module 'PSOAuthHelper' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\PSOAuthHelper.psd1'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\System.Web'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\System.Web'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\System.Net.Http'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\System.Net.Http'.
VERBOSE: Populating RepositorySourceLocation property for module PSOAuthHelper.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\PSOAuthHelper\0.3.1\PSOAuthHelper.psm1'.
VERBOSE: Exporting function 'Import-ModuleFile'.
VERBOSE: Exporting function 'Convert-HashToArgStringSwitch'.
VERBOSE: Exporting function 'Get-DeepClone'.
VERBOSE: Exporting function 'Invoke-Authorization'.
VERBOSE: Exporting function 'Get-BearerToken'.
VERBOSE: Exporting function 'Get-RemainingMinutes'.
VERBOSE: Exporting function 'Invoke-AzureResourceManagementGrant'.
VERBOSE: Exporting function 'Invoke-ClientCredentialsGrant'.
VERBOSE: Exporting function 'Invoke-PasswordGrant'.
VERBOSE: Exporting function 'Invoke-RefreshToken'.
VERBOSE: Exporting function 'New-AuthorizationHeaderBearerToken'.
VERBOSE: Importing function 'Get-BearerToken'.
VERBOSE: Importing function 'Get-RemainingMinutes'.
VERBOSE: Importing function 'Invoke-AzureResourceManagementGrant'.
VERBOSE: Importing function 'Invoke-ClientCredentialsGrant'.
VERBOSE: Importing function 'Invoke-PasswordGrant'.
VERBOSE: Importing function 'Invoke-RefreshToken'.
VERBOSE: Importing function 'New-AuthorizationHeaderBearerToken'.
Installing ImportExcel
VERBOSE: Using the provider 'PowerShellGet' for searching packages.
VERBOSE: The -Repository parameter was not specified. PowerShellGet will use all of the registered repositories.
VERBOSE: Getting the provider object for the PackageManagement Provider 'NuGet'.
VERBOSE: The specified Location is 'https://www.powershellgallery.com/api/v2' and PackageManagementProvider is 'NuGet'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='ImportExcel'' for ''.
VERBOSE: Total package yield:'1' for the specified package 'ImportExcel'.
VERBOSE: Performing the operation "Install-Module" on target "Version '7.6.0' of module 'ImportExcel'".
VERBOSE: The installation scope is specified to be 'CurrentUser'.
VERBOSE: The specified module will be installed in 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules'.
VERBOSE: The specified Location is 'NuGet' and PackageManagementProvider is 'NuGet'.
VERBOSE: Downloading module 'ImportExcel' with version '7.6.0' from the repository 'https://www.powershellgallery.com/api/v2'.
VERBOSE: Searching repository 'https://www.powershellgallery.com/api/v2/FindPackagesById()?id='ImportExcel'' for ''.
VERBOSE: InstallPackage' - name='ImportExcel', version='7.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\2019122854'
VERBOSE: DownloadPackage' - name='ImportExcel', version='7.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\2019122854\ImportExcel\ImportExcel.nupkg', uri='https://www.powershellgallery.com/api/v2/package/ImportExcel/7.6.0'
VERBOSE: Downloading 'https://www.powershellgallery.com/api/v2/package/ImportExcel/7.6.0'.
VERBOSE: Completed downloading 'https://www.powershellgallery.com/api/v2/package/ImportExcel/7.6.0'.
VERBOSE: Completed downloading 'ImportExcel'.
VERBOSE: Hash for package 'ImportExcel' does not match hash provided from the server.
VERBOSE: InstallPackageLocal' - name='ImportExcel', version='7.6.0',destination='C:\Users\Administrator\AppData\Local\Temp\2019122854'
VERBOSE: Skipping the Publisher check for the version '7.6.0' of module 'ImportExcel'.
VERBOSE: Module 'ImportExcel' was installed successfully to path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\ImportExcel\7.6.0'.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\ImportExcel\7.6.0\ImportExcel.psd1'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\ImportExcel\7.6.0\EPPlus.dll'.
VERBOSE: Loading 'Assembly' from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\ImportExcel\7.6.0\EPPlus.dll'.
VERBOSE: Populating RepositorySourceLocation property for module ImportExcel.
VERBOSE: Loading module from path 'C:\Users\Administrator\Documents\WindowsPowerShell\Modules\ImportExcel\7.6.0\ImportExcel.psm1'.
VERBOSE: Exporting function 'ColorCompletion'.
VERBOSE: Exporting function 'ListFonts'.
VERBOSE: Exporting function 'NumberFormatCompletion'.
VERBOSE: Exporting function 'WorksheetArgumentCompleter'.
VERBOSE: Exporting function 'Invoke-ExcelReZipFile'.
VERBOSE: Exporting function 'Add-ConditionalFormatting'.
VERBOSE: Exporting function 'Add-ExcelChart'.
VERBOSE: Exporting function 'Add-ExcelDataValidationRule'.
VERBOSE: Exporting function 'Add-ExcelName'.
VERBOSE: Exporting function 'Add-ExcelTable'.
VERBOSE: Exporting function 'Add-PivotTable'.
VERBOSE: Exporting function 'Add-Worksheet'.
VERBOSE: Exporting function 'Close-ExcelPackage'.
VERBOSE: Exporting function 'Compare-Worksheet'.
VERBOSE: Exporting function 'Convert-ExcelRangeToImage'.
VERBOSE: Exporting function 'ConvertFrom-ExcelData'.
VERBOSE: Exporting function 'ConvertFrom-ExcelSheet'.
VERBOSE: Exporting function 'ConvertFrom-ExcelToSQLInsert'.
VERBOSE: Exporting function 'ConvertTo-ExcelXlsx'.
VERBOSE: Exporting function 'Copy-ExcelWorksheet'.
VERBOSE: Exporting function 'Enable-ExcelAutoFilter'.
VERBOSE: Exporting function 'Enable-ExcelAutofit'.
VERBOSE: Exporting function 'Expand-NumberFormat'.
VERBOSE: Exporting function 'Export-Excel'.
VERBOSE: Exporting function 'Get-ExcelColumnName'.
VERBOSE: Exporting function 'Get-ExcelFileSummary'.
VERBOSE: Exporting function 'Get-ExcelSheetDimensionAddress'.
VERBOSE: Exporting function 'Get-ExcelSheetInfo'.
VERBOSE: Exporting function 'Get-ExcelWorkbookInfo'.
VERBOSE: Exporting function 'Get-HtmlTable'.
VERBOSE: Exporting function 'Get-Range'.
VERBOSE: Exporting function 'Get-XYRange'.
VERBOSE: Exporting function 'Import-Excel'.
VERBOSE: Exporting function 'Import-Html'.
VERBOSE: Exporting function 'Import-UPS'.
VERBOSE: Exporting function 'Import-USPS'.
VERBOSE: Exporting function 'Invoke-ExcelQuery'.
VERBOSE: Exporting function 'Invoke-Sum'.
VERBOSE: Exporting function 'Join-Worksheet'.
VERBOSE: Exporting function 'Merge-MultipleSheets'.
VERBOSE: Exporting function 'Merge-Worksheet'.
VERBOSE: Exporting function 'New-ConditionalFormattingIconSet'.
VERBOSE: Exporting function 'New-ConditionalText'.
VERBOSE: Exporting function 'New-ExcelChartDefinition'.
VERBOSE: Exporting function 'New-ExcelStyle'.
VERBOSE: Exporting function 'New-PivotTableDefinition'.
VERBOSE: Exporting function 'New-PSItem'.
VERBOSE: Exporting function 'Open-ExcelPackage'.
VERBOSE: Exporting function 'Read-Clipboard'.
VERBOSE: Exporting function 'ReadClipboardImpl'.
VERBOSE: Exporting function 'Read-OleDbData'.
VERBOSE: Exporting function 'Remove-Worksheet'.
VERBOSE: Exporting function 'Select-Worksheet'.
VERBOSE: Exporting function 'Send-SQLDataToExcel'.
VERBOSE: Exporting function 'Set-CellStyle'.
VERBOSE: Exporting function 'Set-ExcelColumn'.
VERBOSE: Exporting function 'Set-ExcelRange'.
VERBOSE: Exporting function 'Set-ExcelRow'.
VERBOSE: Exporting function 'Set-WorksheetProtection'.
VERBOSE: Exporting function 'Update-FirstObjectProperties'.
VERBOSE: Exporting function 'DoChart'.
VERBOSE: Exporting function 'BarChart'.
VERBOSE: Exporting function 'PieChart'.
VERBOSE: Exporting function 'LineChart'.
VERBOSE: Exporting function 'ColumnChart'.
VERBOSE: Exporting function 'Test-String'.
VERBOSE: Exporting function 'Test-Date'.
VERBOSE: Exporting function 'Test-Boolean'.
VERBOSE: Exporting function 'Test-Number'.
VERBOSE: Exporting function 'Test-Integer'.
VERBOSE: Exporting function 'Invoke-TestSet'.
VERBOSE: Exporting function 'Pivot'.
VERBOSE: Exporting function 'New-Plot'.
VERBOSE: Exporting alias 'Convert-XlRangeToImage'.
VERBOSE: Exporting alias 'Use-ExcelData'.
VERBOSE: Exporting alias 'Export-ExcelSheet'.
VERBOSE: Exporting alias 'New-ExcelChart'.
VERBOSE: Exporting alias 'Set-Column'.
VERBOSE: Exporting alias 'Set-Format'.
VERBOSE: Exporting alias 'Set-Row'.
VERBOSE: Exporting alias 'Invoke-AllTests'.
VERBOSE: Importing function 'Add-ConditionalFormatting'.
VERBOSE: Importing function 'Add-ExcelChart'.
VERBOSE: Importing function 'Add-ExcelDataValidationRule'.
VERBOSE: Importing function 'Add-ExcelName'.
VERBOSE: Importing function 'Add-ExcelTable'.
VERBOSE: Importing function 'Add-PivotTable'.
VERBOSE: Importing function 'Add-Worksheet'.
VERBOSE: Importing function 'BarChart'.
VERBOSE: Importing function 'Close-ExcelPackage'.
VERBOSE: Importing function 'ColumnChart'.
VERBOSE: Importing function 'Compare-Worksheet'.
VERBOSE: Importing function 'Convert-ExcelRangeToImage'.
VERBOSE: Importing function 'ConvertFrom-ExcelData'.
VERBOSE: Importing function 'ConvertFrom-ExcelSheet'.
VERBOSE: Importing function 'ConvertFrom-ExcelToSQLInsert'.
VERBOSE: Importing function 'ConvertTo-ExcelXlsx'.
VERBOSE: Importing function 'Copy-ExcelWorksheet'.
VERBOSE: Importing function 'DoChart'.
VERBOSE: Importing function 'Enable-ExcelAutoFilter'.
VERBOSE: Importing function 'Enable-ExcelAutofit'.
VERBOSE: Importing function 'Expand-NumberFormat'.
VERBOSE: Importing function 'Export-Excel'.
VERBOSE: Importing function 'Get-ExcelColumnName'.
VERBOSE: Importing function 'Get-ExcelFileSummary'.
VERBOSE: Importing function 'Get-ExcelSheetDimensionAddress'.
VERBOSE: Importing function 'Get-ExcelSheetInfo'.
VERBOSE: Importing function 'Get-ExcelWorkbookInfo'.
VERBOSE: Importing function 'Get-HtmlTable'.
VERBOSE: Importing function 'Get-Range'.
VERBOSE: Importing function 'Get-XYRange'.
VERBOSE: Importing function 'Import-Excel'.
VERBOSE: Importing function 'Import-Html'.
VERBOSE: Importing function 'Import-UPS'.
VERBOSE: Importing function 'Import-USPS'.
VERBOSE: Importing function 'Invoke-ExcelQuery'.
VERBOSE: Importing function 'Invoke-Sum'.
VERBOSE: Importing function 'Join-Worksheet'.
VERBOSE: Importing function 'LineChart'.
VERBOSE: Importing function 'Merge-MultipleSheets'.
VERBOSE: Importing function 'Merge-Worksheet'.
VERBOSE: Importing function 'New-ConditionalFormattingIconSet'.
VERBOSE: Importing function 'New-ConditionalText'.
VERBOSE: Importing function 'New-ExcelChartDefinition'.
VERBOSE: Importing function 'New-ExcelStyle'.
VERBOSE: Importing function 'New-PivotTableDefinition'.
VERBOSE: Importing function 'New-Plot'.
VERBOSE: Importing function 'New-PSItem'.
VERBOSE: Importing function 'Open-ExcelPackage'.
VERBOSE: Importing function 'PieChart'.
VERBOSE: Importing function 'Pivot'.
VERBOSE: Importing function 'Read-Clipboard'.
VERBOSE: Importing function 'Read-OleDbData'.
VERBOSE: Importing function 'ReadClipboardImpl'.
VERBOSE: Importing function 'Remove-Worksheet'.
VERBOSE: Importing function 'Select-Worksheet'.
VERBOSE: Importing function 'Send-SQLDataToExcel'.
VERBOSE: Importing function 'Set-CellStyle'.
VERBOSE: Importing function 'Set-ExcelColumn'.
VERBOSE: Importing function 'Set-ExcelRange'.
VERBOSE: Importing function 'Set-ExcelRow'.
VERBOSE: Importing function 'Set-WorksheetProtection'.
VERBOSE: Importing function 'Test-Boolean'.
VERBOSE: Importing function 'Test-Date'.
VERBOSE: Importing function 'Test-Integer'.
VERBOSE: Importing function 'Test-Number'.
VERBOSE: Importing function 'Test-String'.
VERBOSE: Importing function 'Update-FirstObjectProperties'.
VERBOSE: Importing alias 'Convert-XlRangeToImage'.
VERBOSE: Importing alias 'Export-ExcelSheet'.
VERBOSE: Importing alias 'New-ExcelChart'.
VERBOSE: Importing alias 'Set-Column'.
VERBOSE: Importing alias 'Set-Format'.
VERBOSE: Importing alias 'Set-Row'.
VERBOSE: Importing alias 'Use-ExcelData'.
git : Cloning into 'd365fo.tools'...
At line:23 char:1
+ git clone https://github.com/FH-Inway/d365fo.tools.git
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (Cloning into 'd365fo.tools'...:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
Branch 'refactor-use-az.storage' set up to track remote branch 'refactor-use-az.storage' from 'origin'.
git : Switched to a new branch 'refactor-use-az.storage'
At line:26 char:1
+ git switch refactor-use-az.storage
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (Switched to a n...use-az.storage':String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
VERBOSE: Loading module from path 'C:\Temp\d365fo.tools\d365fo.tools\d365fo.tools.psd1'.
VERBOSE: Loading 'FormatsToProcess' from path 'C:\Temp\d365fo.tools\d365fo.tools\xml\d365fo.tools.Format.ps1xml'.
VERBOSE: Loading module from path 'C:\Temp\d365fo.tools\d365fo.tools\d365fo.tools.psm1'.
VERBOSE: Exporting function 'Import-ModuleFile'.
VERBOSE: Exporting function 'Add-AadUserSecurity'.
VERBOSE: Exporting function 'Backup-File'.
VERBOSE: Exporting function 'Complete-LcsUploadV2'.
VERBOSE: Exporting function 'Convert-HashToArgStringSwitch'.
VERBOSE: Exporting function 'ConvertTo-BooleanOrDefault'.
VERBOSE: Exporting function 'ConvertTo-Hashtable'.
VERBOSE: Exporting function 'ConvertTo-PsCustomObject'.
VERBOSE: Exporting function 'Copy-FileToLcsBlob'.
VERBOSE: Exporting function 'Get-ApplicationEnvironment'.
VERBOSE: Exporting function 'Get-AsyncResult'.
VERBOSE: Exporting function 'Get-AxAggregateDimensions'.
VERBOSE: Exporting function 'Get-AxAggregateMeasures'.
VERBOSE: Exporting function 'ArrayToHash'.
VERBOSE: Exporting function 'Get-AxDataEntities'.
VERBOSE: Exporting function 'QueryDataSourceRecursion'.
VERBOSE: Exporting function 'Get-AxForms'.
VERBOSE: Exporting function 'Get-AxViews'.
VERBOSE: Exporting function 'Get-AzureServiceObjective'.
VERBOSE: Exporting function 'Get-BackupName'.
VERBOSE: Exporting function 'Get-CanonicalIdentityProvider'.
VERBOSE: Exporting function 'Get-CompilerResult'.
VERBOSE: Exporting function 'Get-DeepClone'.
VERBOSE: Exporting function 'Get-FileVersion'.
VERBOSE: Exporting function 'Get-IdentityProvider'.
VERBOSE: Exporting function 'Get-InstanceIdentityProvider'.
VERBOSE: Exporting function 'Get-InstanceValues'.
VERBOSE: Exporting function 'Get-LcsAssetFileV2'.
VERBOSE: Exporting function 'Get-LcsAssetValidationStatusV2'.
VERBOSE: Exporting function 'Get-LcsDatabaseBackupsV2'.
VERBOSE: Exporting function 'Get-LcsDatabaseOperationStatusV2'.
VERBOSE: Exporting function 'Get-LcsDeploymentStatusV2'.
VERBOSE: Exporting function 'Get-LcsEnvironmentHistory'.
VERBOSE: Exporting function 'Get-LcsEnvironmentMetadata'.
VERBOSE: Exporting function 'Get-LoginFromEmail'.
VERBOSE: Exporting function 'Get-NetworkDomain'.
VERBOSE: Exporting function 'Get-ProductInfoProvider'.
VERBOSE: Exporting function 'Get-ServiceList'.
VERBOSE: Exporting function 'Get-SQLCommand'.
VERBOSE: Exporting function 'Get-SqlParameterSize'.
VERBOSE: Exporting function 'Get-SqlParameterValue'.
VERBOSE: Exporting function 'Get-SqlString'.
VERBOSE: Exporting function 'Get-SyncElements'.
VERBOSE: Exporting function 'Get-TenantFromEmail'.
VERBOSE: Exporting function 'Get-TimeZone'.
VERBOSE: Exporting function 'Get-UserSIDFromAad'.
VERBOSE: Exporting function 'Get-WindowsDefenderStatus'.
VERBOSE: Exporting function 'Import-AadApplicationIntoD365FO'.
VERBOSE: Exporting function 'Import-AadUserIntoD365FO'.
VERBOSE: Exporting function 'Import-AssemblyFileIntoMemory'.
VERBOSE: Exporting function 'Import-GenerateReportAssemblies'.
VERBOSE: Exporting function 'Invoke-AzureBackupRestore'.
VERBOSE: Exporting function 'Invoke-ClearAzureSpecificObjects'.
VERBOSE: Exporting function 'Invoke-ClearSqlSpecificObjects'.
VERBOSE: Exporting function 'Invoke-CompilerResultAnalyzer'.
VERBOSE: Exporting function 'Invoke-ModelUtil'.
VERBOSE: Exporting function 'Invoke-Process'.
VERBOSE: Exporting function 'Invoke-RequestHandler'.
VERBOSE: Exporting function 'Invoke-SqlBackupRestore'.
VERBOSE: Exporting function 'Invoke-SqlPackage'.
VERBOSE: Exporting function 'Invoke-TimeSignal'.
VERBOSE: Exporting function 'New-D365FOAadApplication'.
VERBOSE: Exporting function 'New-D365FOUser'.
VERBOSE: Exporting function 'New-D365SelfSignedCertificate'.
VERBOSE: Exporting function 'New-DecryptedFile'.
VERBOSE: Exporting function 'New-WebRequest'.
VERBOSE: Exporting function 'Rename-ConfigValue'.
VERBOSE: Exporting function 'Select-DefaultView'.
VERBOSE: Exporting function 'Set-AdminUser'.
VERBOSE: Exporting function 'Set-AzureBacpacValues'.
VERBOSE: Exporting function 'Set-SqlBacpacValues'.
VERBOSE: Exporting function 'Start-LcsDatabaseExportV2'.
VERBOSE: Exporting function 'Start-LcsDatabaseRefreshV2'.
VERBOSE: Exporting function 'Start-LcsDeploymentV2'.
VERBOSE: Exporting function 'Start-LcsEnvironmentStartStopV2'.
VERBOSE: Exporting function 'Start-LcsUploadV2'.
VERBOSE: Exporting function 'Test-AadUserIdInD365FO'.
VERBOSE: Exporting function 'Test-AadUserInD365FO'.
VERBOSE: Exporting function 'Test-AssembliesLoaded'.
VERBOSE: Exporting function 'Test-ConfigStorageLocation'.
VERBOSE: Exporting function 'Test-PathExists'.
VERBOSE: Exporting function 'Test-RegistryValue'.
VERBOSE: Exporting function 'Test-TrustedConnection'.
VERBOSE: Exporting function 'Update-AzureStorageVariables'.
VERBOSE: Exporting function 'Update-BroadcastVariables'.
VERBOSE: Exporting function 'Update-LcsApiVariables'.
VERBOSE: Exporting function 'Update-ModuleVariables'.
VERBOSE: Exporting function 'Update-PsfConfigVariables'.
VERBOSE: Exporting function 'Update-TopologyFile'.
VERBOSE: Exporting function 'Add-D365AzureStorageConfig'.
VERBOSE: Exporting function 'Add-D365BroadcastMessageConfig'.
VERBOSE: Exporting function 'Add-D365RsatWifConfigAuthorityThumbprint'.
VERBOSE: Exporting function 'Add-D365WindowsDefenderRules'.
VERBOSE: Exporting function 'Backup-D365DevConfig'.
VERBOSE: Exporting function 'Backup-D365MetaDataDir'.
VERBOSE: Exporting function 'Backup-D365Runbook'.
VERBOSE: Exporting function 'Backup-D365WebConfig'.
VERBOSE: Exporting function 'Clear-D365ActiveBroadcastMessageConfig'.
VERBOSE: Exporting function 'Clear-D365BacpacTableData'.
VERBOSE: Exporting function 'Clear-D365MonitorData'.
VERBOSE: Exporting function 'Clear-D365TempDbTables'.
VERBOSE: Exporting function 'ConvertTo-D365Dacpac'.
VERBOSE: Exporting function 'Disable-D365Exception'.
VERBOSE: Exporting function 'Disable-D365Flight'.
VERBOSE: Exporting function 'Disable-D365MaintenanceMode'.
VERBOSE: Exporting function 'Disable-D365SqlChangeTracking'.
VERBOSE: Exporting function 'Disable-D365User'.
VERBOSE: Exporting function 'Enable-D365Exception'.
VERBOSE: Exporting function 'Enable-D365Flight'.
VERBOSE: Exporting function 'Enable-D365MaintenanceMode'.
VERBOSE: Exporting function 'Enable-D365SqlChangeTracking'.
VERBOSE: Exporting function 'Enable-D365User'.
VERBOSE: Exporting function 'Export-D365BacpacModelFile'.
VERBOSE: Exporting function 'Export-D365Model'.
VERBOSE: Exporting function 'Export-D365SecurityDetails'.
VERBOSE: Exporting function 'Find-D365Command'.
VERBOSE: Exporting function 'Get-D365ActiveAzureStorageConfig'.
VERBOSE: Exporting function 'Get-D365ActiveBroadcastMessageConfig'.
VERBOSE: Exporting function 'Get-D365AOTObject'.
VERBOSE: Exporting function 'Get-D365AzureDevOpsNuget'.
VERBOSE: Exporting function 'Get-D365AzureStorageConfig'.
VERBOSE: Exporting function 'Get-D365AzureStorageFile'.
VERBOSE: Exporting function 'Get-D365AzureStorageUrl'.
VERBOSE: Exporting function 'Get-D365BacpacSqlOptions'.
VERBOSE: Exporting function 'Get-D365BacpacTable'.
VERBOSE: Exporting function 'Get-D365BroadcastMessage'.
VERBOSE: Exporting function 'Get-D365BroadcastMessageConfig'.
VERBOSE: Exporting function 'Get-D365ClickOnceTrustPrompt'.
VERBOSE: Exporting function 'Get-D365CompilerResult'.
VERBOSE: Exporting function 'Get-D365Database'.
VERBOSE: Exporting function 'Get-D365DatabaseAccess'.
VERBOSE: Exporting function 'Get-D365DecryptedWebConfig'.
VERBOSE: Exporting function 'Get-D365DefaultModelForNewProjects'.
VERBOSE: Exporting function 'Get-D365DotNetClass'.
VERBOSE: Exporting function 'Get-D365DotNetMethod'.
VERBOSE: Exporting function 'Get-D365Environment'.
VERBOSE: Exporting function 'Get-D365EnvironmentSettings'.
VERBOSE: Exporting function 'Get-D365EventTraceProvider'.
VERBOSE: Exporting function 'Get-D365ExternalIP'.
VERBOSE: Exporting function 'Get-D365InstalledHotfix'.
VERBOSE: Exporting function 'Get-D365InstalledPackage'.
VERBOSE: Exporting function 'Get-D365InstalledService'.
VERBOSE: Exporting function 'Get-D365InstanceName'.
VERBOSE: Exporting function 'Get-D365JsonService'.
VERBOSE: Exporting function 'Get-D365Label'.
VERBOSE: Exporting function 'Get-D365LabelFile'.
VERBOSE: Exporting function 'Get-D365Language'.
VERBOSE: Exporting function 'Get-D365LcsApiConfig'.
VERBOSE: Exporting function 'Get-D365LcsApiToken'.
VERBOSE: Exporting function 'Get-D365LcsAssetFile'.
VERBOSE: Exporting function 'Get-D365LcsAssetValidationStatus'.
VERBOSE: Exporting function 'Get-D365LcsDatabaseBackups'.
VERBOSE: Exporting function 'Get-D365LcsDatabaseOperationStatus'.
VERBOSE: Exporting function 'Get-D365LcsDeploymentStatus'.
VERBOSE: Exporting function 'Get-D365LcsEnvironmentHistory'.
VERBOSE: Exporting function 'Get-D365LcsEnvironmentMetadata'.
VERBOSE: Exporting function 'Get-D365MaintenanceMode'.
VERBOSE: Exporting function 'Get-D365Model'.
VERBOSE: Exporting function 'Get-D365Module'.
VERBOSE: Exporting function 'Get-D365OfflineAuthenticationAdminEmail'.
VERBOSE: Exporting function 'Get-D365PackageBundleDetail'.
VERBOSE: Exporting function 'Get-D365PackageLabelResourceFile'.
VERBOSE: Exporting function 'Get-D365PackageLabelResources'.
VERBOSE: Exporting function 'Get-D365ProductInformation'.
VERBOSE: Exporting function 'Get-D365RsatCertificateThumbprint'.
VERBOSE: Exporting function 'Get-D365RsatPlaybackFile'.
VERBOSE: Exporting function 'Get-D365RsatSoapHostname'.
VERBOSE: Exporting function 'Get-D365Runbook'.
VERBOSE: Exporting function 'Get-D365RunbookId'.
VERBOSE: Exporting function 'Get-D365RunbookLogFile'.
VERBOSE: Exporting function 'Get-D365SDPCleanUp'.
VERBOSE: Exporting function 'Get-D365Table'.
VERBOSE: Exporting function 'Get-D365TableField'.
VERBOSE: Exporting function 'Get-D365TableSequence'.
VERBOSE: Exporting function 'Get-D365TablesInChangedTracking'.
VERBOSE: Exporting function 'Get-D365TfsUri'.
VERBOSE: Exporting function 'Get-D365TfsWorkspace'.
VERBOSE: Exporting function 'Get-D365Url'.
VERBOSE: Exporting function 'Get-D365User'.
VERBOSE: Exporting function 'Get-D365UserAuthenticationDetail'.
VERBOSE: Exporting function 'Get-D365VisualStudioCompilerResult'.
VERBOSE: Exporting function 'Get-D365WebServerType'.
VERBOSE: Exporting function 'Get-D365WindowsActivationStatus'.
VERBOSE: Exporting function 'Import-D365AadApplication'.
VERBOSE: Exporting function 'Import-D365AadUser'.
VERBOSE: Exporting function 'Import-D365Bacpac'.
VERBOSE: Exporting function 'Import-D365Dacpac'.
VERBOSE: Exporting function 'Import-D365ExternalUser'.
VERBOSE: Exporting function 'Import-D365Model'.
VERBOSE: Exporting function 'Import-D365RsatSelfServiceCertificates'.
VERBOSE: Exporting function 'Initialize-D365RsatCertificate'.
VERBOSE: Exporting function 'Install-D365SupportingSoftware'.
VERBOSE: Exporting function 'Invoke-D365AzCopyTransfer'.
VERBOSE: Exporting function 'Invoke-D365AzureDevOpsNugetPush'.
VERBOSE: Exporting function 'Invoke-D365AzureStorageDownload'.
VERBOSE: Exporting function 'Invoke-D365AzureStorageUpload'.
VERBOSE: Exporting function 'Invoke-D365BestPractice'.
VERBOSE: Exporting function 'Invoke-D365CompilerResultAnalyzer'.
VERBOSE: Exporting function 'Invoke-D365DataFlush'.
VERBOSE: Exporting function 'Invoke-D365DbSync'.
VERBOSE: Exporting function 'Invoke-D365DbSyncModule'.
VERBOSE: Exporting function 'Invoke-D365DbSyncPartial'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportAggregateDataEntity'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportAggregateMeasure'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportConfigKey'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportConfigKeyGroup'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportDataEntity'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportDataEntityField'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportKpi'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportLicenseCode'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportMenuItem'.
VERBOSE: Exporting function 'Invoke-D365GenerateReports'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportSsrs'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportTable'.
VERBOSE: Exporting function 'Invoke-D365GenerateReportWorkflowType'.
VERBOSE: Exporting function 'Invoke-D365InstallAzCopy'.
VERBOSE: Exporting function 'Invoke-D365InstallLicense'.
VERBOSE: Exporting function 'Invoke-D365InstallNuget'.
VERBOSE: Exporting function 'Invoke-D365InstallSqlPackage'.
VERBOSE: Exporting function 'Invoke-D365LcsApiRefreshToken'.
VERBOSE: Exporting function 'Invoke-D365LcsDatabaseExport'.
VERBOSE: Exporting function 'Invoke-D365LcsDatabaseRefresh'.
VERBOSE: Exporting function 'Invoke-D365LcsDeployment'.
VERBOSE: Exporting function 'Invoke-D365LcsEnvironmentStart'.
VERBOSE: Exporting function 'Invoke-D365LcsEnvironmentStop'.
VERBOSE: Exporting function 'Invoke-D365LcsUpload'.
VERBOSE: Exporting function 'Invoke-D365ModuleCompile'.
VERBOSE: Exporting function 'Invoke-D365ModuleFullCompile'.
VERBOSE: Exporting function 'Invoke-D365ModuleLabelGeneration'.
VERBOSE: Exporting function 'Invoke-D365ModuleReportsCompile'.
VERBOSE: Exporting function 'Invoke-D365ProcessModule'.
VERBOSE: Exporting function 'Invoke-D365ReArmWindows'.
VERBOSE: Exporting function 'Invoke-D365RunbookAnalyzer'.
VERBOSE: Exporting function 'Invoke-D365SCDPBundleInstall'.
VERBOSE: Exporting function 'Invoke-D365SDPInstall'.
VERBOSE: Exporting function 'Invoke-D365SeleniumDownload'.
VERBOSE: Exporting function 'Invoke-D365SqlScript'.
VERBOSE: Exporting function 'Invoke-D365SysFlushAodCache'.
VERBOSE: Exporting function 'Invoke-D365SysRunnerClass'.
VERBOSE: Exporting function 'Invoke-D365TableBrowser'.
VERBOSE: Exporting function 'Invoke-D365VisualStudioCompilerResultAnalyzer'.
VERBOSE: Exporting function 'Invoke-D365WinRmCertificateRotation'.
VERBOSE: Exporting function 'New-D365Bacpac'.
VERBOSE: Exporting function 'New-D365CAReport'.
VERBOSE: Exporting function 'New-D365ISVLicense'.
VERBOSE: Exporting function 'New-D365TopologyFile'.
VERBOSE: Exporting function 'Publish-D365SsrsReport'.
VERBOSE: Exporting function 'Register-D365AzureStorageConfig'.
VERBOSE: Exporting function 'Remove-D365BroadcastMessageConfig'.
VERBOSE: Exporting function 'Remove-D365Database'.
VERBOSE: Exporting function 'Remove-D365Model'.
VERBOSE: Exporting function 'Remove-D365User'.
VERBOSE: Exporting function 'Rename-D365ComputerName'.
VERBOSE: Exporting function 'Rename-D365Instance'.
VERBOSE: Exporting function 'Restart-D365Environment'.
VERBOSE: Exporting function 'Restore-D365DevConfig'.
VERBOSE: Exporting function 'Restore-D365WebConfig'.
VERBOSE: Exporting function 'Send-D365BroadcastMessage'.
VERBOSE: Exporting function 'Set-D365ActiveAzureStorageConfig'.
VERBOSE: Exporting function 'Set-D365ActiveBroadcastMessageConfig'.
VERBOSE: Exporting function 'Set-D365Admin'.
VERBOSE: Exporting function 'Set-D365AzCopyPath'.
VERBOSE: Exporting function 'Set-D365ClickOnceTrustPrompt'.
VERBOSE: Exporting function 'Set-D365DefaultModelForNewProjects'.
VERBOSE: Exporting function 'Set-D365FavoriteBookmark'.
VERBOSE: Exporting function 'Set-D365FlightServiceCatalogId'.
VERBOSE: Exporting function 'Set-D365LcsApiConfig'.
VERBOSE: Exporting function 'Set-D365NugetPath'.
VERBOSE: Exporting function 'Set-D365OfflineAuthenticationAdminEmail'.
VERBOSE: Exporting function 'Set-D365RsatConfiguration'.
VERBOSE: Exporting function 'Set-D365RsatTier2Crypto'.
VERBOSE: Exporting function 'Set-D365SDPCleanUp'.
VERBOSE: Exporting function 'Set-D365SqlPackagePath'.
VERBOSE: Exporting function 'Set-D365StartPage'.
VERBOSE: Exporting function 'Set-D365SysAdmin'.
VERBOSE: Exporting function 'Set-D365TraceParserFileSize'.
VERBOSE: Exporting function 'Set-D365WebConfigDatabase'.
VERBOSE: Exporting function 'Set-D365WebServerType'.
VERBOSE: Exporting function 'Set-D365WorkstationMode'.
VERBOSE: Exporting function 'Start-D365Environment'.
VERBOSE: Exporting function 'Start-D365EnvironmentV2'.
VERBOSE: Exporting function 'Start-D365EventTrace'.
VERBOSE: Exporting function 'Stop-D365Environment'.
VERBOSE: Exporting function 'Stop-D365EventTrace'.
VERBOSE: Exporting function 'Switch-D365ActiveDatabase'.
VERBOSE: Exporting function 'Test-D365Command'.
VERBOSE: Exporting function 'Test-D365FlightServiceCatalogId'.
VERBOSE: Exporting function 'Test-D365LabelIdIsValid'.
VERBOSE: Exporting function 'Update-D365BacpacModelFileSingleTable'.
VERBOSE: Exporting function 'Update-D365User'.
VERBOSE: Exporting alias 'Add-D365WIFConfigAuthorityThumbprint'.
VERBOSE: Exporting alias 'Clear-D365TableDataFromBacpac'.
VERBOSE: Exporting alias 'Get-D365ModelFileFromBacpac'.
VERBOSE: Exporting alias 'Get-D365SqlOptionsFromBacpacModelFile'.
VERBOSE: Exporting alias 'Get-D365DecryptedConfigFile'.
VERBOSE: Exporting alias 'Initialize-D365TestAutomationCertificate'.
VERBOSE: Exporting alias 'Invoke-D365SqlCmd'.
VERBOSE: Importing function 'Add-D365AzureStorageConfig'.
VERBOSE: Importing function 'Add-D365BroadcastMessageConfig'.
VERBOSE: Importing function 'Add-D365RsatWifConfigAuthorityThumbprint'.
VERBOSE: Importing function 'Add-D365WindowsDefenderRules'.
VERBOSE: Importing function 'Backup-D365DevConfig'.
VERBOSE: Importing function 'Backup-D365MetaDataDir'.
VERBOSE: Importing function 'Backup-D365Runbook'.
VERBOSE: Importing function 'Backup-D365WebConfig'.
VERBOSE: Importing function 'Clear-D365ActiveBroadcastMessageConfig'.
VERBOSE: Importing function 'Clear-D365BacpacTableData'.
VERBOSE: Importing function 'Clear-D365MonitorData'.
VERBOSE: Importing function 'Clear-D365TempDbTables'.
VERBOSE: Importing function 'ConvertTo-D365Dacpac'.
VERBOSE: Importing function 'Disable-D365Exception'.
VERBOSE: Importing function 'Disable-D365Flight'.
VERBOSE: Importing function 'Disable-D365MaintenanceMode'.
VERBOSE: Importing function 'Disable-D365SqlChangeTracking'.
VERBOSE: Importing function 'Disable-D365User'.
VERBOSE: Importing function 'Enable-D365Exception'.
VERBOSE: Importing function 'Enable-D365Flight'.
VERBOSE: Importing function 'Enable-D365MaintenanceMode'.
VERBOSE: Importing function 'Enable-D365SqlChangeTracking'.
VERBOSE: Importing function 'Enable-D365User'.
VERBOSE: Importing function 'Export-D365BacpacModelFile'.
VERBOSE: Importing function 'Export-D365Model'.
VERBOSE: Importing function 'Export-D365SecurityDetails'.
VERBOSE: Importing function 'Find-D365Command'.
VERBOSE: Importing function 'Get-D365ActiveAzureStorageConfig'.
VERBOSE: Importing function 'Get-D365ActiveBroadcastMessageConfig'.
VERBOSE: Importing function 'Get-D365AOTObject'.
VERBOSE: Importing function 'Get-D365AzureDevOpsNuget'.
VERBOSE: Importing function 'Get-D365AzureStorageConfig'.
VERBOSE: Importing function 'Get-D365AzureStorageFile'.
VERBOSE: Importing function 'Get-D365AzureStorageUrl'.
VERBOSE: Importing function 'Get-D365BacpacSqlOptions'.
VERBOSE: Importing function 'Get-D365BacpacTable'.
VERBOSE: Importing function 'Get-D365BroadcastMessage'.
VERBOSE: Importing function 'Get-D365BroadcastMessageConfig'.
VERBOSE: Importing function 'Get-D365ClickOnceTrustPrompt'.
VERBOSE: Importing function 'Get-D365CompilerResult'.
VERBOSE: Importing function 'Get-D365Database'.
VERBOSE: Importing function 'Get-D365DatabaseAccess'.
VERBOSE: Importing function 'Get-D365DecryptedWebConfig'.
VERBOSE: Importing function 'Get-D365DefaultModelForNewProjects'.
VERBOSE: Importing function 'Get-D365DotNetClass'.
VERBOSE: Importing function 'Get-D365DotNetMethod'.
VERBOSE: Importing function 'Get-D365Environment'.
VERBOSE: Importing function 'Get-D365EnvironmentSettings'.
VERBOSE: Importing function 'Get-D365EventTraceProvider'.
VERBOSE: Importing function 'Get-D365ExternalIP'.
VERBOSE: Importing function 'Get-D365InstalledHotfix'.
VERBOSE: Importing function 'Get-D365InstalledPackage'.
VERBOSE: Importing function 'Get-D365InstalledService'.
VERBOSE: Importing function 'Get-D365InstanceName'.
VERBOSE: Importing function 'Get-D365JsonService'.
VERBOSE: Importing function 'Get-D365Label'.
VERBOSE: Importing function 'Get-D365LabelFile'.
VERBOSE: Importing function 'Get-D365Language'.
VERBOSE: Importing function 'Get-D365LcsApiConfig'.
VERBOSE: Importing function 'Get-D365LcsApiToken'.
VERBOSE: Importing function 'Get-D365LcsAssetFile'.
VERBOSE: Importing function 'Get-D365LcsAssetValidationStatus'.
VERBOSE: Importing function 'Get-D365LcsDatabaseBackups'.
VERBOSE: Importing function 'Get-D365LcsDatabaseOperationStatus'.
VERBOSE: Importing function 'Get-D365LcsDeploymentStatus'.
VERBOSE: Importing function 'Get-D365LcsEnvironmentHistory'.
VERBOSE: Importing function 'Get-D365LcsEnvironmentMetadata'.
VERBOSE: Importing function 'Get-D365MaintenanceMode'.
VERBOSE: Importing function 'Get-D365Model'.
VERBOSE: Importing function 'Get-D365Module'.
VERBOSE: Importing function 'Get-D365OfflineAuthenticationAdminEmail'.
VERBOSE: Importing function 'Get-D365PackageBundleDetail'.
VERBOSE: Importing function 'Get-D365PackageLabelResourceFile'.
VERBOSE: Importing function 'Get-D365PackageLabelResources'.
VERBOSE: Importing function 'Get-D365ProductInformation'.
VERBOSE: Importing function 'Get-D365RsatCertificateThumbprint'.
VERBOSE: Importing function 'Get-D365RsatPlaybackFile'.
VERBOSE: Importing function 'Get-D365RsatSoapHostname'.
VERBOSE: Importing function 'Get-D365Runbook'.
VERBOSE: Importing function 'Get-D365RunbookId'.
VERBOSE: Importing function 'Get-D365RunbookLogFile'.
VERBOSE: Importing function 'Get-D365SDPCleanUp'.
VERBOSE: Importing function 'Get-D365Table'.
VERBOSE: Importing function 'Get-D365TableField'.
VERBOSE: Importing function 'Get-D365TableSequence'.
VERBOSE: Importing function 'Get-D365TablesInChangedTracking'.
VERBOSE: Importing function 'Get-D365TfsUri'.
VERBOSE: Importing function 'Get-D365TfsWorkspace'.
VERBOSE: Importing function 'Get-D365Url'.
VERBOSE: Importing function 'Get-D365User'.
VERBOSE: Importing function 'Get-D365UserAuthenticationDetail'.
VERBOSE: Importing function 'Get-D365VisualStudioCompilerResult'.
VERBOSE: Importing function 'Get-D365WebServerType'.
VERBOSE: Importing function 'Get-D365WindowsActivationStatus'.
VERBOSE: Importing function 'Import-D365AadApplication'.
VERBOSE: Importing function 'Import-D365AadUser'.
VERBOSE: Importing function 'Import-D365Bacpac'.
VERBOSE: Importing function 'Import-D365Dacpac'.
VERBOSE: Importing function 'Import-D365ExternalUser'.
VERBOSE: Importing function 'Import-D365Model'.
VERBOSE: Importing function 'Import-D365RsatSelfServiceCertificates'.
VERBOSE: Importing function 'Initialize-D365RsatCertificate'.
VERBOSE: Importing function 'Install-D365SupportingSoftware'.
VERBOSE: Importing function 'Invoke-D365AzCopyTransfer'.
VERBOSE: Importing function 'Invoke-D365AzureDevOpsNugetPush'.
VERBOSE: Importing function 'Invoke-D365AzureStorageDownload'.
VERBOSE: Importing function 'Invoke-D365AzureStorageUpload'.
VERBOSE: Importing function 'Invoke-D365BestPractice'.
VERBOSE: Importing function 'Invoke-D365CompilerResultAnalyzer'.
VERBOSE: Importing function 'Invoke-D365DataFlush'.
VERBOSE: Importing function 'Invoke-D365DbSync'.
VERBOSE: Importing function 'Invoke-D365DbSyncModule'.
VERBOSE: Importing function 'Invoke-D365DbSyncPartial'.
VERBOSE: Importing function 'Invoke-D365GenerateReportAggregateDataEntity'.
VERBOSE: Importing function 'Invoke-D365GenerateReportAggregateMeasure'.
VERBOSE: Importing function 'Invoke-D365GenerateReportConfigKey'.
VERBOSE: Importing function 'Invoke-D365GenerateReportConfigKeyGroup'.
VERBOSE: Importing function 'Invoke-D365GenerateReportDataEntity'.
VERBOSE: Importing function 'Invoke-D365GenerateReportDataEntityField'.
VERBOSE: Importing function 'Invoke-D365GenerateReportKpi'.
VERBOSE: Importing function 'Invoke-D365GenerateReportLicenseCode'.
VERBOSE: Importing function 'Invoke-D365GenerateReportMenuItem'.
VERBOSE: Importing function 'Invoke-D365GenerateReports'.
VERBOSE: Importing function 'Invoke-D365GenerateReportSsrs'.
VERBOSE: Importing function 'Invoke-D365GenerateReportTable'.
VERBOSE: Importing function 'Invoke-D365GenerateReportWorkflowType'.
VERBOSE: Importing function 'Invoke-D365InstallAzCopy'.
VERBOSE: Importing function 'Invoke-D365InstallLicense'.
VERBOSE: Importing function 'Invoke-D365InstallNuget'.
VERBOSE: Importing function 'Invoke-D365InstallSqlPackage'.
VERBOSE: Importing function 'Invoke-D365LcsApiRefreshToken'.
VERBOSE: Importing function 'Invoke-D365LcsDatabaseExport'.
VERBOSE: Importing function 'Invoke-D365LcsDatabaseRefresh'.
VERBOSE: Importing function 'Invoke-D365LcsDeployment'.
VERBOSE: Importing function 'Invoke-D365LcsEnvironmentStart'.
VERBOSE: Importing function 'Invoke-D365LcsEnvironmentStop'.
VERBOSE: Importing function 'Invoke-D365LcsUpload'.
VERBOSE: Importing function 'Invoke-D365ModuleCompile'.
VERBOSE: Importing function 'Invoke-D365ModuleFullCompile'.
VERBOSE: Importing function 'Invoke-D365ModuleLabelGeneration'.
VERBOSE: Importing function 'Invoke-D365ModuleReportsCompile'.
VERBOSE: Importing function 'Invoke-D365ProcessModule'.
VERBOSE: Importing function 'Invoke-D365ReArmWindows'.
VERBOSE: Importing function 'Invoke-D365RunbookAnalyzer'.
VERBOSE: Importing function 'Invoke-D365SCDPBundleInstall'.
VERBOSE: Importing function 'Invoke-D365SDPInstall'.
VERBOSE: Importing function 'Invoke-D365SeleniumDownload'.
VERBOSE: Importing function 'Invoke-D365SqlScript'.
VERBOSE: Importing function 'Invoke-D365SysFlushAodCache'.
VERBOSE: Importing function 'Invoke-D365SysRunnerClass'.
VERBOSE: Importing function 'Invoke-D365TableBrowser'.
VERBOSE: Importing function 'Invoke-D365VisualStudioCompilerResultAnalyzer'.
VERBOSE: Importing function 'Invoke-D365WinRmCertificateRotation'.
VERBOSE: Importing function 'New-D365Bacpac'.
VERBOSE: Importing function 'New-D365CAReport'.
VERBOSE: Importing function 'New-D365ISVLicense'.
VERBOSE: Importing function 'New-D365TopologyFile'.
VERBOSE: Importing function 'Publish-D365SsrsReport'.
VERBOSE: Importing function 'Register-D365AzureStorageConfig'.
VERBOSE: Importing function 'Remove-D365BroadcastMessageConfig'.
VERBOSE: Importing function 'Remove-D365Database'.
VERBOSE: Importing function 'Remove-D365Model'.
VERBOSE: Importing function 'Remove-D365User'.
VERBOSE: Importing function 'Rename-D365ComputerName'.
VERBOSE: Importing function 'Rename-D365Instance'.
VERBOSE: Importing function 'Restart-D365Environment'.
VERBOSE: Importing function 'Restore-D365DevConfig'.
VERBOSE: Importing function 'Restore-D365WebConfig'.
VERBOSE: Importing function 'Send-D365BroadcastMessage'.
VERBOSE: Importing function 'Set-D365ActiveAzureStorageConfig'.
VERBOSE: Importing function 'Set-D365ActiveBroadcastMessageConfig'.
VERBOSE: Importing function 'Set-D365Admin'.
VERBOSE: Importing function 'Set-D365AzCopyPath'.
VERBOSE: Importing function 'Set-D365ClickOnceTrustPrompt'.
VERBOSE: Importing function 'Set-D365DefaultModelForNewProjects'.
VERBOSE: Importing function 'Set-D365FavoriteBookmark'.
VERBOSE: Importing function 'Set-D365FlightServiceCatalogId'.
VERBOSE: Importing function 'Set-D365LcsApiConfig'.
VERBOSE: Importing function 'Set-D365NugetPath'.
VERBOSE: Importing function 'Set-D365OfflineAuthenticationAdminEmail'.
VERBOSE: Importing function 'Set-D365RsatConfiguration'.
VERBOSE: Importing function 'Set-D365RsatTier2Crypto'.
VERBOSE: Importing function 'Set-D365SDPCleanUp'.
VERBOSE: Importing function 'Set-D365SqlPackagePath'.
VERBOSE: Importing function 'Set-D365StartPage'.
VERBOSE: Importing function 'Set-D365SysAdmin'.
VERBOSE: Importing function 'Set-D365TraceParserFileSize'.
VERBOSE: Importing function 'Set-D365WebConfigDatabase'.
VERBOSE: Importing function 'Set-D365WebServerType'.
VERBOSE: Importing function 'Set-D365WorkstationMode'.
VERBOSE: Importing function 'Start-D365Environment'.
VERBOSE: Importing function 'Start-D365EnvironmentV2'.
VERBOSE: Importing function 'Start-D365EventTrace'.
VERBOSE: Importing function 'Stop-D365Environment'.
VERBOSE: Importing function 'Stop-D365EventTrace'.
VERBOSE: Importing function 'Switch-D365ActiveDatabase'.
VERBOSE: Importing function 'Test-D365Command'.
VERBOSE: Importing function 'Test-D365FlightServiceCatalogId'.
VERBOSE: Importing function 'Test-D365LabelIdIsValid'.
VERBOSE: Importing function 'Update-D365BacpacModelFileSingleTable'.
VERBOSE: Importing function 'Update-D365User'.
VERBOSE: Importing alias 'Add-D365WIFConfigAuthorityThumbprint'.
VERBOSE: Importing alias 'Clear-D365TableDataFromBacpac'.
VERBOSE: Importing alias 'Get-D365ModelFileFromBacpac'.
VERBOSE: Importing alias 'Get-D365SqlOptionsFromBacpacModelFile'.
VERBOSE: Importing alias 'Initialize-D365TestAutomationCertificate'.
VERBOSE: Importing alias 'Invoke-D365SqlCmd'.
ModuleType Version Name ExportedCommands
---------- ------- ---- ----------------
Script 0.6.72 d365fo.tools {Add-D365AzureStorageConfig, Add-D365BroadcastMessageConfig, Add-D365RsatWifConfigAuthorityThumbprint, Add-D365WindowsDefenderRules...}
LastWriteTime : 6/26/2022 6:41:30 AM
Length : 0
Name : Test.txt
VERBOSE: [06:41:30][Invoke-D365AzureStorageUpload] Working against Azure Storage Account with SAS
VERBOSE: [06:41:30][Invoke-D365AzureStorageUpload] Start uploading the file to Azure
VERBOSE: [06:41:30][Invoke-D365AzureStorageUpload] Content Type is automatically set to value: text/plain
VERBOSE: Transfer Summary
--------------------------------
Total: 1.
Successful: 1.
Failed: 0.
File : c:\temp\Test.txt
Filename : Test.txt
VERBOSE: [06:41:31][Invoke-D365AzureStorageUpload] Total time spent inside the function was 00:00:01.1094216
VERBOSE: [06:41:31][Get-D365AzureStorageFile] Working against Azure Storage Account with SAS
Name : Test.txt
Size : 30 B
LastModified : 6/26/2022 6:41:30 AM
VERBOSE: [06:41:31][Invoke-D365AzureStorageDownload] Working against Azure Storage Account with SAS
VERBOSE: [06:41:31][Invoke-D365AzureStorageDownload] Start download from Azure Storage Account
VERBOSE: [06:41:31][Invoke-D365AzureStorageDownload] Filename is: Test.txt
VERBOSE: Transfer Summary
--------------------------------
Total: 1.
Successful: 1.
Failed: 0.
Filename : Test.txt
Size : 30 B
LastModified : 6/26/2022 6:41:32 AM
File : C:\temp\Test.txt
VERBOSE: [06:41:32][Invoke-D365AzureStorageDownload] Total time spent inside the function was 00:00:00.2500018
VERBOSE: Performing the operation "Remove File" on target "C:\Temp\Test.txt".
PS C:\Temp\d365fo.tools>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment