Alpha Five V6 Manual

User Manual:

Open the PDF directly: View PDF PDF.
Page Count: 3

Alpha Five v6 - Manual
Description
Develop custom desktop and web applications quickly and easily with Alpha Five V6. With no
programming skills required, Version 6's application scripting and web components allow you to take
control of your information helping you build applications for your particular business or organisation.
Alpha Five V6 works with a built-in DBF engine and MySQL, Oracle, SQL Server, DB2 and ODBC sources.
Package Notes/Comments Copy to all Notes/Comments sections in SCCM creating package.
Single license package. License key required to activate product. For first time run, choose "Run as
Administrator".
Source file location (share or weblink):
\\server\share\installs\Alpha 5 V6
Copy source files to Software Vault share location:
\\server\share\Sources\Software Vault\Alpha 5 V6
Create a PowerShell script, Alpha_Five_V6_Uninstall.ps1, to remove Alpha Five v6.
Import setup.exe into SCCM Client Applications as a Script Installer.
Installation program:
"setup.exe"
Uninstall program:
Powershell.exe executionpolicy Bypass file "Alpha_Five_V6_Uninstall.ps1"
Detection Method: Registry key exists.
Registry hive: HKEY_LOCAL_MACHINE
Registry key: SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Alpha Five V6
User Experience
Installation behavior: Install for user
Logon requirement: Only when a user is logged on
Installation program visibility: Normal
Enforce specific behavior: No specific action
Dependencies (list redistributables, runtime, etc,. available for install with SCCM):
None
Notes
GUID: Alpha Five V6 (32-bit)
Registry key or file path (used to check if application is installed):
HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Alp
ha Five V6
UninstallString (determines uninstall method to use):
C:\PROGRA~2\A5V6\UNWISE.EXE C:\PROGRA~2\A5V6\INSTALL.LOG
DisplayName: Alpha Five V6
DisplayVersion: 5.1 build 1532
Publisher: Alpha Software Inc.
Alpha_Five_V6_Uninstall.ps1
<#
.SYNOPSIS
SCCM Uninstall program for Alpha Five v6
.DESCRIPTION
Remove the following component(s) from Window 7 x64 systems:
- Uninstall Alpha Five v6
.NOTES
FileName: Alpha_Five_V6_Uninstall.ps1
Author: Jerry Senff
Updated: 02/28/2019
Comments: Powershell.exe executionpolicy bypass file
"Alpha_Five_V6_Uninstall.ps1"
#>
# Error file
$startLocation = Get-Location
$err=@()
$errorpath = '\ErrorLogs\Alpha_Five_V6_Uninstall.txt'
$errFileLocation = ${env:SystemDrive} + $errorpath
# Uninstall variables - Alpha Five v6
$AlphaFive = 'Alpha Five v6'
$AlphaFiveUninstall = ${env:SystemDrive} + '\PROGRA~2\A5V6\UNWISE.EXE'
$AlphaFiveParams = ${env:SystemDrive} + '\PROGRA~2\A5V6\INSTALL.LOG'
$AlphaFiveRegkey =
'HKLM:SOFTWARE\Wow6432Node\Microsoft\Windows\CurrentVersion\Uninstall\Alpha Five V6'
Write-Host ""
Write-Host
"****************************************************************************"
Write-Host ""
Write-Host "$AlphaFive Uninstaller"
Write-Host ""
Write-Host "Purpose: Remove the following components:"
Write-Host " - Uninstall $AlphaFive"
Write-Host ""
# Uninstall Alpha Five v6
set-location $startLocation
Write-Host
"****************************************************************************"
Write-Host ""
Write-Host "Checking for $AlphaFive installation..."
Write-Host ""
If ((Test-Path -Path $AlphaFiveRegkey) -eq 'True') # Check uninstall registry key or
install path
{
Write-Host " $AlphaFive is installed."
Write-Host ""
Write-Host "Uninstalling $AlphaFive..."
Write-Host ""
Write-Host "Command: $AlphaFiveUninstall $AlphaFiveParams"
Write-Host ""
Start-Process -FilePath $AlphaFiveUninstall -ArgumentList $AlphaFiveParams -
ErrorVariable +err -Verb Open -Wait
Write-Host ""
Write-Host " $AlphaFive uninstall complete."
Write-Host ""
}
Else
{
Write-Host " $AlphaFive is not installed."
Write-Host ""
}
Start-Sleep 5
$err | Out-File $errFileLocation
Write-Host "*** Log file location = " $errFileLocation " ***"
Start-Sleep 5

Navigation menu