我有一个很好的工作PowerShell函数叫做PSO。 PSO功能基于给定的输入/参数搜索一个或多个特定的窗口过程。当一个进程名与searchparameter匹配时,它会将进程所有者和更多信息导出/附加到csv文件。到目前为止一切都很好。
现在我真的想在PowerShell写入csv的每一行中添加日期和时间信息。我一直在苦苦挣扎一段时间。我在VBScript中有类似的工作,但我真的开始喜欢PowerShell,喜欢看到和了解更多。
在PSO功能下面,我假设这是应该生成和添加日期和时间的区域......对吗?
Function Get-PSO($searchString)
# http://powershell.com/cs/blogs/tips/archive/2009/12/17/get-process-owners.aspx
# Usage: Get-PSO * OR Get-PSO exp*,*paint*,calc*,notepad*
# Sample Export2csv: Get-PSO notepad* | Export-CSV $env:userprofile\desktop\export.csv -Append
# A few date/time formats for later use... i hope
$date=(Get-Date -format "yyyy-MM-d")
$time=(Get-Date -format "HH:mm:ss")
$datetime=(Get-Date -format "yyyy-MM-d HH:mm")
$foundProcess = ps $searchString -ea silentlycontinue
if($foundProcess -eq $null) { return; }
$foundprocess | % {
gwmi Win32_Process -Filter ("Handle={0}" -f $_.id ) |
% { Add-Member -TypeName Type -InputObject $_ -MemberType NoteProperty -Name Owner -Value ($_.GetOwner().User) -PassThru } |
# See below my last attempt to get this tot work
# % { Add-Member -TypeName Type -InputObject $_ -MemberType NoteProperty -Name Owner -Value ($_.GetOwner().User) -MemberType NoteProperty -Name Date -Value $date -PassThru } |
select Name, Handle, Owner, Type
}
当我运行该功能时; Get-PSO记事本* | Export-CSV $ env:userprofile \ desktop \ export.csv -Append)我得到以下结果:
名称;句柄;所有者;类型
记事本++ exe文件; 7736;戴夫;
我喜欢添加日期/时间,结果应该类似于:
名称;句柄;所有者;日期;时间;日期时间;类型
notepad ++。exe; 7736; Dave; 5-4-2015; 20:07; 5-4-2015 20:07;
任何?一些帮助或想法将非常感激。
答案 0 :(得分:4)
这是你在找什么?
Function Get-PSO($searchString) {
# http://powershell.com/cs/blogs/tips/archive/2009/12/17/get-process-owners.aspx
# Usage: Get-PSO * OR Get-PSO exp*,*paint*,calc*,notepad*
# Sample Export2csv: Get-PSO notepad* | Export-CSV $env:userprofile\desktop\export.csv -Append
# A few date/time formats for later use... i hope
$date=(Get-Date -format "yyyy-MM-d")
$time=(Get-Date -format "HH:mm:ss")
$datetime=(Get-Date -format "yyyy-MM-d HH:mm")
$foundProcess = ps $searchString -ea silentlycontinue
if($foundProcess -eq $null) { return; }
$foundprocess | % {
gwmi Win32_Process -Filter ("Handle={0}" -f $_.id ) |
% {
Add-Member -InputObject $_ -MemberType NoteProperty -Name Owner -Value ($_.GetOwner().User) -PassThru
Add-Member -InputObject $_ -MemberType NoteProperty -Name Date -Value $date -PassThru
Add-Member -InputObject $_ -MemberType NoteProperty -Name Time -Value $time -PassThru
Add-Member -InputObject $_ -MemberType NoteProperty -Name DateTime -Value $datetime -PassThru
Add-Member -InputObject $_ -MemberType NoteProperty -Name Type -Value "" -PassThru
} |
select Name, Handle, Owner, Date, Time, DateTime, Type
}
}
每个Add-Member
命令都会为各个结果添加一个属性。 Name
参数将是导出的CSV中的列名称,Value
参数将是值。 select
命令(实际为Select-Object
)将结果过滤到列出的属性子集。
或者,您可以使用Select-Object和Calculated Properties完成所有这些操作。
Function Get-PSO($searchString) {
# http://powershell.com/cs/blogs/tips/archive/2009/12/17/get-process-owners.aspx
# Usage: Get-PSO * OR Get-PSO exp*,*paint*,calc*,notepad*
# Sample Export2csv: Get-PSO notepad* | Export-CSV $env:userprofile\desktop\export.csv -Append
# A few date/time formats for later use... i hope
$date=(Get-Date -format "yyyy-MM-d")
$time=(Get-Date -format "HH:mm:ss")
$datetime=(Get-Date -format "yyyy-MM-d HH:mm")
$foundProcess = ps $searchString -ea silentlycontinue
if($foundProcess -eq $null) { return; }
$foundprocess | % {
gwmi Win32_Process -Filter ("Handle={0}" -f $_.id ) |
select-Object Name, Handle,
@{Name='Owner'; Expression={$_.GetOwner().User}},
@{Name='Date'; Expression={$date}},
@{Name='Time'; Expression={$time}},
@{Name='DateTime'; Expression={$datetime}},
@{Name='Type'; Expression={''}}
}
}