powershell 设置特定文件#powershell的时间戳

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了powershell 设置特定文件#powershell的时间戳相关的知识,希望对你有一定的参考价值。

# usage Set-FileTimeStamps -path C:Ref -date 7/1/11
# From https://blogs.technet.microsoft.com/heyscriptingguy/2012/06/01/use-powershell-to-modify-file-access-time-stamps/

Function Set-FileTimeStamps
{

 Param (

    [Parameter(mandatory=$true)]

    [string[]]$path,

    [datetime]$date = (Get-Date))

    Get-ChildItem -Path $path |

    ForEach-Object {

     $_.CreationTime = $date

     $_.LastAccessTime = $date

     $_.LastWriteTime = $date }

} #end function Set-FileTimeStamps

以上是关于powershell 设置特定文件#powershell的时间戳的主要内容,如果未能解决你的问题,请参考以下文章

Microsoft Office setup找不到powershell

powershell 设置特定文件#powershell的时间戳

PowerShe 使用证书签名 ll脚本

powershell 设置目录子文件的特定LastWriteTime(修改时间)。把资料夹下面档案的最后修改时间改成特定时间。 #电源外壳

如何在 PowerShell 中输出内容

在 Powershell 中读取 ZIP 中的文本文件