unapproved verbs
WARNING: The names of some imported commands from the module 'todo' include unapproved verbs that might make them less discoverable. To find the commands with unapproved verbs, run the Import-Module command again with the Verbose parameter. For a list of approved verbs, type Get-Verb.
https://github.com/hartez/todo.txt-PowerShell/issues/2
cmdlet ForEach-Object at command pipeline position 2
Foreach-Object后面的{不允许换行写
function Reset-FolderTime { Param( [parameter(Mandatory=$true)] [ValidateNotNullOrEmpty()] [String] $targetDir) Get-ChildItem -Path $targetDir -Recurse | Foreach-Object { $_.LastWriteTime = Get-Date } }