Powershell to ReHydrate Files from Azure File Sync Stubs

Reads the top line of the file \

Get-Content -Path .\BABOK_Guide_v3_Member.pdf -TotalCount 1

Reads the top line of files recursively

Get-ChildItem -path "E:\commmon\on" -recurse | Get-Content -TotalCount 1
(No Ratings Yet)