PSDeploy.ps1
1 2 3 4 5 6 7 8 9 10 11 |
param ( $RepositoryName = 'AshdarGallery' ) Deploy 'LegacyData' { By PSGalleryModule { FromSource 'LegacyData' To $RepositoryName Tagged Ashdar, data } } |