如何创建批处理文件来运行命令?
我已经成功编写了此命令行:
c:\windows\system32\inetsrv\appcmd set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
我想创建一个批处理文件来执行此行。
请问有什么建议吗?
I've writen this command line successfully:
c:\windows\system32\inetsrv\appcmd set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
I want to create a batch file to execute this line.
Any suggestions please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个新的文本文档
将其重命名为“mybatfile.bat”
在提示“如果您更改文件扩展名,该文件可能会变得不可用。您确定要更改它吗?”
右键单击bat文件,“编辑”
输入您的命令:
Create a new text document
Rename it "mybatfile.bat"
Press yes when prompted "If you change a file name extension, the file might become unusable. Are you sure you want to change it?"
Right click on the bat file, "edit"
Put in your command:
在命令提示符下,您可以键入
然后享受您的 bat 文件。
这不是您可以在配置文件中的某个位置更改的设置,因此它是永久的吗?
Well at the command prompt you could type
then enjoy your bat file.
Is this not a setting you could change in a config file somewhere so it is permanent though?