How to use the Service_Uninstall function from bindings

Find comprehensive JavaScript bindings.Service_Uninstall code examples handpicked from public code repositorys.

10
11
12
13
14
15
16
17
18
19
public install(serviceName: string, displayName: string, fileName: string): boolean {
    return addon.Service_Install(serviceName, displayName, fileName);
}

public uninstall(serviceName: string): boolean {
    return addon.Service_Uninstall(serviceName);
}

public isInstalled(serviceName: string): boolean {
    return addon.Service_IsInstalled(serviceName);
fork icon0
star icon0
watch icon0

+ 3 other calls in file

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)