Remove Protocol-Handler from path in cmd

352 views Asked by At

I have a Protocol-Handler for our CRM which is like: "auftragmcc:123456?sven"

So if you press on the link, it opens our Invoice-Software with the current invoice (123456) and the correct user (sven). Since we've changed something in the code of the invoice, we are still able to open it, but it won't go to the correct invoice.

in the registry id directs to an path on our server, which is similar on every device, and there is a batch which will execute the invoice-software with the correct start-parameters.

The batch looks like this:

@setLocal 
cd /d "Z:\PUBLIC\Auftrag_MegaCAD\"
start Auftrag.exe %1

but right now, in the %1 is the complete path with the handler instead of just the "123456?sven" part. How can i remove the "auftragmcc:" from this variable and just use the rest of it?

1

There are 1 answers

0
china.gaofeng On BEST ANSWER
set str=%1
set %str:auftragmcc:=%