Skip to content

0.1.0-preview Release

Pre-release
Pre-release
Compare
Choose a tag to compare
@rtintor rtintor released this 16 Nov 19:17
· 675 commits to main since this release
c7a1172

Microsoft Entra PowerShell Highlights

  • First preview version of Microsoft.Grah.Entra
  • First preview version of Microsoft.Grah.Entra.Beta
  • These packages are not yet published to PowerShell Gallery and require a manual installation.

Installation instructions

Download the file EntraPowerShell_0.1.0-preview.zip and unpack it in a local directory. Windows detects that the files were downloaded from the internet and blocks them from execution. To unblock, run the following:

# Let's assume the unpacked files are in c:\test\entra-powershell
cd c:\test\entra-powershell
# Unblock the content using
dir -r | unblock-file
# Add the folder to your module's path; this is temporary. To make it permanent, run the following with admin privileges
$env:PSModulePath += ";C:\test\Entra-PowerShell"
# Import the module
Import-Module Microsoft.Graph.Entra -Force
# or for beta
Import-Module Microsoft.Graph.Entra.Beta -Force

For simplicity, copy the unblocked files to your PowerShell modules folder, and then you can use the import without the path.

Full Changelog: https://github.com/microsoftgraph/entra-powershell/commits/0.1.0-preview