1

我有一个看起来像这样的批处理文件:

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"

似乎没有任何工作......我做错了什么?

4

2 回答 2

2

你与报价如此接近......

%windir%\system32\cmd.exe /c "netsh interface dump > net.cfg"
于 2014-08-14T20:53:19.983 回答
0

试试这个:

%windir%\System32\cmd.exe /k netsh interface dump > net.cfg

资料来源:http ://www.tech-recipes.com/rx/257/cmd-create-shortcut-to-command-linedos-programs/

于 2014-08-14T20:04:04.807 回答