我有这个脚本
$a = "<style>"
$a = $a + "TABLE{border-width: 1px;border-style: solid;border-color:black;}"
$a = $a + "Table{background-color:#ffffff;border-collapse: collapse;}"
$a = $a + "TH{border-width:1px;padding:0px;border-style:solid;border-color:black;}"
$a = $a + "TR{border-width:1px;padding-left:5px;border-style:solid;border-color:black;}"
$a = $a + "TD{border-width:1px;padding-left:5px;border-style:solid;border-color:black;}"
$a = $a + "</style>"
dir -path "\\server\loctation$" |where {$_.mode -match "d"} | select-object name, creationtime, lastwritetime, Owner| ConvertTo-Html -head $a | Out-File "\\server\location\drivelistings.html"
它输出结果很好。
但我想在表的末尾添加一列,其中包含前缀数据。
当前页面输出:
Name Creation Time LateWriteTime Owner
Test 2013/04/12 2013/04/12
Test2 2013/04/12 2013/04/12
Test3 2013/04/12 2013/04/12
我想使用成员列手动输入所有者。此数据不会更改,文件夹结构也不会更改。
例如:
Name Creation Time LateWriteTime Owner
Test 2013/04/12 2013/04/12 user1
Test2 2013/04/12 2013/04/12 user2
Test3 2013/04/12 2013/04/12 user3
有什么办法可以做到这一点?