1

我想制作从行中获取特定字符串的 Powershell 脚本。该字符串可能位于不同的行上。所以文本文件看起来像这样 - 第一个文件 -

[Bootstrap]
buildid=400m3(Build:9702)
ProductBuildid=9702
ProductCode={55E61709-D7D4-43C0-B45D-BFAF5C09A02D}
UpgradeCode={7C35B9AB-2CE3-4C18-BE7C-5B97EA089EB3}

第二个文件——

[Bootstrap]
ProductCode={2BB8FBB4-CFF9-434E-AA0A-40F5379C1602}

我需要在 ProductCode= 之后获取 MSI 代码

$openofficeSetup = "C:\Program Files (x86)\openoffice*\program\setup.ini"
if (Test-Path $openofficeSetup)
{
$openofficeMSI = Select-String "ProductCode=*" $openofficeSetup
$openofficeMSI = $openofficeMSI -Replace "*ProductCode=", ""
msiexec.exe /x $openofficeMSI /qn

带有 -Replace 的第 5 行是错误的。我不知道如何删除之前的所有内容。

PS N:\> echo $openofficeMSI
C:\Program Files (x86)\OpenOffice 4\program\setup.ini:4:ProductCode={55E61709-D7D4-43C0-B45D-BFAF5C09A02D}

我怎样才能摆脱除 MSI 代码之外的所有内容?

题外话:其他方法是在注册表 HKEY_LOCAL_MACHINE\SOFTWARE\Classes\Installer\Products\ 中搜索 MSI 代码,但使用 setup.ini 看起来更容易。

4

1 回答 1

1

我会使用 [regex]::Match 而不是选择字符串:

$openofficeSetup = Resolve-Path "C:\Program Files (x86)\openoffice*\program\setup.ini" 
if (Test-Path $openofficeSetup){
  $txt=[IO.File]::ReadAllText($openofficeSetup )
  $openofficeMSI = [regex]::Match($txt,'ProductCode=(.*)').Groups[1].Value
  msiexec.exe /x $openofficeMSI /qn
}
于 2013-10-08T11:34:37.370 回答