Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. log into Teams admin
  2. Click "Manage Teams"
  3. Click "+ Add"
  4. For Team Name, use the following Naming Convention:
    Project: (CAN, SYD, MELB, ADL) (year) - (Team name)
    For example:
    Project: CAN year 2 - Clown Games
  5. in Description, type "Student Project Team - (ticket number)   Eg:  Student Project Team - AIE-12109Z
  6. In Team Owners, Add both the Campus HoS and DHoS
  7. set the privacy to "Private"
  8. Click Apply

  9. Once created, go into the team and add the following Channels (leaving all the other options as default):
    1. Art
    2. Audio
    3. Design
    4. Programming



This can also be done problematically: 


Code Block
$TeamsToAdd = @("Project: ADL23 Year 1 Class Team 1", "Project: ADL23 Year 1 Class Team 2", "Project: ADL23 Year 1 Class Team 3")

Foreach ($Team in $TeamsToAdd) {
    $MailNickname = $Team -replace " ",""
    $MailNickname = $MailNickname -replace ":",""
    write-host "email is $MailNickname, Team name is $team"
    $group = New-Team -MailNickname "$MailNickname" -displayname "$Team" -Visibility "private" -owner "annmareed@aie.edu.au","travis.hart@aie.edu.au"      
	New-TeamChannel -GroupId $group.GroupId -DisplayName "General"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Meetings"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Art"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Design"
    New-TeamChannel -GroupId $group.GroupId -DisplayName "Programming"     
	}