[Powershell] 폴더 특정 날짜 이후 변경 목록 표시


[Powershell] 폴더 특정 날짜 이후 변경 목록 표시

사용법 1. Powershell 실행 (관리자 권한으로 cmd창에서 powershell 입력해도 되고, windows powershell 앱을 찾아서 실행해도 됩니다.) 2. 아래 문구를 원하는 형식으로 바꾸어 입력 Get-ChildItem "경로" | Where-Object { $_.CreationTime -gt [datetime]"특정시간" } | Sort-Object CreationTime | Format-Table Name, CreationTime 실행 모습 ex) Get-ChildItem "C:\Users\users\Documents\test" | Where-Object { $_.CreationTime -gt [datetime]"2019/10/01" } | Sort-Object CreationT..


원문링크 : [Powershell] 폴더 특정 날짜 이후 변경 목록 표시