SciProfile_Settings.ps1
1 2 3 4 5 6 7 8 9 10 11 12 |
# =========================================================================== # SciProfile_Settings.ps1 ------------------------------------------------- # =========================================================================== # settings ---------------------------------------------------------------- # --------------------------------------------------------------------------- @( @{Field="Format"; Value=@("Name", "Alias", "Type", "Description", "Folder", "Url")} ) | ForEach-Object { $SciProfile | Add-Member -MemberType NoteProperty -Name $_.Field -Value $_.Value } |