Active IQ Unified Manager Discussions

WFA with PS test-path

braashcj3
4,607 Views
Has anyone used PS test-path in WFA to check if a share exists? have the following lines that work perfect outside of WFA in the PS environment but inside of WFA it fails to return the correct value. [String]$Path = "\\server\sharename$\foldername" $retval = Test-Path $Path
5 REPLIES 5

coreywanless
4,604 Views

Do you have the 'Netapp WFA Server' Service running as a domain account? If not, you will need to set that up with a domain account. Also, make sure that account has rights to the share.

braashcj3
4,599 Views

yes to both of those

coreywanless
4,596 Views

What's the error message when the command is ran in WFA?

braashcj3
4,585 Views

not an error it just returns the wrong value.  If the folder is actually there, it returns False saying it couldnt find it.

coreywanless
4,544 Views

Hmm That is interesting. I would be interested to see if you can log out the whoami command.

 

Get-WFALogger -Info -message ("I am: " + (whoami)) 

Get-WFALogger -Info -message ("I am going to test out: " + $Path) 

Get-WFALogger -Info -message ("Accounts in the ACL:"+(get-acl $path).access.identityreference )

Public