diff options
author | Jörg Frings-Fürst <debian@jff.email> | 2023-03-15 20:36:27 +0100 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff.email> | 2023-03-15 20:36:27 +0100 |
commit | d602f4fb516292c297072bd924289eea37b45fa2 (patch) | |
tree | 7c30ed558709e44b7a9cbb6b9558b744c880a796 /scripts/uninstall.vbs | |
parent | 19b878add9337a1328f974d685c1b236e126e91a (diff) |
New upstream version 3.1.9upstream/3.1.9upstream
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
|