summaryrefslogtreecommitdiffstats
path: root/ds9/win
diff options
context:
space:
mode:
authorWilliam Joye <wjoye@cfa.harvard.edu>2017-05-10 15:05:25 (GMT)
committerWilliam Joye <wjoye@cfa.harvard.edu>2017-05-10 15:05:25 (GMT)
commit20ae1e5f59061561aee4dd63f1f297e82bdc3300 (patch)
tree353d541ca6312488d2badb2cc10f8be284d57a4c /ds9/win
parent6e231681bd2ecf07f097d808ddd2be7626e97ef7 (diff)
parent423af0cc5eaf12162c1b934e34d3d489027e498d (diff)
downloadblt-20ae1e5f59061561aee4dd63f1f297e82bdc3300.zip
blt-20ae1e5f59061561aee4dd63f1f297e82bdc3300.tar.gz
blt-20ae1e5f59061561aee4dd63f1f297e82bdc3300.tar.bz2
Merge branch 'master' of github.com:SAOImageDS9/SAOImageDS9
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