Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Learn More

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

Possible to pass application arguments in handlers.json?

more options

Following the deprecation of the FTP protocol in Firefox I have, as a workaround, set Excel to open all ftp links in Firefox for me. However, ideally, I would like a custom PowerShell script to handle all ftp links for me in Firefox. But to do so you would have to pass arguments to an application (in this case PowerShell) in handlers.json file. I guess that is not possible, or am I wrong here?

Following the deprecation of the FTP protocol in Firefox I have, as a workaround, set Excel to open all ftp links in Firefox for me. However, ideally, I would like a custom PowerShell script to handle all ftp links for me in Firefox. But to do so you would have to pass arguments to an application (in this case PowerShell) in handlers.json file. I guess that is not possible, or am I wrong here?

Gekozen oplossing

Solved it by converting my PowerShell script to an exe program with PS2EXE.

Now it can handle all ftp url:s in Firefox.

Dit antwoord in context lezen 👍 0

Alle antwoorden (2)

more options

Gekozen oplossing

Solved it by converting my PowerShell script to an exe program with PS2EXE.

Now it can handle all ftp url:s in Firefox.

more options

That sounds easiest and also allows control of the icon.

What I have done with VBScript files is added a command line to the Registry along the lines of the following (for a custom protocol):

wscript.exe "C:\myscript.vbs" "%1"

I assume PowerShell has a similar command line.