| VoicepackUpdaterIsProcessElevationRequired Property |
Gets a value indicating whether process elevation is required to update the Voicepack.
Namespace: Bevelstone.EditVoicepack.InstallerApiAssembly: Bevelstone.EditVoicepack.InstallerApi (in Bevelstone.EditVoicepack.InstallerApi.dll) Version: 5.0.77.0 (5.0.77.0)
Syntaxpublic bool IsProcessElevationRequired { get; }Public ReadOnly Property IsProcessElevationRequired As Boolean
Get
public:
property bool IsProcessElevationRequired {
bool get ();
}member IsProcessElevationRequired : bool with get
Return Value
Type:
Booleantrue if process elevation is required; otherwise,
false.
Remarks
If process elevation is required EditVoicepack will display the UAC dialog when
Execute is called. If you call Execute
from a graphical userinterface it is recommended to show the "UAC security shield icon" where the
call is initiated from (typically a button or menu item). This is typically not needed in installation
programs as Windows will run these elevated.
Process elevation is currently required unless one of the following conditions are met:
- The system does not support UAC (for example Windows XP).
- UAC is disabled.
- The process is already elevated.
- The current user has write access The Sound\ATC folder as well as the files contained in Sound\ATC.
Notice this list is subject to change even after you ship your product as other 3rd party products
might have placed a newer version of the EditVoicepack Updater on the system.
See Also