I’m trying to get content of a folder in 172.16.100.100\JetStor\Data
So when I enter Get-ChildItem -Path ‘172.16.100.100\JetStor\Data’ it says it does not exist.
I’m trying to get content of a folder in 172.16.100.100\JetStor\Data
So when I enter Get-ChildItem -Path ‘172.16.100.100\JetStor\Data’ it says it does not exist.
Have you tried using a UNC Path:
Get-ChildItem -Path '\\172.16.100.100\JetStor\Data'
Oh my god, I can’t believe I forgot the \. Thank you. It’s working.