Fixes
This commit is contained in:
parent
28eb12c9d7
commit
1c12a0a516
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
||||
v1.8.6/*
|
||||
build/*.intunewin
|
||||
|
File diff suppressed because one or more lines are too long
11
apps/FortigateVPN/chectk.ps1
Normal file
11
apps/FortigateVPN/chectk.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!"
|
||||
}
|
Binary file not shown.
4
apps/FortigateVPN/config/vpnSettings.reg
Normal file
4
apps/FortigateVPN/config/vpnSettings.reg
Normal file
@ -0,0 +1,4 @@
|
||||
Windows Registry Editor Version 5.00
|
||||
|
||||
[HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Fortinet\FortiClient\Sslvpn]
|
||||
"WinDnsCacheService"=dword:00000002
|
0
apps/FortigateVPN/uninstall.ps1
Normal file
0
apps/FortigateVPN/uninstall.ps1
Normal file
@ -1,25 +1,25 @@
|
||||
# array of uninstall args
|
||||
$uninstallArgs = "/uninstall"," ","/quiet", "IGNOREDEPENDENCIES=ALL"
|
||||
$dotnetVersions = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like "Microsoft .NET*" }
|
||||
|
||||
foreach ($version in $dotnetVersions) {
|
||||
# update array index 1 with version id
|
||||
$uninstallArgs[1] = '"' + $version.IdentifyingNumber + '"'
|
||||
Write-Host "Uninstalling $($version.Name)... $("$uninstallArgs")"
|
||||
Start-Process -FilePath "msiexec.exe" -ArgumentList "$uninstallArgs" -Wait
|
||||
}
|
||||
|
||||
Write-Host "All Microsoft .NET versions uninstalled."
|
||||
|
||||
#$uri = "https://download.visualstudio.microsoft.com/download/pr/f1e7ffc8-c278-4339-b460-517420724524/f36bb75b2e86a52338c4d3a90f8dac9b/windowsdesktop-runtime-8.0.12-win-x64.exe"
|
||||
$uri = "https://download.visualstudio.microsoft.com/download/pr/136f4593-e3cd-4d52-bc25-579cdf46e80c/8b98c1347293b48c56c3a68d72f586a1/dotnet-runtime-8.0.12-win-x64.exe"
|
||||
$installerName =($uri -split "/")[-1]
|
||||
$installerPath = ('./bin/' + $installerName)
|
||||
if (-not (Test-Path -Path $installerPath)){
|
||||
Invoke-WebRequest -Uri $uri -OutFile $installerPath
|
||||
}
|
||||
|
||||
$installArgs = "/install","/quiet","/norestart"
|
||||
Start-Process -FilePath $installerPath -ArgumentList "$installArgs" -Wait
|
||||
|
||||
Write-Host ("Microsoft .NET versions installed: " + $installerName)
|
||||
# array of uninstall args
|
||||
$uninstallArgs = "/uninstall"," ","/quiet", "IGNOREDEPENDENCIES=ALL"
|
||||
$dotnetVersions = Get-WmiObject -Class Win32_Product | Where-Object { $_.Name -like "Microsoft .NET*" }
|
||||
|
||||
foreach ($version in $dotnetVersions) {
|
||||
# update array index 1 with version id
|
||||
$uninstallArgs[1] = '"' + $version.IdentifyingNumber + '"'
|
||||
Write-Host "Uninstalling $($version.Name)... $("$uninstallArgs")"
|
||||
Start-Process -FilePath "msiexec.exe" -ArgumentList "$uninstallArgs" -Wait
|
||||
}
|
||||
|
||||
Write-Host "All Microsoft .NET versions uninstalled."
|
||||
|
||||
#$uri = "https://download.visualstudio.microsoft.com/download/pr/f1e7ffc8-c278-4339-b460-517420724524/f36bb75b2e86a52338c4d3a90f8dac9b/windowsdesktop-runtime-8.0.12-win-x64.exe"
|
||||
$uri = "https://download.visualstudio.microsoft.com/download/pr/136f4593-e3cd-4d52-bc25-579cdf46e80c/8b98c1347293b48c56c3a68d72f586a1/dotnet-runtime-8.0.12-win-x64.exe"
|
||||
$installerName =($uri -split "/")[-1]
|
||||
$installerPath = ('./bin/' + $installerName)
|
||||
if (-not (Test-Path -Path $installerPath)){
|
||||
Invoke-WebRequest -Uri $uri -OutFile $installerPath
|
||||
}
|
||||
|
||||
$installArgs = "/install","/quiet","/norestart"
|
||||
Start-Process -FilePath $installerPath -ArgumentList "$installArgs" -Wait
|
||||
|
||||
Write-Host ("Microsoft .NET versions installed: " + $installerName)
|
||||
|
Loading…
Reference in New Issue
Block a user