我有一个看起来像这样的批处理文件:
netsh interface dump > net.cfg
我想从快捷方式运行实际命令,所以我尝试了所有这些(在.lnk
快捷方式中):
%windir%\system32\netsh.exe interface dump > net.cfg
%windir%\system32\netsh.exe interface dump>net.cfg
%windir%\system32\netsh.exe "interface dump" > net.cfg
%windir%\system32\netsh.exe "interface dump > net.cfg"
%windir%\system32\cmd.exe /c start /min netsh interface dump > net.cfg
%windir%\system32\cmd.exe /c start /min netsh interface dump>net.cfg
%windir%\system32\cmd.exe /c start /min netsh "interface dump" > net.cfg
%windir%\system32\cmd.exe /c start /min netsh "interface dump > net.cfg"
似乎没有任何工作......我做错了什么?