如何创建批处理文件来运行命令?

发布于 2024-12-03 17:27:03 字数 230 浏览 1 评论 0原文

我已经成功编写了此命令行:

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兰花执着 2024-12-10 17:27:03
  1. 创建一个新的文本文档

  2. 将其重命名为“mybatfile.bat”

  3. 在提示“如果您更改文件扩展名,该文件可能会变得不可用。您确定要更改它吗?”

  4. 右键单击bat文件,“编辑”

  5. 输入您的命令:

c:\windows\system32\inetsrv\appcmd set config“默认网站”-section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
  1. Create a new text document

  2. Rename it "mybatfile.bat"

  3. Press yes when prompted "If you change a file name extension, the file might become unusable. Are you sure you want to change it?"

  4. Right click on the bat file, "edit"

  5. Put in your command:

c:\windows\system32\inetsrv\appcmd set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
浊酒尽余欢 2024-12-10 17:27:03

在命令提示符下,您可以键入

copy con myfile.bat 
c:\windows\system32\inetsrv\appcmd set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
"press F-6"

然后享受您的 bat 文件。

这不是您可以在配置文件中的某个位置更改的设置,因此它是永久的吗?

Well at the command prompt you could type

copy con myfile.bat 
c:\windows\system32\inetsrv\appcmd set config "Default Web Site" -section:requestFiltering -requestLimits.maxAllowedContentLength:157286400
"press F-6"

then enjoy your bat file.

Is this not a setting you could change in a config file somewhere so it is permanent though?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文