Apologies if this is not the correct forum, but was only one I could find related as it's powershell
Currently the new Azure Az Module here https://docs.microsoft.com/en-us/powershell/azure/new-azureps-module-az?view=azps-1.4.0 has instructions to un-install AzureRM Module and Get Azure Az module installed. However, I find when getting this installed it constantly causes Powershell ISE to become unresponsive and have to kill the process. This appears to generate no logs or any information I can gather to see why this is the case.
Does anyone have an idea on where to look exactly if there was besides in Event Viewer under Applications and Services Logs > Windows Powershell or Microsoft > Windows > Powershell for any detailed info if powershell crashes or become unresponsive?
Also does anyone else have this issue with Azure Az module? I have others around me that have the same issue and I am running Windows 10 1703 (Cant upgrade as its corporate image)
Powershell version
PS C:\windows\system32> $PSVersionTable.PSVersionMajor Minor Build Revision
----- ----- ----- --------
5 1 15063 1631
I know the module is the cause because if I uninstall with commands below and re-install AzureRM module PowershellISE does not crash
Get-InstalledModule -Name Az -AllVersions
Uninstall-AllModules -TargetModule Az -Version 1.0.0 -Force
Any help is appreciated if possible.