Advertisement
Guest User

Untitled

a guest
Jul 27th, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. function validateServerShare($a_server, $a_share)
  2. {
  3.  
  4. $a_server = $a_server -replace'\',''
  5. $a_server = $a_server -replace'/',''
  6. $a_share = $a_share -replace'\',''
  7. $a_share = $a_share -replace'/',''
  8.  
  9. $Path = "\$a_server$a_share"
  10.  
  11. if(-not (Test-Path $Path))
  12. {
  13. haltError
  14. }
  15. return $Path
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement