PowerShell v7.7.0-preview.5 has been released
Hi All,
Yesterday, Microsoft has released the PowerShell v7.7.0-preview.5 on GitHub.
The interesting Part is, that there is no more MSI - this has been annouced here:
I’ve downloaded the ZIP File and extracted it to C:\Temp
I’ve extracted the Zip to C:\Temp
Extracted Folders and Files
Included Modules
- CimCmdlets
- Microsoft.PowerShell.Archive
- Microsoft.PowerShell.Diagnostics
- Microsoft.PowerShell.Host
- Microsoft.PowerShell.Management
- Microsoft.PowerShell.PSResourceGet
- Microsoft.PowerShell.Security
- Microsoft.PowerShell.ThreadJob
- Microsoft.PowerShell.Utility
- Microsoft.WSMan.Management
- PackageManagement
- PowerShellGet
- PSDiagnostics
- PSReadLine
Let’s run PowerShell 7.7.0-preview5 without a PowerShell Profile
start C:\temp\PowerShell-7.7.0-preview.5-win-x64\pwsh.exe -Noprofile
Let’s check the Version
$PSVersionTable
Get-Host
Let’s run PowerShell 7.7.0-preview5 with the PowerShell Profile.
My PowerShell Module still works M365PSProfile Module - find the Documentation here: GitHub Documentation
start C:\temp\PowerShell-7.7.0-preview.4-win-x64\pwsh.exe
M365 PowerShell Modules
Exchange Online PowerShell Module does not work ☹️
Connect-ExchangeOnline -ShowBanner:$false -UserPrincipalName a.bohren@icewolf.ch
Connect-ExchangeOnline -ShowBanner:$false -UserPrincipalName a.bohren@icewolf.ch -DisableWAM
Microsoft.Graph PowerShell Module does not work ☹️
Connect-MgGraph -Scopes "User.Read.All" -NoWelcome
MicrosoftTeams PowerShell Module does work 😊
Connect-MicrosoftTeams
Get-CsOnlineUser -Identity a.bohren@icewolf.ch | fl *Ent*,*host*,*voice*, *line*
Disconnect-MicrosoftTeams
AZ PowerShell Module does work 😊
Connect-AzAccount -Tenant icewolfc.onmicrosoft.com
Get-AzStaticWebApp
Disconnect-AzAccount
Regards
Andres Bohren












