Sample_Get.ps1

Remove-Module -Name IntuneWin32App -Force

# Import module
Import-Module -Name C:\GoogleDrive\Scripts\PowerShell\Intune\Modules\IntuneWin32App\IntuneWin32App.psd1

# Get all Win32 apps
Get-IntuneWin32App -TenantName "configmgrse.onmicrosoft.com" -Verbose

# Get a specific Win32 app by it's display name
Get-IntuneWin32App -TenantName "configmgrse.onmicrosoft.com" -DisplayName "7-zip" -Verbose

# Get a specific Win32 app by it's id
Get-IntuneWin32App -TenantName "configmgrse.onmicrosoft.com" -ID "ef7a7a80-7949-408c-97b8-a00c46621948" -Verbose


Get-IntuneWin32App -TenantName "configmgrse.onmicrosoft.com" -DisplayName "Enable BitLocker Encryption" -Verbose