diff options
Diffstat (limited to 'ds9/win/install.vbs')
-rw-r--r-- | ds9/win/install.vbs | 6 |
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 |