aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/installer/customactions.js
diff options
context:
space:
mode:
Diffstat (limited to 'installer/customactions.js')
-rw-r--r--installer/customactions.js4
1 files changed, 1 insertions, 3 deletions
diff --git a/installer/customactions.js b/installer/customactions.js
index a7ebc95d..30854ee7 100644
--- a/installer/customactions.js
+++ b/installer/customactions.js
@@ -93,9 +93,7 @@ function EvaluateWireGuardServices() {
function RemoveConfigFolder() {
try {
- var path = wsh.RegRead("HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows NT\\CurrentVersion\\ProfileList\\S-1-5-18\\ProfileImagePath");
- path = wsh.ExpandEnvironmentStrings(path.toString());
- fso.DeleteFolder(fso.BuildPath(path, "AppData\\Local\\WireGuard"), true);
+ fso.DeleteFolder(fso.BuildPath(Session.Property("CommonAppDataFolder"), "WireGuard"), true);
} catch(e) {
logMessage("Failed to remove configuration on uninstall: " + e.message);
}