- Open the spfolder in IE.
- Click on open with windows explorer.
- Use this url to map a drive in your my computer.
- Use below power-shell to extract the list:
Get-ChildItem "z:\" -Recurse | Foreach-Object
{
write-host $_.fullname;
Add-Content "C:\hemant\sometextfile.txt" $_.fullname;
}
No comments:
Post a Comment