powershell を使用して DTSX ファイル内の特定のフィールドを選択するにはどうすればよいですか? その値を変更できるように。
以下に例を示します。
<?xml version="1.0" encoding="UTF-8"?>
<DTS:Executable xmlns:DTS="www.microsoft.com/SqlServer/Dts" DTS:ExecutableType="SSIS.Package.2">
..
<DTS:Configuration>
..
<DTS:Property DTS:Name="ConfigurationType">1</DTS:Property>
<DTS:Property DTS:Name="ConfigurationString">change me</DTS:Property>
..
</DTS:Configuration>
..
</DTS:Executable>
フィールドへのアクセス方法を教えてください。私は何かを印刷しようとしてきました:
$xml.Executable.Configuration.ConfigurationString
また
$xml.Executable.Configuration.Property.ConfigurationString
しかし、それは何も印刷しません。
よろしくお願いいたします。