Jump to content

Recommended Posts

Posted (edited)

Hi,

FileCreateShortcut ("C:templauncher-appl.exe parameter1", ...)
 
Because there is a space before "parameter1", it keeps the quotation marks as part of the string.
 
When I click in the shortcut, it reports an error because of the quotations marks. If I remove them by editing the shortcut, it launches without errors
 
 
How can I resolve the issue?
 
Thanks
Edited by LittleBob
Posted

Please show us the exact function call you're using for FIleCreateShortcut.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Posted

FileCreateShortcut ("C:templauncher-appl.exe LibreOffice", @DesktopDir&"LibreOffice.lnk","T:appsDeskLibreOfficePortable","","",@ScriptDir&"LibreOfficelo.ico", "", "0")

 

What it creates as a target in shortcut properties : "C:templauncher-appl.exe LibreOffice"

What I need :                                                           C:templauncher-appl.exe LibreOffice

Posted

What do you get if you change "C:templauncher-appl.exe LibreOffice" to @TempDir & 'launcher-apple.exe LibreOffice'?

 

In the futur, I will use different target paths so I need a general fix and not just a fix for this issue. But thanks anyway.

There surely someone who had a similar issue. Extra parameters after a .exe is common.

  • Moderators
Posted (edited)

LibreOffice is a command line argument passed to launcher-appl.exe.

All arguments are to be put in parameter 4 of of that function.

The OS interprets the spaces as the path, and knows it has to wrap the spaces in quotes in order for it to be read as a whole string.

To make things simple, you could do this:

; For readablity
Global $gszTmpLauncher = FileGetShortName(@TempDir & "\launcher-appl.exe")
Global $gszShrtLocation = @DesktopDir & "\LibreOffice.lnk"
Global $gszWorkingDir = "T:\apps\Desk\LibreOfficePortable"
Global $gszArgument = "LibreOffice"
Global $gszIcon = @ScriptDir & "\LibreOffice\lo.ico"
FileCreateShortcut($gszTmpLauncher, $gszShrtLocation, $gszWorkingDir, $gszArgument, Default, $gszIcon, Default, 0)

Edit:

Mind you, you could wrap All the paths with FileGetShortName(), I was only providing an example of what you could do to avoid quotes all together per your request... but if you do it correctly like above, the quotes won't matter.

Edited by SmOke_N

Common sense plays a role in the basics of understanding AutoIt... If you're lacking in that, do us all a favor, and step away from the computer.

Posted

Ok LOL...I feel stupid...

There is a target parameter ("args") directly within the autoit function:

FileCreateShortcut ( "file", "lnk" [, "workdir" [, "args" [, "desc" [, "icon" [, "hotkey" [, icon number [, state]]]]]]] )

Posted

 

LibreOffice is a command line argument passed to launcher-appl.exe.

All arguments are to be put in parameter 4 of of that function.

The OS interprets the spaces as the path, and knows it has to wrap the spaces in quotes in order for it to be read as a whole string.

To make things simple, you could do this:

; For readablity
Global $gszTmpLauncher = FileGetShortName(@TempDir & "\launcher-appl.exe")
Global $gszShrtLocation = @DesktopDir & "\LibreOffice.lnk"
Global $gszWorkingDir = "T:\apps\Desk\LibreOfficePortable"
Global $gszArgument = "LibreOffice"
Global $gszIcon = @ScriptDir & "\LibreOffice\lo.ico"
FileCreateShortcut($gszTmpLauncher, $gszShrtLocation, $gszWorkingDir, $gszArgument, Default, $gszIcon, Default, 0)

Thanks for the explanation!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...