Hello @MAHESH1111111,
The share name is a property of the object returned by Get-NcCifsSessionFile. You can see the full path using this snippet:
Get-NcCifsSessionFile | Select SessionId,Vserver,Share,Path
If you want a bit more thorough output, you could do something like this:
Get-NcCifsSessionFile | %{
$session = Get-NcCifsSession -SessionId $_.SessionId
$data = "" | Select "WindowsUser", "SVM", "Path"
$data.WindowsUser = $session.WindowsUser
$data.SVM = $_.Vserver
$data.Path = "\\$($session.LifAddress)\$($_.Share)\$($_.Path)"
$data
}
Hope that helps.
Andrew
If this post resolved your issue, please help others by selecting ACCEPT AS SOLUTION or adding a KUDO.