To uninstall the client app from the client machine:
-
Uninstall the application by selecting the Uninstall shortcut menu from the Windows Start | [appname]. The Uninstall shortcut menu and the [appname] menu are available only when the developer selected to create shortcuts for Start menu and App uninstall in the PowerServer Project painter > Application page > Basic tab.
If the Uninstall shortcut menu is not available, you can run the Uninstall.exe file in the application installation folder, for example, %AppData%\PBApps\Applications\localhost_salesdemo_cloud\Uninstall.exe (%AppData%\PBApps is the default installation location which is configurable when customizing the Cloud App Launcher).
Note: If the application folder name (which is named after [appname]) on the server has been changed manually, the application uninstall program will fail to run.
The uninstall program will automatically remove the following:
-
The application shortcuts on the desktop and the Windows start menu.
-
The application folder under %AppData%\PBApps\Applications, for example, %AppData%\PBApps\Applications\localhost_salesdemo_cloud.
The application folder contains all of the application files and any external files (such as UI theme files, DLLs/OCXs, images/videos, INIs etc.) that are deployed with PowerServer. This folder will be automatically deleted during the uninstall process.
However, the uninstall program will NOT automatically remove the following:
-
The registration information of DLL/OCX files in the Windows registry.
If you have selected to register the DLL/OCX files (using Regsvr32 by default), you will need to remove the registry information manually. Follow the instructions in step 3 below.
-
The runtime files under %AppData%\PBApps\Applications\Runtime.
The PowerBuilder Runtime files are used by all deployed apps on the client machine. You can manually delete the runtime files if they are no longer used.
-
The download folder under %AppData%\PBApps, for example, %AppData%\PBApps\Download.
This folder stores the download statistics of the app and runtime files. It can be manually deleted.
-
-
Uninstall the cloud app launcher by uninstalling Cloud App Launcher and Cloud App Launcher Service (if any) from Control Panel\Programs\Programs and Features.
If the public version of the cloud app launcher is installed, it can only be uninstalled by the administrator.
-
Remove the registry information of DLL/OCX files.
The registry information of DLL/OCX files (or any other files that are installed and registered on your own) will not be automatically removed during the application uninstall process.
To clean up the registry information of the DLL/OCX files, the user can write scripts (a sample shown below) and place them in a file (the file must be named ManualUninstall.cmd), place the ManualUninstall.cmd file under the same directory as the application target (.pbt) file, add ManualUninstall.cmd under Files preloaded as compressed packages or Files preloaded in uncompressed format in External Files in the PowerServer project painter > Application page, and then build and deploy the application.
The scripts in ManualUninstall.cmd will be automatically run when the application uninstall program is run. (If the file requires administrator rights to unregister, the user should run the application uninstall program with administrator rights.)
The user can also add scripts in ManualUninstall.cmd to clean up any other files that are installed and registered.
The following is a sample script for unregistering DLL/OCX files that are registered by Regsvr32:
set Driver=%~d0 set HOMEDIR=%~dp0 %Driver% cd %HOMEDIR% regsvr32 /u .\dllname regasm /unregister .\AssemblyName