Skip to content

Commit

Permalink
✅ Upload v1.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tugich committed Sep 21, 2023
1 parent a644e28 commit 27b6c78
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
Binary file modified Installer/Setup Packager for Intune.msi
Binary file not shown.
13 changes: 11 additions & 2 deletions Scripts/Intune.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,17 @@ Param(
Set-ExecutionPolicy ByPass -Scope CurrentUser

# Connect to Intune
# Install-Module -Name "IntuneWin32App"
Connect-MSIntuneGraph -TenantID $Tenant | Out-Null
If (Get-InstalledModule "IntuneWin32App")
{
Connect-MSIntuneGraph -TenantID $Tenant | Out-Null
}
Else
{
Write-Host "IntuneWin32App module not found - please install it first." -ForegroundColor Black -BackgroundColor Yellow
Write-Host "https://github.com/MSEndpointMgr/IntuneWin32App"
# Install-Module -Name "IntuneWin32App"
Exit 1
}

# Get MSI meta data from .intunewin file
$IntuneWinMetaData = Get-IntuneWin32AppMetaData -FilePath $IntuneWinFile
Expand Down
Binary file modified SetupPackager.exe
Binary file not shown.

0 comments on commit 27b6c78

Please sign in to comment.