Advertisement
Guest User

Untitled

a guest
Dec 10th, 2016
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. function Deploy-App {
  2.  
  3. param(
  4. [Parameter( Position = 0 )]
  5. [ValidateScript( { if (Test-Path .DeployFiles.txt) { $UseFilepathFile = $true } } )]
  6. [Alias( "u" )]
  7. [bool]$UseFilepathFile
  8. )
  9.  
  10. get-location
  11. Write-Host $UseFilepathFile
  12.  
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement