Sample_Get.ps1

# Import module
Import-Module -Name F:\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 "35cdd3fb-8df0-49b1-995a-0eb90a539ec8" -Verbose