1
我不知道是否有使用使用PowerShell的選擇對象cmdlet如何使用PowerShell選擇對象
這裏的時候,做一個子的方式時使用的子是我想要做榜樣
$sapFile = "C:\MyFile*.XML"
# Get the newest xml file
$newestFile = Get-ChildItem -Path $sapFile | Sort CreationTime | Select -Last 1
# get the contents of the xml file
[XML]$sapContent = Get-Content -Path $newestFile.FullName
$sapContent.DATA.CP | Select -Property CP_NO,MEN.Substring(0,4)
但是這不起作用。
感謝
謝謝,像魅力一樣工作 –