mirror of
https://github.com/kennethreitz-archive/pyinstaller.git
synced 2026-06-05 23:50:17 +00:00
72bc2b45f7
git-svn-id: http://svn.pyinstaller.org/trunk@43 8dd32b29-ccff-0310-8a9a-9233e24343b1
62 lines
2.1 KiB
Python
62 lines
2.1 KiB
Python
#! /usr/bin/env python
|
|
# Copyright (C) 2005, Giovanni Bajo
|
|
# Based on previous work under copyright (c) 1999, 2002 McMillan Enterprises, Inc.
|
|
#
|
|
# This program is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU General Public License
|
|
# as published by the Free Software Foundation; either version 2
|
|
# of the License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
|
from win32com.shell import shell
|
|
import win32api
|
|
import pythoncom
|
|
import os
|
|
import sys
|
|
|
|
def CreateShortCut(Path, Target,Arguments = "", StartIn = "", Icon = ("",0), Description = ""):
|
|
# Get the shell interface.
|
|
sh = pythoncom.CoCreateInstance(shell.CLSID_ShellLink, None, \
|
|
pythoncom.CLSCTX_INPROC_SERVER, shell.IID_IShellLink)
|
|
|
|
# Get an IPersist interface
|
|
persist = sh.QueryInterface(pythoncom.IID_IPersistFile)
|
|
|
|
# Set the data
|
|
sh.SetPath(Target)
|
|
sh.SetDescription(Description)
|
|
sh.SetArguments(Arguments)
|
|
sh.SetWorkingDirectory(StartIn)
|
|
sh.SetIconLocation(Icon[0],Icon[1])
|
|
# sh.SetShowCmd( win32con.SW_SHOWMINIMIZED)
|
|
|
|
# Save the link itself.
|
|
persist.Save(Path, 1)
|
|
print "Saved to", Path
|
|
|
|
if __name__ == "__main__":
|
|
try:
|
|
TempDir = os.environ["TEMP"]
|
|
WinRoot = os.environ["windir"]
|
|
|
|
Path = TempDir
|
|
Target = os.path.normpath(sys.executable)
|
|
Arguments = ""
|
|
StartIn = TempDir
|
|
Icon = ("", 0)
|
|
Description = "py made shortcut"
|
|
|
|
CreateShortCut(Path,Target,Arguments,StartIn,Icon,Description)
|
|
except Exception, e:
|
|
print "Failed!", e
|
|
import traceback
|
|
traceback.print_exc()
|
|
raw_input("Press any key to continue...")
|