Jump to content

Recommended Posts

Posted

CyberNerd...how many users have you got with Google and Postini?

Are you using GAD Sync and Postini Sync?

In GADS, we have sAMAccountName for the email, and ticked the box that says "Replace domain names in LDAP email attributes with this domain name"....so it has jbloggs and adds @COMpany.com.

 

But Postini Sync does not have this option, and just tries to push the sAMAccountName without the domain to Postini, and fails.

Know any other way?

How is yours set up?

 

Cheers,

Jon

Posted

Hi Jon,

 

Yes we use Google Active Directory Sync.

We use the AD mail attribute for email, as we already populated this attribute with email addresses (we the attribute for other things such as moodle)

 

this is the script we use to populate the email attribute

 

 

Set objParent = GetObject("LDAP://ou=year xx,DC=college,DC=internal")
objparent.Filter = Array("user")

for each objUser in objParent
 'Wscript.Echo "Modifying " & objUser.Get("sAMAccountName")
objUser.put "mail", objUser.Get("sAMAccountName") & "@mydomain.com"

objuser.Setinfo

   
next
Wscript.Echo "Done ;)"

  • 3 weeks later...
  • 2 months later...
Posted
Only a very few settings roam with LiveID sign-in. It's not a replacement for AD unless you have no roaming profiles, no redirection, and are happy with per-machine GPOs only and your Internet connection being destroyed by everyone's files being cloud-stored.
Posted
and also the liveID is the entire email address..

 

so having to type [email protected] every time you want to log into a machine will be a PITA

 

If Microsoft have a bit of sense with this they'll make a GPO that allows you to add a list of commonly used domains to the end of the logon box.

 

Thay way you'd only have to type the username and select @school.ac.uk from a dropdown (or as a default option if you don't need @hotmail.co.uk or @live.co.uk in there as well)

Posted

With our change to live@edu we shortened our domain to [email protected] which was a huge improvement over the old long address.

 

They already have to type it in for email so im guessing doing it once on login will actually be easier.

 

I can see a situation where students just login with their liveID and access outlook.com(for email), skydrive(for documents) without the need for our servers at all :)

Posted

I think it would be better to somehow integrate the liveID into AD or something, so that when they login with their normal domain credentials to AD, it then automatically logs them in to Live. So when they go to skydrive, outlook.com etc, they are already automatically signed in.

 

I think this is actually coming with the new office365 to be honest, something to do with ADFS etc and becoming federated between the 2.

 

This is seperate from the idea of the concept of shared settings across multiple PCs, which I think is a great idea for home use, but cant see it being useful in a domain environment.

Posted
I think it would be better to somehow integrate the liveID into AD or something, so that when they login with their normal domain credentials to AD, it then automatically logs them in to Live. So when they go to skydrive, outlook.com etc, they are already automatically signed in.

 

This is how the google authentication works. SSO to active directory (without FQDN) then OpenID allows users to sign-in to 3rd party websites using their school account, without giving away their credentials.

I looked quite thoroughly into Google Vs Live before we implemented google apps - google won in terms of functionality by a clear mile. I'm quite amazed at how many people are blindly following MS though.

Posted
This is how the google authentication works. SSO to active directory (without FQDN) then OpenID allows users to sign-in to 3rd party websites using their school account, without giving away their credentials.

I looked quite thoroughly into Google Vs Live before we implemented google apps - google won in terms of functionality by a clear mile. I'm quite amazed at how many people are blindly following MS though.

 

Yes we assumed they would get single sign on working easily :)

 

Hopefully windows 8 will have that but lets see.

Posted
I can see a situation where students just login with their liveID and access outlook.com(for email), skydrive(for documents) without the need for our servers at all :)

That just cover documents and local applications though, not the myriad of server-based applications we all have.

Posted
That just cover documents and local applications though, not the myriad of server-based applications we all have.

 

The vast majority of ours are web based now. Sharepoint is the obvious local one at the moment, Sims is another(more for teachers). Our library system which is web based as are all our ICT support and room booking systems are web based and have been for a while. I'm trying to think of anything I have missed.

 

Basically I'm loving the cloud future but its a total step change for us network admins!! :)

Posted

Live@EDU is very highly configurable with powershell and as mentioned it is possible to do email tracking etc and even found it possible to get a snapshot of a users email account at a certan date/time.

 

I've not had any experience of google mail and how to configure it suitable for use in a school environment, control, restrictions etc.

Posted
Configuration of users is fairly straightforward, and from what I've seen of PowerShell, a lot easier. The biggest downside I've found in Google Mail is that I have no view into people's mailboxes (other than a slight cludge which involves changing their password, logging in and then waiting for the AD Synchronisation to reset their password again).
  • 3 weeks later...
Posted
Am I correct in thinking that only Google Apps provides a free & easy to set up Active Directory Synchronization?

 

The Microsoft solution was 50 quid or something (Identitly Lifecycle Manager)

Posted
Configuration of users is fairly straightforward, and from what I've seen of PowerShell, a lot easier. The biggest downside I've found in Google Mail is that I have no view into people's mailboxes (other than a slight cludge which involves changing their password, logging in and then waiting for the AD Synchronisation to reset their password again).

 

An administrator can export the mail in a mailbox (and previous mailbox states) and also setup monitoring on certain users. The easiest way is to use GAM.

Posted
Am I correct in thinking that only Google Apps provides a free & easy to set up Active Directory Synchronization?

 

It is free, and it is easier than ILM. It's not perfect though.

 

The Microsoft solution was 50 quid or something (Identitly Lifecycle Manager)

 

ILM pretty much requires a dedicated server (certainly it is strongly recommended if not actually required). GADS requires a tiny amount of resources and has a very light install footprint. You can run it on pretty much any server you have without it interfering with the existing operation.

 

The only real caveat with GADS is that if you want to sync passwords, you have to install a third-party component on each of your DCs to capture the passwords and store a hash of them ready to send to the Google Apps system. Why Google don't provide this themselves is beyond me, and the one that works most reliably (sha1hexfltr) doesn't keep the password hash very secure, so I implemented a workaround to move them to a confidential attribute in AD to be on the safe side. I still regard this as less demanding than setting up and running ILM.

 

In both cases (ILM and GADS), users will need to change their password before it starts syncing to Google Apps/Live@Edu. Neither can sync passwords that were set before they were installed.

Posted

 

 

The only real caveat with GADS is that if you want to sync passwords, you have to install a third-party component on each of your DCs to capture the passwords and store a hash of them ready to send to the Google Apps system. Why Google don't provide this themselves is beyond me, and the one that works most reliably (sha1hexfltr) doesn't keep the password hash very secure, so I implemented a workaround to move them to a confidential attribute in AD to be on the safe side. I still regard this as less demanding than setting up and running ILM.

 

In both cases (ILM and GADS), users will need to change their password before it starts syncing to Google Apps/Live@Edu. Neither can sync passwords that were set before they were installed.

 

We found that password synchronisation is only necessary if staff students need to access picasa (not picasaweb) or log in via smartphones, for general web use we use a single sign on mechanism that authenticates google via active directory, which is technically a better method than capturing passwords.

SSO via active directory can be achieved through a SAML based moodle plugin or something like simplesamlphp, shibboleth, oAuth, or a commercial solution. Some provide a password update facility to get active directory passwords directly into google. Were currently using SSOEasy SAML 2.0 and SAML 1.1 SSO Products - SSO Easy for this, but like i say; it's only really needed for picasa and smartphones, not general web use SSO covers the rest.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...