Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

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?

Ausgewählte Lösung

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

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

Diese Antwort im Kontext lesen 👍 0

Alle Antworten (2)

more options

Ausgewählte Lösung

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.