This commit is contained in:
JonatanRek
2025-02-05 18:45:52 +01:00
parent 01137f3cb8
commit 8da045562c
65 changed files with 13163 additions and 12 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -0,0 +1,19 @@
$PathIntune = "$Env:Programfiles\itego\intune"
Start-Transcript -Path "$PathIntune\Log\FortigateVPN-install.log" -Force
$installerPath = ('./bin/' + $installerName)
$installArgs = "/install","/quiet","/norestart"
Start-Process -FilePath $installerPath -ArgumentList "$installArgs" -Wait
Write-Host ("Fortigate VPN Installed versions installed: " + $installerName)
$process = Start-Process -Path reg.exe -ArgumentList @("Import", ("{0}\config\vpnProfiles.reg" -f $PSScriptRoot)) -Wait -passthru
If($process.ExitCode)
{
Write-Host "Profiles Imported"
}
0
Stop-Transcript