需要使用 Powershell 协助写入 Machine.config

Writing to Machine.config using Powershell assistance required

Powershell 和 Machine.config 帮助

我是 powershell 的新手,如果可能的话我需要快速掌握(我相信这是一个常见的句子)。我正在编写一个优化服务器成为网络服务器的脚本,我需要使用 powershell 写入 machine.configs。我也有所有需要的优化,我不需要那部分的帮助。

我已经想了一个多月了,也谷歌了很多,我真的找不到解决办法,所以我想去找专家。希望我也能在 powershell 中取得好成绩并在某个时候做出贡献。

到目前为止,我已经取得了令人难以置信的进展,并且已经完成了所有优化和大部分 powershell,但我仍然停留在脚本的一部分上

  1. 我需要得到机器有多少个cpu核,我有这行

    $属性 = "numberOfCores" 获取-WmiObject -class win32_processor -属性 $属性 | Select-对象-属性 $属性

这告诉我我有多少个内核,这正是我需要的,但是一旦我知道机器有多少个内核,我就需要写入 machine.config 一些值。

在system.web下,它有这些值

<system.web>
    <processModel autoConfig="true"/>

我需要用下面列出的值覆盖已经存在的值

<system.web>
    <processModel maxWorkerThreads="370" maxIoThreads="370" minWorkerThreads="50" minIoThreads="50"/>
<httpRuntime minFreeThreads="90" minLocalRequestFreeThreads="80"/>

除了在那儿写那一行(我不知道该怎么做),我需要将 minfreethreads 乘以 CPU 内核的数量并将该值写在 90 和minLocalRequestFreeThreads 相同 80

因此,例如,如果计算看到 2 个核心,它将写入以下行

<processModel maxWorkerThreads="370" maxIoThreads="370" minWorkerThreads="50" minIoThreads="50"/>
<httpRuntime minFreeThreads="180" minLocalRequestFreeThreads="160"/>

在那之后,我需要添加

<system.net>
<connectionManagement>
<add address = "*" maxconnection = "200" />
</connectionManagement>
</system.net>

和以前一样,然后用cpu核和200的相乘值替换200。我希望这不是问题太多,我不知道如何写到xml 文件,然后还乘以核心并取该值并将其添加到那里?

所以会这样

<system.net>
<connectionManagement>
<add address = "*" maxconnection = "400" />
</connectionManagement>
</system.net>

谁能帮帮我?

编辑 1/4

这是我目前的代码,我已经很远了,我正在逐行处理它,所以有些地方可能行不通,但我认为我在正确的道路上

$xml = New-Object XML
$xml.Load("C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config")
$Path = "C:\Windows\Microsoft.Net\Framework\V2.0.50727\config"
$File = "machine.config"
$current_path = $path + "\" + $file
$text = (get-content ($current_path))
$xml = [XML] (get-content ($current_path))
$p.RemoveAttribute("autoConfig")
$p = $xml.configuration."system.web".processModel
$p.SetAttribute("maxWorkerThreads", "370")
$p.SetAttribute("maxIoThreads", "370")
$p.SetAttribute("minWorkerThreads", "50")
$p = $xml.configuration."system.web".httpRunTime
$p.SetAttribute("minFreeThreads", "90")
$p.SetAttribute("minLocalRequestFreeThreads", "80")
$processor = (Get-CimInstance Win32_processor -Property NumberOfLogicalProcessors | Select -ExpandProperty "NumberOfLogicalProcessors")
$minFT = $processor * 90
$minFT = [string]$minFT
$minFT * 2
$p.SetAttribute("minFreeThreads", [string]$minFT)

$xml_content = [xml]@'
  <system.net>
    <connectionManagement>
      <add address = "*" maxconnection = "200" />
    </connectionManagement>
  </system.net>
'@

编辑 1/11

实际上它失败了,消息

方法调用失败,因为 [System.Object[]] 不包含名为 'op_Multiply' 的方法。 在 C:\Install\Pre4.ps1:124 char:1 + $httpRuntimexml.setAttribute("minFreeThreads",90 * $numberOfCores) + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~ + CategoryInfo:InvalidOperation:(op_Multiply:字符串)[],RuntimeException + FullyQualifiedErrorId : MethodNotFound

方法调用失败,因为 [System.Object[]] 不包含名为 'op_Multiply' 的方法。 在 C:\Install\Pre4.ps1:125 char:1 + $httpRuntimexml.setAttribute("minLocalRequestFreeThreads",80 * $numberOfCores) + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:InvalidOperation:(op_Multiply:字符串)[],RuntimeException + FullyQualifiedErrorId : MethodNotFound

方法调用失败,因为 [System.Object[]] 不包含名为 'op_Multiply' 的方法。 在 C:\Install\Pre4.ps1:130 char:45 + + ~~~~~~~~~~~~~~~~~~~~ + CategoryInfo:InvalidOperation:(op_Multiply:字符串)[],RuntimeException + FullyQualifiedErrorId : MethodNotFound

----- 脚本 ------

$numberOfCores = Get-WmiObject -class win32_processor numberOfCores | Select-Object -ExpandProperty numberOfCores
$path = "c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config"
[xml]$machineConfig = Get-Content $path
$node = $machineConfig.SelectNodes("/configuration/system.web") 
$node.RemoveChild(($node.SelectSingleNode("processModel"))) | Out-Null
$processModelxml = $machineConfig.CreateElement("processModel")
$processModelxml.setAttribute("maxWorkerThreads",370)
$processModelxml.setAttribute("maxWorkerThreads",370)
$processModelxml.setAttribute("maxIoThreads",370)
$processModelxml.setAttribute("minWorkerThreads",50)
$processModelxml.setAttribute("minIoThreads",50)
$node.AppendChild($processModelxml) | Out-Null
$httpRuntimexml = $machineConfig.CreateElement("httpRuntime")
$httpRuntimexml.setAttribute("minFreeThreads",90 * $numberOfCores)
$httpRuntimexml.setAttribute("minLocalRequestFreeThreads",80 * $numberOfCores)
$node.AppendChild($httpRuntimexml) | Out-Null
[xml]$systemnetxml = @"
  <system.net>
    <connectionManagement>
      <add address = "*" maxconnection = "$(200 * $numberOfCores)" />
    </connectionManagement>
  </system.net>
"@
$machineConfig.configuration.AppendChild($machineConfig.ImportNode($systemnetxml."system.net",$true)) | Out-Null
$machineConfig.Save("c:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machine.config")

还没有玩过 XML 和 PowerShell,但这似乎可以满足您的需求。将文件加载为 XML。删除有问题的两个元素,以便我们可以根据需要构建它们。最后,我们在配置元素下添加元素和相应的详细信息。

如果在提交之前对值进行乘法运算,您将看到几个涵盖该乘法运算的实例。在您的示例中,您正在对一个字符串进行乘法运算,而该字符串只会复制它。考虑以下两个示例。

PS C:\Users\mcameron> "200" * 2
200200

PS C:\Users\mcameron> 200 * 2
400

按照您认为合适的方式更改您的路径。你会在最后看到我写到一个临时位置。我敦促你做同样的测试。

$numberOfCores = Get-WmiObject -class win32_processor numberOfCores | Select-Object -ExpandProperty numberOfCores


$path = "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\Config\machineTest.config"
[xml]$machineConfig = Get-Content $path

# Remove the elements we are going to be replacing
$node = $machineConfig.SelectNodes("/configuration/system.web") 
$node.RemoveChild(($node.SelectSingleNode("processModel"))) | Out-Null

# Create the element processModel and set attributes
$processModelxml = $machineConfig.CreateElement("processModel")
$processModelxml.setAttribute("maxWorkerThreads",370)
$processModelxml.setAttribute("maxWorkerThreads",370)
$processModelxml.setAttribute("maxIoThreads",370)
$processModelxml.setAttribute("minWorkerThreads",50)
$processModelxml.setAttribute("minIoThreads",50)
$node.AppendChild($processModelxml) | Out-Null

# Create the element httpRuntime and set attributes. Adjust values based on number of cores
$httpRuntimexml = $machineConfig.CreateElement("httpRuntime")
$httpRuntimexml.setAttribute("minFreeThreads",(90 * $numberOfCores))
$httpRuntimexml.setAttribute("minLocalRequestFreeThreads",(80 * $numberOfCores))
$node.AppendChild($httpRuntimexml) | Out-Null

# Build the <system.net> section
[xml]$systemnetxml = @"
  <system.net>
    <connectionManagement>
      <add address = "*" maxconnection = "$(200 * $numberOfCores)" />
    </connectionManagement>
  </system.net>
"@

# Import into config
$machineConfig.configuration.AppendChild($machineConfig.ImportNode($systemnetxml."system.net",$true)) | Out-Null

# Save changes
$machineConfig.Save("c:\temp\testing.xml")
# Change back to $path to write back to original file.

您还将看到 Out-Null 用于抑制正在创建的元素的输出。它不会更改文件发生的情况。