자신의 컴퓨터의 하드디스크 및 USB 메모리에 저장된 파일이 보이지 않는 경우가 있다.
이런 경우에는 PowerShell 명령어를 사용하여 작업하면 편리하다
Get-ChildItem -Path C:\imsi -Attributes hidden
Get-ChildItem -Path C:\imsi -Attributes hidden | Copy-Item -Destination d:\backup
자신의 컴퓨터의 하드디스크 및 USB 메모리에 저장된 파일이 보이지 않는 경우가 있다.
이런 경우에는 PowerShell 명령어를 사용하여 작업하면 편리하다
Get-ChildItem -Path C:\imsi -Attributes hidden
Get-ChildItem -Path C:\imsi -Attributes hidden | Copy-Item -Destination d:\backup