summaryrefslogtreecommitdiffstats
path: root/ds9/win
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-05-09 21:33:31 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-05-09 21:33:31 (GMT)
commit423af0cc5eaf12162c1b934e34d3d489027e498d (patch)
tree48731f586c4bb4ed7bcd05ae2b062bcd108df272 /ds9/win
parent1bbcadbbf51acf6737841266505cb3a230ca690f (diff)
downloadblt-423af0cc5eaf12162c1b934e34d3d489027e498d.zip
blt-423af0cc5eaf12162c1b934e34d3d489027e498d.tar.gz
blt-423af0cc5eaf12162c1b934e34d3d489027e498d.tar.bz2
minor tweak of windows install
Diffstat (limited to 'ds9/win')
-rw-r--r--ds9/win/install.vbs6
1 files changed, 3 insertions, 3 deletions
diff --git a/ds9/win/install.vbs b/ds9/win/install.vbs
index 35a0a20..f1e28f1 100644
--- a/ds9/win/install.vbs
+++ b/ds9/win/install.vbs
@@ -3,13 +3,13 @@
'
'dim fso
'set fso = CreateObject("Scripting.FileSystemObject")
-'fso.CopyFolder "..\WZSE0.TMP","c:\SAOImage DS9",True
+'fso.CopyFolder "..\WZSE0.TMP","c:\SAOImageDS9",True
'
' Create a ds9 shortcut on the Desktop
'
set WshShell = CreateObject("WScript.Shell")
strDesktop = WshShell.SpecialFolders("Desktop")
-set oMyShortCut= WshShell.CreateShortcut(strDesktop+"\SAOImage DS9.lnk")
+set oMyShortCut= WshShell.CreateShortcut(strDesktop+"\SAOImageDS9.lnk")
oMyShortCut.WindowStyle = 7
-oMyShortCut.TargetPath = "c:\SAOImage DS9\ds9.exe"
+oMyShortCut.TargetPath = "c:\SAOImageDS9\ds9.exe"
oMyShortCut.Save