If you rely on Microsoft Stream for storing meeting recordings, heads up — the default storage location is changing. Historically, recordings would be available via the Stream portal, but for some and soon for all, Stream recordings will be diverted to OneDrive for Business. Details of which are here.
Reverting the Storage Location with PowerShell
If this happens to affect your business and you wish to revert back to or check the setting of the default storage location for your Stream videos, please try out the following PowerShell.
Update-Module MicrosoftTeams
Connect-MicrosoftTeams
$sfbSession = New-CsOnlineSession -Credential $userCredential
Import-PSSession $sfbSession
#to retrieve existing policy
get-CsTeamsMeetingPolicy -Identity Global
#to set new policy setting for Stream Storage
Set-CsTeamsMeetingPolicy -Identity Global -RecordingStorageMode "Stream"