-
Notifications
You must be signed in to change notification settings - Fork 4
GDataUser
GDataUser cmdlets are used for provisioning and management of google apps users in powershell.
Parameters within [ ] are optional.
Returns a Google Apps user, -ID is optional and if not used all users in the domain are returned.
Example:
Get-GDataUser -Service $Service [-ID user]
Creates a new Google Apps user.
Example:
New-GDataUser -Service $Service -ID user -GivenName Firstname -FamilyName Lastname -Passsword Password
Modifies a Google Apps user.
Example:
Set-GDataUser -Service $Service -ID user [-GivenName Firstname] [-FamilyName Lastname] [-Passsword Password] [-NewID newusername]
Removes a Google Apps user.
Example:
Remove-GDataUser -Service $Service -ID user
Returns nicknames, -ID is optional and if not used all nicknames in the domain are returned.
The Legacy parameter invoke the use of the Google .NET Data API (used in versions prior top 0.5.0.7)
Example:
Get-GDataUserNickName -Service $Service [-ID user] [-Legacy]
Adds a nickname to a Google Apps user.
The Legacy parameter invoke the use of the Google .NET Data API (used in versions prior top 0.5.0.7)
Example:
Add-GDataUserNickName -Service $Service -ID user -NickName nickname@domain [-Legacy]
Removes a nickname to a Google Apps user.
The Legacy parameter invoke the use of the Google .NET Data API (used in versions prior top 0.5.0.7)
Example:
Remove-GDataUserNickName -Service $Service -NickName nickname@domain [-Legacy]