CMD / Batch / Registry - String replace not working as expected?

后端 未结 2 1330
礼貌的吻别
礼貌的吻别 2021-01-18 12:08

I\'m having the most fun trying to replace a substring in one line of code for a windows registry key

[HKEY_CLASSES_ROOT\\PING\\shell\\open\\command]
@=\"C:\         


        
2条回答
  •  深忆病人
    2021-01-18 12:28

    String replace is only possible with variables not with parameters like %1.

    Something like this could be a starting point

    set "var=%1" & call var=%%var:ping://=%%
    

    In the registry it could look like

    ...
    [HKEY_CLASSES_ROOT\PING\shell\open\command]
    @="cmd /k ( set \"var=%1\" & call set var=%%var:ping://=%% & call set var=%%var:/=%% & call ping.exe %%var%% -t)"
    

提交回复
热议问题