diff options
author | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 19:41:46 (GMT) |
---|---|---|
committer | Steve Dower <steve.dower@microsoft.com> | 2015-10-31 19:41:46 (GMT) |
commit | 04a4316acc1bc4cfeb131517ddeac34f50c6c5c9 (patch) | |
tree | fd7b45293e194d1793af0fb9c688ba0c08c0d93b /Tools/msi/exe | |
parent | 940f6a8f11b5ef0f9fa85b0be4b95608efebb2e8 (diff) | |
download | cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.zip cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.tar.gz cpython-04a4316acc1bc4cfeb131517ddeac34f50c6c5c9.tar.bz2 |
Issue #25450: Updates shortcuts to start Python in installation directory.
Diffstat (limited to 'Tools/msi/exe')
-rw-r--r-- | Tools/msi/exe/exe.wxs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Tools/msi/exe/exe.wxs b/Tools/msi/exe/exe.wxs index dcbf646..154cee5 100644 --- a/Tools/msi/exe/exe.wxs +++ b/Tools/msi/exe/exe.wxs @@ -20,7 +20,8 @@ <Shortcut Id="python.exe" Target="[#python.exe]" Name="!(loc.ShortcutName)" - Description="!(loc.ShortcutDescription)" /> + Description="!(loc.ShortcutDescription)" + WorkingDirectory="InstallDirectory" /> <RemoveFolder Id="Remove_MenuDir" Directory="MenuDir" On="uninstall" /> <RegistryKey Root="HKMU" Key="[REGISTRYKEY]"> <RegistryValue Key="InstallPath\InstallGroup" Type="string" Value="!(loc.ProductName)" KeyPath="yes" /> |