gpt4 book ai didi

powershell - 使用 powershell 脚本添加自定义 header

转载 作者:行者123 更新时间:2023-12-02 22:32:09 30 4
gpt4 key购买 nike

我正在尝试编写一个 powershell 脚本,我可以使用它在 IIS 中添加自定义 http header ,而不是手动添加它们。到目前为止,我没有任何运气在网上找到任何东西。有人可以指点我正确的方向吗?

谢谢

最佳答案

我能够使用以下方法成功添加 2 个或更多标题:

Add-WebConfigurationProperty -PSPath MACHINE/WEBROOT/APPHOST `
-Name . -Filter system.webServer/httpProtocol/customHeaders `
-AtElement @{name = "X-Frames-Options" ; value = 'sameorigin' }

Add-WebConfigurationProperty -PSPath MACHINE/WEBROOT/APPHOST `
-Name . -Filter system.webServer/httpProtocol/customHeaders `
-AtElement @{name = "Cache-Control" ; value = 'private, no-cache, no-store, max-age=0'}

关于powershell - 使用 powershell 脚本添加自定义 header ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39127461/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com