summaryrefslogtreecommitdiff
path: root/scripts/uninstall.vbs
diff options
context:
space:
mode:
authorJörg Frings-Fürst <debian@jff.email>2023-03-15 20:36:50 +0100
committerJörg Frings-Fürst <debian@jff.email>2023-03-15 20:36:50 +0100
commit6e29eaaca0743e63ff367e128a35abd303000f29 (patch)
treefb7a5856b53fb2fa195793efc7f8c38d185b9f42 /scripts/uninstall.vbs
parent899cb94807a04dcd6e8b045c7d901d2852273345 (diff)
parent5eca20c9805ec489c6860c793ee66e82b79836d1 (diff)
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'scripts/uninstall.vbs')
-rw-r--r--scripts/uninstall.vbs4
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/uninstall.vbs b/scripts/uninstall.vbs
index b392a46..ea02045 100644
--- a/scripts/uninstall.vbs
+++ b/scripts/uninstall.vbs
@@ -39,7 +39,7 @@ EnvPath = sh.RegRead(key3)
' wscript.echo "EnvPath= " & EnvPath
' Calculates strStartAt which cuts the strSearchFor value from the path
-' strSearchFor = ";C:\program files\intel\ipmirastools"
+' strSearchFor = ";C:\program files\sourceforge\ipmiutil"
strSearchFor = ";" & InstallLoc
newPath = EnvPath
iStartAt = "0"
@@ -54,7 +54,7 @@ If (strStartAt > "0") then
strTotalLen=len(newPath)
newPathLeft=left(newPath,iStartAt)
newPathRight=right(newPath, (strTotalLen-strSearchForLen-iStartAt))
- newPath=newPathLeft + newPathRight
+ newPath=newPathLeft + ";" + newPathRight
end if
' wscript.echo "newPath= " & newPath