summaryrefslogtreecommitdiff
path: root/scripts/uninstall.vbs
diff options
context:
space:
mode:
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