PowerShell 스크립트로 Windows 7에 CSV 파일을 만들려고합니다. 지금은 내가 이런 걸 가지고 코드를 실행 한 후 나는Windows 7에서 PowerShell로 CSV 파일에 끼어 들기
$dd = @(Get-Date -Format d)
$report = @()
$index = 0
foreach ($Item in $dd) {
[array]$report += [PSCustomObject]@{
Date = $dd[$index]
}
$index++
}
$report | Export-Csv -Path "C:\Users\Abby\Desktop\test.txt" -NoTypeInformation
있습니다
"IsReadOnly","IsFixedSize","IsSynchronized","Keys","Values","SyncRoot","Count" "False","False","False","System.Collections.Hashtable+KeyCollection","System.Collections.Hashtable+ValueCollection","System.Object","5"
을하지만이 같은 적절한 CSV 파일을 원하는 :
"Date" "11/3/2017"
PowerShell을하여 가능 ?
귀하의 코드가 이해되지 않는다. '$ dd'는 현재 날짜 인 1 개의 값만을 포함합니다. – Ashigore