Active IQ Unified Manager Discussions

WFA with PS test-path

braashcj3
3,004 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
3,001 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
2,996 Views

yes to both of those

coreywanless
2,993 Views

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

braashcj3
2,982 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
2,941 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