Jump to content

ITTony

Members
  • Posts

    32
  • Joined

  • Last visited

Everything posted by ITTony

  1. So does that mean they are in fact running windows RT? which in that case renders them to nothing more than a coaster! Just to clarify did you actually join it to the domain? I just want to be sure these can be added otherwise they are useless for us in a school enviroment. As we tried the surface RT and they turned out to be a huge waste of money (thankfully only bought 3 as a test) Thanks for your reply's
  2. Win Win then especially that they are domainable be interesting to hear how you get on with a full test.
  3. Any suggestions on easy ipad password management? We are using meraki for our mdm solution witch does provide a passcode reset command. Unfortunately this only works if the device is connected to the wifi. The scenario- Staff take home an ipad and leave it there for a few weeks, they then manage to forget what passcode they have set and then bring them in to us (yay) The problem is the iPads are no longer connected to the network as they have to sign in (which they cant as the ipad is locked). So currently we have to completely erase the device and start again which seems to be the only way to reset the passcode. We dont have a Mac (refuse to buy one just for iPads) and ipads are initaially setup from my PC using a generic iTunes backup. Any ideas or suggestions? would be great to easily reset the passcode especially as xmas break is on its way so my new year will be filled with staff iPads with forgotten passcodes and sob stories "but i took all the family photos on my work device and let my son play with it who changed it"..............woop can't wait
  4. I have setup a standard backup of an ipad using itunes. It has no apps but has all the basic settings of how I want them setup. Any new ipads come in are wiped and have this image put on. Once meraki is installed the basic apps are automatically pushed out. We have setup tags for each department so once enrolled it is assign its tags and user. Then meraki will push out the specific apps for that department. Any questions feel free to ask I regulary bang my head off the wall with these Apple devices lol
  5. I would be interested in this aswell, Currently looking at purchasing a couple of these for the school. After being burned with the surface RT I am sceptical about ever purchasing a windows tablet again! BTW insight are currently doing these for £142 (ex VAT) for the 10" model with keyboard.
  6. Apologies for the delay in reply ! a few months late but hey just in case. Yes you will need to provision out administrative users but you wont need to setup a virtual server with Apple. We have just 2 Administrators setup. You will need to create an MDM push certificate through apple and also create a VPP account to enable the purchase of paid apps. All is relativley straight forward and Meraki have a wealth of information on how to do everything within their support pages. (basically on every item there is a help section which walks you through) We use seperate apple ID's for each device which is provisioned for that user. This negates the annoyance of having to periodically bring each device back to update the apps. I assume you have moved forwared with your MDM solution. Would be interesting to hear how you got on with meraki if you went down their route. Has anyone used Meraki's Paid MDM solution?
  7. +1 for meraki we support multiple ios devices and this seems to do the trick and its free. Not supporting macbook's though.
  8. That's an interesting post and read. Still a shame that you still get prompted to accept the app install though. As it would be good to do a complete silent install so students and staff alike can't say no. Hopefully with time they will enable this then we can have a complete stealth install feature
  9. We Have found this as well, that when assigning apps via VPP you need to accept the invitation on the device you want the app installed otherwise it does not play nicely. We have always done this through the ipads native email app. We also have a separate apple ID account for each device/teacher as we found it is easier and when you have multiple apps to roll out you no longer need to keep re-sending the invitation links. Once accepted any app will then just roll out. Biggest issue we have is awaiting apple to send confirmation emails etc and it can take a short while for apps to actually start the install via Meraki
  10. Is there an .ini file? if so are the resources in the location that this points to? If not edit it to where you want and try it again. If no .ini file your have to find which installation file references the resources and adjust accordingly.
  11. Ok so finally got this to work so anyone else having difficulties these are the steps I used to get this working : If using xampp in windows- Firstly enable the ldap module for php- To enable php ldap module in XAMPP, find the following files and copy them. From C:\xampp\php copy the following files to C:\Windows\system. libeay32.dll libsasl.dll ssleay32.dll Find and edit C:\xampp\php\php.ini and uncomment “extension=php_ldap.dll” around line 965 And then copy the ldap settings from systemdefaults.inc.php into config.inc.php And then edit as nessecary $auth["type"] = "ldap"; $ldap_host = "servername.schoolname.county.co.uk.local"; $ldap_port = 389; $ldap_v3 = true; $ldap_tls = false; $ldap_base_dn = "ou=users,dc=servername,dc=county,dc=co,dc=uk,dc=local"; $ldap_user_attrib = "sAMAccountName"; $ldap_dn_search_attrib = "sAMAccountName"; $ldap_dn_search_dn = "CN=User Name,OU=users,OU=admins,DC=schoolname,DC=county,DC=co,DC=uk,DC=local"; $ldap_dn_search_password = "password"; $ldap_get_user_email = FALSE; $ldap_email_attrib = 'mail'; $ldap_group_member_attrib = 'memberof'; $ldap_unbind_between_attempts = FALSE; $ldap_debug = FALSE; //---end--- It turns out I needed to add .local on the end and also needed to authenticate with a user to search AD the $ldap_dn_search_dn line was wrong I had not included all the OU paths of the tree for that specific user. I used Softerra LDAP Administrator 2014.1 to get the correct search_dn name for the account to authenticate with, to search AD Hope this helps someone else Thanks for your help
  12. So I went over a handful of things and came across a post in regards to 3 .dll files that need to be copied from xampp folder to windows/system From C:\xampp\php copy the following files to C:\Windows\system. libeay32.dll libsasl.dll ssleay32.dll I had already uncommented the ldap line in php.ini so no need to do that part. Restarted xampp and.... nothing lol! Im just going to go over my changes and do them again in case one of them was actually working and I was just missing those 3 files. Wish me luck Thanks for you help pcstru i'll keep you all posted.
  13. Ah yes my setup might help. So currently installed on a windows 7 machine using xampp (apache & mysql) and the AD is on a server 2003 machine I have uncommented the ldap line in php.ini as this was throwing up an error. Not sure if there is anything else I should have running. first time using xampp as usually would use IIS but could not get mrbs to work properly (have Stopped all IIS services running)
  14. Corrected my mistakes and still no avail! tried with and without .local unable to get it going by adding in admin account to search AD aswell hmm at a loss here and dont fancy exporting the contents of AD to add in manually that will be a long day! lol
  15. So I need to setup a user with permission to read AD and basically add in $ldap_user_attrib = "sAMAccountName"; $ldap_dn_search_dn = "cn=LDAPQ,cn=Users,dc=ourschool, dc=org, dc=uk"; $ldap_dn_search_attrib = "sAMAccountName"; $ldap_dn_search_password = "*******"; but with my details?
  16. here is the ldap portion of my config.inc.php most likely wrong $ldap_host = "12.404.238.2"; $ldap_v3 = true; $ldap_tls = false; $ldap_base_dn = "ou=Accounts,dc=chinham,dc=county,dc=sch,dc=uk,dc=local,"; $ldap_base_dn = "ou=pupils,dc=chinham,dc=county,dc=sch,dc=uk,dc=local,"; $ldap_user_attrib = "sAMAccountName"; $ldap_get_user_email = FALSE; $ldap_email_attrib = 'mail'; $ldap_group_member_attrib = 'memberof'; $ldap_unbind_between_attempts = FALSE; $ldap_debug = TRUE; ?>
  17. Hi Guys, I have just installed the most recent version of mrbs and it works well in fact really well. I have come across a slight snag! well more a hole in my knowledge base, ldap! I am trying to get mrbs to authenticate users against Active directory and it seems to fail whichever setting I put in ? does anyone one have an example of their working config.ini.php file? who may be using ldap? I have been browsing multiple threads and I just dont get it any help would be very much appreciated.
  18. LOL Pretty funny, crashed firefox once I died
  19. Well in my opinion no! If there are issues with the ISP (which recently there has been a fair few outages) then no one can access the booking system within the school. Whereas if we host this ourselves if the net goes down the system will still be running, and staff with remote access can connect from anywhere eliminating the need to add in a third party. Also if the company went bust or vanished into administration ! where is all that data? how would you then manage the calendar and bookings if its gone.... In house it can also be backed up to your backup of choice.
  20. Just a shame its cloud based and cant install it onto our system.
  21. I gave that online booking a quick whirl earlier after Zag mentioned it, although after running through the setup and creating users, I logged out and then was unable to log in with 2 of my test users and then could not log back in as admin ?! It does look very nice though. Something similar would be really good but hosted onsite.
  22. Anyone have an alternate DL link to classroombookings.com software? blocked here so cant even try it plus its free
  23. @ sovietRussia Care to share?
  24. @ Zag Ideally looking for some free software and also something hosted in house as I dont like the idea of someone else having control over our data or when isp issues arrive...no one can use the system! @paul Installed it yesterday and have had nothing but issues so far and currently cant log in !! probably something I have done but took best part of the day tweaking php scripts to get the blasted thing going (Maybe I broke iis and mysql in the process of fumbling)
  25. That's interesting, although I would like to stay away from sims as that's someone else s department here so to keep it simple think I will stay away from integrating it. Although I do like the idea of AD integration so teachers can use their current credentials to book a room.
×
×
  • Create New...