Merge branch 'main' of https://git.steelants.cz/JonatanRek/INT_PKG_BUILDER
This commit is contained in:
commit
57c10bfebc
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
v1.8.6/*
|
v1.8.6/*
|
||||||
|
build/*.intunewin
|
||||||
|
11
apps/FortigateVPN/check.ps1
Normal file
11
apps/FortigateVPN/check.ps1
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
$ProgramName = "FortiClientVPN"
|
||||||
|
#$ProfileName = "DEMO scloud" # Change to your Profilename!
|
||||||
|
$ProgramVersion_target = '7.4.0.1658' # Set to version from MSI
|
||||||
|
$ProgramPath = "C:\Program Files\Fortinet\FortiClient\FortiClient.exe"
|
||||||
|
$ProgramVersion_current = [System.Diagnostics.FileVersionInfo]::GetVersionInfo($ProgramPath).FileVersion
|
||||||
|
#$RegPath = "HKLM:\SOFTWARE\Fortinet\FortiClient\Sslvpn\Tunnels\$ProfileName"
|
||||||
|
#$RegContent = Get-ItemProperty -Path $RegPath
|
||||||
|
|
||||||
|
if(($ProgramVersion_current -eq $ProgramVersion_target) <#-and ($RegContent)#>){
|
||||||
|
Write-Host "Found it!"
|
||||||
|
}
|
@ -4,12 +4,12 @@ $installerName = "FortiClient_v7.4.0.1658.msi"
|
|||||||
Start-Transcript -Path "$PathIntune\Log\FortigateVPN-install.log" -Force
|
Start-Transcript -Path "$PathIntune\Log\FortigateVPN-install.log" -Force
|
||||||
|
|
||||||
$installerPath = ('./bin/' + $installerName)
|
$installerPath = ('./bin/' + $installerName)
|
||||||
$installArgs = "/install","/quiet","/norestart"
|
$installArgs = "/quiet","/norestart"
|
||||||
Start-Process -FilePath $installerPath -ArgumentList "$installArgs" -Wait
|
Start-Process -FilePath $installerPath -ArgumentList "$installArgs" -Wait
|
||||||
Write-Host ("Fortigate VPN Installed versions installed: " + $installerName)
|
Write-Host ("Fortigate VPN Installed versions installed: " + $installerName)
|
||||||
|
|
||||||
foreach ($folder in (Get-ChildItem -Path ("{0}/config/" -f $PSScriptRoot) -Filter "vpn*.reg")) {
|
foreach ($folder in (Get-ChildItem -Path ("{0}/config/" -f $PSScriptRoot) -Filter "vpn*.reg")) {
|
||||||
$process = Start-Process -Path reg.exe -ArgumentList @("Import", $folder.FullName) -Wait -PassThru
|
$process = Start-Process -FilePath reg.exe -ArgumentList @("Import", $folder.FullName) -Wait -PassThru
|
||||||
If($process.ExitCode)
|
If($process.ExitCode)
|
||||||
{
|
{
|
||||||
Write-Host ("Profile [{0}] Imported" -f $folder.Name)
|
Write-Host ("Profile [{0}] Imported" -f $folder.Name)
|
||||||
|
16
apps/FortigateVPN/uninstall.ps1
Normal file
16
apps/FortigateVPN/uninstall.ps1
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
$PathIntune = "$Env:Programfiles\itego\intune"
|
||||||
|
Start-Transcript -Path "$PathIntune\Log\FortigateVPN-uninstall.log" -Force
|
||||||
|
|
||||||
|
# array of uninstall args
|
||||||
|
$uninstallArgs = "/uninstall"," ","/quiet", "/norestart"
|
||||||
|
$dotnetVersions = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -eq "FortiClient VPN" }
|
||||||
|
|
||||||
|
foreach ($version in $dotnetVersions) {
|
||||||
|
# update array index 1 with version id
|
||||||
|
$uninstallArgs[1] = '"' + $version.IdentifyingNumber + '"'
|
||||||
|
Write-Host "Uninstalling $($version.Name) ($($version.Version))... $("$uninstallArgs")"
|
||||||
|
Start-Process -FilePath "msiexec.exe" -ArgumentList "$uninstallArgs" -Wait
|
||||||
|
}
|
||||||
|
0
|
||||||
|
|
||||||
|
Stop-Transcript
|
@ -17,6 +17,7 @@ foreach ($folder in (Get-ChildItem -Path "./apps/" )) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Remove-Item -Path ("./build/{0}.intunewin" -f $folder.Name) -Force
|
||||||
$buildArgs = "-c", $folder.FullName, "-s", $sourceFile.FullName, "-o", "./build/", "-q"
|
$buildArgs = "-c", $folder.FullName, "-s", $sourceFile.FullName, "-o", "./build/", "-q"
|
||||||
Start-Process -FilePath ('./v{0}/Microsoft-Win32-Content-Prep-Tool-{0}/IntuneWinAppUtil.exe' -f $version) -ArgumentList "$buildArgs" -Wait
|
Start-Process -FilePath ('./v{0}/Microsoft-Win32-Content-Prep-Tool-{0}/IntuneWinAppUtil.exe' -f $version) -ArgumentList "$buildArgs" -Wait
|
||||||
Move-Item -Path ("./build/{0}.intunewin" -f ($sourceFile.Name -split "\.")[0]) -Destination ("./build/{0}.intunewin" -f $folder.Name)
|
Move-Item -Path ("./build/{0}.intunewin" -f ($sourceFile.Name -split "\.")[0]) -Destination ("./build/{0}.intunewin" -f $folder.Name)
|
||||||
|
Loading…
Reference in New Issue
Block a user