CBDisk.Uninstall method
Filter:
Pascal C++ (Lib) C++ (VCL) C++ (.NET) C# VB.NETOverview
Uninstalls the drivers and helper DLLs from the system
Declaration
[Pascal]
class procedure Uninstall(
CabFileName : TCBString;
ProductName : AnsiString;
var RebootNeeded : DWORD);
type TCBString = {$ifdef UNICODE}UnicodeString{$else}WideString{$endif};
[C++ (Lib)]
static void Uninstall(
const wchar_t * CabFileName,
const char * ProductName,
unsigned long *RebootNeeded);
[C++ (VCL)]
static void __fastcall Uninstall(
TCBString CabFileName,
AnsiString ProductName,
unsigned long & RebootNeeded);
[C++ (.NET)]
static void Uninstall(
String* CabFileName,
String* ProductName,
UInt32 &RebootNeeded);
[C#]
static void Uninstall(
string CabFileName,
string ProductName,
ref UInt32 RebootNeeded)
[VB.NET]
Shared Sub Uninstall(
ByVal CabFileName As String,
ByVal ProductName As String,
ByRef RebootNeeded As UInt32)
Parameters
- CabFileName - Path to .cab file, which was used to install the driver and helper DLLs.
- ProductName - the ProductName string that identifies installation of the driver by your application
- RebootNeeded - On return this parameter specifies if system restart is necessary for deinstallation to be successful. Flags (described below) tell the application, which modules requested system restart.
Values of RebootNeeded
|
Description
Use this function to uninstall the driver and helper DLLs from the system. ProductName is used to distinguish between installations of the package made by different applications and to prevent the situation when the package is installed by two applications and further deinstallation of one of them removes the package.
NOTE: you must NOT uninstall the driver and helper DLLs, if you upgrade the installation. In other words, use Uninstall method only to completely remove CallbackDisk from the system.
Read more about installing and uninstalling the drivers.
Call from...
This method may be called only from outside of callback / event handlers.
See also
Got questions or comments about this topic? Tell us about them.

