diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-03-15 20:36:50 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-03-15 20:36:50 +0100 |
commit | 6e29eaaca0743e63ff367e128a35abd303000f29 (patch) | |
tree | fb7a5856b53fb2fa195793efc7f8c38d185b9f42 /scripts/uninstall.vbs | |
parent | 899cb94807a04dcd6e8b045c7d901d2852273345 (diff) | |
parent | 5eca20c9805ec489c6860c793ee66e82b79836d1 (diff) |
Merge branch 'feature/upstream' into develop
Diffstat (limited to 'scripts/uninstall.vbs')
-rw-r--r-- | scripts/uninstall.vbs | 4 |
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
|