diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-06-19 22:51:54 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-06-19 22:51:54 +0200 |
commit | a75ccaa9a52b79788eea5fccfe6c3fc3dfc5a81d (patch) | |
tree | fd9e7b4ead2ca237d5836c1ccceaf336310b39dc /scripts/uninstall.vbs | |
parent | e33cb500a5cefab12062415dd12b6192b59e5ae5 (diff) | |
parent | 06b8b4b51519bfcf8d210eb199e2eab09e0c6a64 (diff) |
Merge branch 'release/debian/3.1.9-1'debian/3.1.9-1
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
|