School Computer Lab Computer Check-Out/Circulation

I'm the Technology Manager for a middle-school/high-school with approximately 250 students. We currently have 150 macbooks and 50 imacs available. The imacs are in 2 50-mac labs and the macbooks are distributed in mobile carts throughout the school. I keep a supply of roughly 10 macbooks on-hand for individual sign-out when a student needs to use a computer but the rest of a class section doesn't need a whole cart. Does anybody know of an application that can track these types of transactions. I'm looking for something along the lines of a library circulation system. Each student has an id that I can scan with a barcode reader. I then scan the barcode on a macbook and it is "checked out" to that student and unavailable to anyone else. When the student returns the macbook, it is "checked in" and returned to the generally circulating inventory. It seems like such a simple and obvious thing, but I haven't found anything that is designed for this.
Thanks,
Christopher Tawes
[email protected]

I'm not sure if it's the "best" solution, but here's "Readerware", which is a library checkout software suit that's built for most major OS's (Win, Mac, Linux, Palm, etc.).
http://www.readerware.com/referli1.html?AG5

Similar Messages

  • Cannot check out XE APEX homepage

    I installed Oracle XE on Windows XP Pro. Right after the installation. I could check out the APEX homepage and manage the database at http://127.0.0.1:8080/apex
    But, after I restarted my computer, I cannot check it out anymore. Firefox says, problem loading that page, and this is the message in Firefox:
    The connection was reset
    The connection to the server was reset while the page was loading.
    * The site could be temporarily unavailable or too busy. Try again in a few
    moments.
    * If you are unable to load any pages, check your computer's network
    connection.
    * If your computer or network is protected by a firewall or proxy, make sure
    that Firefox is permitted to access the Web.
    I fixed the installation by re-running the installation executable. But, again, after I restarted my computer, I cannot check out this APEX homepage.
    Any idea? Thanks.

    "user573443",
    It sounds like your database is not running. Either way, your best bet is to post this question in the XE forum:
    Oracle Database Express Edition (XE)
    Joel

  • High school computer lab: turning off iSight, disabling Photobooth

    We purchased new iMacs for our computer labs, and the iSight camera plus Photo Booth have been nothing but needless distractions since the school year began. I think that it is UNACCEPTABLE that Apple did not foresee the need to turn these cameras off and provide a way to do so in system preferences, rather than forcing people to rely on a command line hack to get this done.
    I also find it incredibly stupid to provide people WITHOUT administrator privileges the option of changing the account pictures through Photo Booth. This is just idiotic. All of the account pictures for our public accounts (where all system preferences are locked) have been changed to photo booth pictures and it takes time to change them back on 90+ computers.
    Yes, I know that Photo booth access can be disabled, but it is like it never entered Apple's mind that these computers might be used in computer labs, otherwise, (a) the option to turn this camera off would have been provided, and (b) they would not have included an option in an application which allows a person without admin privileges to change an account's picture. If the ability to change an account picture is turned off, shouldn't photo booth know this? Stupid.
    Just venting.
    Powerbook G4   Mac OS X (10.3.9)  

    I have sent apple my feedaback because I have a similar problem. I have a mobile MacBook Lab and can't seem to find a way to disable the option in Photo Booth that sends the photo taken to the users login account picture. This cuts down on my administrative efficiency because I have to change the user account pictures back to its original. The problem that there is no option to disable the "send to accounts feature" in a school enviornment is the students who use photo booth to take obscene photos and then send them to the accounts picture.
    Please help me with a solution. Is there is a way to recreate the Login window to it's, original established set of account pictures, after a user logs out of their account? These MacBooks are used by many different grade levels including 1st and 2nd graders and I cannot expose them to the obscene login pictures.
    MacBook   Mac OS X (10.4.8)  

  • I get a message that itunes  has stopped working. When I check out why it is because of the dep security on my computer. When I try to find the program for itunes for the .exe file i cannot find it to turn off the dep for  that file

    I get a message that itunes  has stopped working. When I check out why it is because of the dep security on my computer. When I try to find the program for itunes for the .exe file i cannot find it to turn off the dep for  that file

    I found the file but when I added it to the  list for the Data  Execution Program to ignore , I received a message that the Program.x86/itunes file must have the DEP on in order to run. Anyone else having this problem ?

  • How do I checkin/unlock files that I checked out under a different computer name?

    My hard drive went bad. My IT department migrated me from windows 7 to windows 8 and also to a different user and computer name in a new domain. Now I cannot unlock files that were checked out on the old drive under the old domain user & computer.
    I tried running Visual Studio 2013 under the old user name (using Run as other user), but appears that the files are inaccessibly locked on the old and no longer existing computer name.
    John Mikesell

    Hi John,
    Based on your description, your TFS and current client machine in different domains.
    In this situation, you can contact your TFS administrator to make two-way trust between the two domains,  then add the current user account as a team member of your team project. After that, you can ask team project collection Administrators to
    unlock the file that your locked. Or ask the administrators to add your account to the group of "Project Collection Administrators". Then you can unlock the source files by yourseft after a workspace mapping on client machine. Check this
    page for more information about lock and unlock files or folders.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I have a computer lab that is tied to my personal Apple ID, I need to change them over to a different Apple ID (school Apple ID).

    I have a computer lab that is tied to my personal Apple ID, I need to change them over to a different Apple ID (school Apple ID). How do I do it & still keep my old ID? They are all iMacs & some are on Maverick & some are on Yosemite.  Some have Final Cut Pro that has a ID from a teacher that is no longer here.  They all need to be standardized to the school apple ID.

    I hope you have Apple Remote Desktop, otherwise you have a lot of work to do.
    Use Terminal to look for app store receipts…
    sudo find /Applications -path "*Contents/_MASReceipt/receipt" -print | sed 's#.app/Contents/_MASReceipt/receipt#.app#g'
    /Applications/Apple Configurator.app
    /Applications/Install OS X Mavericks.app
    /Applications/iPhoto.app
    or search the entire disk…
    sudo find -x / -path "*Contents/_MASReceipt/receipt" -print | sed 's#.app/Contents/_MASReceipt/receipt#.app#g'
    -x stops find crossing into other disks (via /Volumes).
    Note you will probably need the second version since users may have installed apps in their user accounts (~/Applications is a legitimate place to store them).
    You need to use sudo in an admin account otherwise find will throw a lot of permissions denied errors (harmless, but you may miss apps in restricted directories).
    You probably can arrange those apps into a report for making a script to 'rm -rf' those apps. I don't know how you can read the original owner - it would be good to avoid deleting apps that don't belong to an incorrect account, since you will need to reinstall them.
    Apple do have a volume licensing program, I'm not sure how good it is. It wasn't available here when I needed it.
    If you don't have ARD setup, make a script & carry it around on USB, login as admin, enter admin password to run script, & wait for deletion to complete…

  • Looking for Help on how to get wireless near computer lab

    Ok Im Near A Computer Lab, And I want to get free wifi. I can log into the router from one of the computer lab's computers by the >192.168.1.1 and see passphrase, wep keys all that stuff...
    My Question is how can I get internet at home from this router?
    More info about router:
    Firmware Version: v2.0.02
    Mod: Wireless-N Broadband Router WRT160Nv2
    Questions I need answered:
    Basic Things Like, Mainly:
    -What Adapter Do I Need? Is My Idea Plausible? What Information Do I need To Log Into This Internet connection from home? What Are The Consequences Of Leeching Internet this way?  just stuff to get me going.
    -If I Succeed In Getting Internet From The Computer Lab's router, Will "They" Be Able To See My Personal Email, What I search For on the internet, Downloads Things like this?
    Other Maybe Useless Info: I have a old Wireless-G PCI Adapter Model No. WMP54G, I Have Not Tried But I Dont Think The Card Works And Is Broken Do To After Installed The Toolbar Icon Was Completly "Greyed Out"

    I'm pretty sure the "computer lab" settings are configured and restricted that is why the default address is not working. Basically, if it is not your network more so if the network is secured,  then definitely, you will not gonna be able to connect unless they had provide you the wireless settings like the SSID and the password. However though, if it is unsecured, then, that's no problem at all.
    As with your wireless adapter, check on the links below:
    Installing the WMP54G v4 for the first time
    http://kb.linksys.com/Linksys/ukp.aspx?vw=1&docid=bf9526ef1fbf4b0e8dbaecb48950d7e8_3769.xml&pid=80&r...
    Checking if the WMP54G v4 is Installed Properly
    http://kb.linksys.com/Linksys/ukp.aspx?pid=80&vw=1&articleid=3767

  • Is there a solution for Higher Ed Computer Labs?

    I am an instructional Technician for the Photography Department at a Community College. We currently purchase and use the Creative Suite 6 Design & Web Premium here in the Photography, Graphics and Journalism departments. We have over 150 Macintosh computers licensed with your product and we are very interested in the Creative Cloud.
    Currently we purchase the licenses for all of our student and faculty computers, we are hoping that you will be developing an education solution for computer labs like ours.
    What we would like to see is an arrangement that would allow our students to subscribe to the Creative Cloud for a three-month period that would be paid for prior to the first day of classes. This would avoid classroom disruptions from students failing to pay if the subscription was on a month-to-month basis.
    While I understand that the current Student and Teacher edition at $19.95 is a limited promotion, a price of $20–$25 per month or $75 for a three-month period would be less than the cost of a textbook and could be easily charged as a class fee.
    A potential problem is that students sometimes do not use the same computer all the time. If students are taking multiple classes in different labs, they need to be able to access the programs on several computers. I am currently subscribed to the free trial month and my impression is that the subscription is dependent on logging in with an Adobe ID. If this is the case, students should be able to use this log in to access the software they need on whatever computer they are at as long as they have an active (paid) login, and are not logged in on another computer.
    As it is everywhere in education, our program budgets are tight. The Creative Cloud would allow us to save a significant amount of funds while still offering the most current technology to our students and faculty. The ability to access any software we need and allowing students the ability to access the programs at school and at home will empower both our faculty and students. Additionally, the availability of cloud storage will allow students to work on files at home and at school seamlessly.
    I am making several assumptions:
    Pricing –
    Student and faculty pricing will be available.
    A price will be established for a three-month period to facilitate a college semester.
    Access –
    Students will be able to access the programs on more than one lab computer.
    Is access controlled by logging in with an Adobe ID?
    Once the software has been installed on a computer, will any student with an Adobe ID be able to access it?
    We are hoping to be able to implement this by next fall, so I am anticipating that these details will be worked out before then.

    Great to know this I will be sharing it with my professors also.  To have the "team" version would be great!  Many problems occur for students with portable storage units.  The worst is forgetting to download a project and take it with you. which really hurts our timing on a project to completion.  Also as the projects grow in size we can end up with storage issues as some files are very large.  This sounds like a grand solution.
    Thank you for answering my question earlier Mr. Rice.  Now I need to get back to my assignments. bye.

  • Installing Photoshop Elements in a computer lab?

    Hey there!
    I am trying to install Photoshop Elements 12 in a computer lab. We have 33 computers that we would like to have Photoshop Elements 12 installed on. We have licenses for them but the concern is the whole Adobe ID setup. This is a high school computer lab and a big cause for concern is giving students access to our licenses and them also having the ability to sign themselves out of Photoshop. Right now we are looking at making Adobe IDs for all 33 computers, is this the best way to go about this? And is there any way to disable their ability to sign out? If anyone feels like helping me out, it would be greatly appreciated! Thank you!

    I don't think there is any way to do this, since PSE is not part of Creative Cloud and the usual CC for Teams management and deployment tools will not work. Creating unique Adobe IDs seems the only way...
    Mylenium

  • PE8 in a 26 Computer Lab of New HPi5-64bit 8Gb-W7-Crashing/Sluggish/Wont Launch

    Greetings,
    I hope somebody is familiar with this problem and can offer a solution that I can forward to my school district's tech support, because it's near imposible to teach video editing with PE8 in its current state.
    I teach AV Production Tech and Graphic Design at a public school in Texas. We just got a brand new computer lab with 26 new HP Z-something's...not sure of the number but they are i5 processors with 8GB of ram running W7 Pro at 64 bits with nVidia...again..I don't know the numbers (I'm typing from home. . ) but they are very fast video processors with as much ram as you can get, ordered specifically from one of the HP Ad's on Adobe's website . Everything else Adobe runs splendidly and lighting fast - even real time 3D video in Photoshop! But. . . Premeire Elements 8 is close to being completely dysfunctional. On the computers where it doesn't crash (as often), it runs horribly sluggish.  This happens regardless of project specs. Even NTSC DV project files without any video at all - just titles and text - clunks along painfully slow with frustratingly long lags between clicks, drags and other mouse commands. And then, typically on 3 or 4 other random computers in the lab there will be one or both of the following problems: 1) You can't launch the program at all. It acts like it's going to launch, but then gets stuck in the taskbar and you can't get it out, or 2) Everytime you try to enter text, it crashes entirely. I  guess I should ad a 3rd and that would be crashing for no appearant reason at all.
    Needless to say, this is extremely frustrating for the students and makes them want to give up, since it is the only editing system we have. I'll be polite and not say here what it does for the teacher.
    My tech has reinstalled PE8 with all the latest updates on the many occasions I have put in a trouble ticket, yet the problems still exist.
    I can't imagine why PE8 won't run well, or at all, on these machines like all the rest of CS5 Design Premium does. Could it be due to all of the network filtering we have in our district? My district has the strongest lock-down on computer systems I have ever experienced.
    This is extremely frustrating because the only thing our techs do is wipe and reinstall.  I can't type up trouble reports all day long each day because I don't have the time, but if I were to do so everytime a machine with PE8 crashed or would not launch, I would be busy all day doing just that.
    I hope there's a simple fix to this!
    Thanks in advance
    Chris

    As Bill says we get very few reports of success using PRE across a network. It also doesn't help that PRE8 was generally considered a bit of a disaster - even when running standalone.
    You don't mention the configuration of your hard disks - they can also aggravate problems if you don't have a lot of free defragmented space (minimum for success is 30GB - I go for 60GB).
    Another PRE8 issue was the auto-analyzer that takes over most of the CPU activity.
    You say that your Tech Support have installed all 'updates' - ask them to confirm that this includes the latest graphics and sound drivers from the manufacturers web sites (nVidia in your case for graphics). And the latest Quicktime player.
    And do work through the article Bill referenced.
    I'd also be inclined to query with your IT suppliers why, for new HP machines, they provided an out of date version of PRE. PRE10 has been out since 19th September 2011. And, assuming you procured educational licenses, I'm surprised that's not the version you received.
    Maybe, to alleviate the frustration of both tutor and students, you could teach some basic principles with something like Windows Movie Maker.
    Also download the PRE10 Trial version and see how that works on your systems.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • How do I get itunes to stop loading every few minutes on my computer? I X out of it and it comes r ight back.

    How do I get itunes to stop loading every time I turn on my computer? I X out  of it and it comes right back. I have tried everything, even had a computer expert try, no luck. I tried uninstalling itunes and tried a new download, it came right back. Very annoying. Help!

    Hello all,
    I am not in front of my computer but I will try to be clearer::
    plug your iphone or iPad with the USB cable in the computer
    it launches iTunes or  you launch iTunes directly.
    in the left colum , in the middle your equipemnt appears
    click on it
    the middle space will change and you will see horizontal tabs named home, ??, app, music, and so on
    click on the first tab and check all the space:: at the end, if I remeber well there is a check mark for manual sync
    or it is on the secon tab where you choose to sync mail accounts, notes etc... at the end the checkmark "manual sync" should be checked hence itunes will not sync by itself but only if you ask for it
    Henri

  • Can I install photoshop  trial version on student computer lab for teaching  student ?.

    can I install photoshop  trial version on student computer lab for teaching  student ?
    or  school need to buy a license.

    I don't see that anything would stop you installing the trial, though it is not for that and the license might forbid it, not sure. But the trial lasts 30 days and cannot be extended or repeated. You are expected to buy software used in teaching, though there may be academic discounts.

  • HT4623 I purchased an audiobook in I tunes on my computer, but cannot figure out how to download it on my phone....it always lets me download purchases of movies and tv shows but doesnt show an option for audiobooks

    I purchased an audiobook in I tunes on my computer, but cannot figure out how to download it on my phone....it always lets me download purchases of movies and tv shows but doesnt show an option for audiobooks

    Oh alright -- I manage to resolve my own stupidity quite abruptly, actually.
    Shortly after posting this, I annoying took another gander at iTunes Store settings. To my own idiocy, I must have unchecked "Show iTunes purchases in the cloud" at some point. In my defense, though, the availability of songs in iCloud threw me off quite a lot.
    Ha ha -- anyways, if anyone else is having the same problem, check there.

  • Keeping IMac's locked down in a computer lab

    For those who have lab experience what type of devices or locks are used to keep IMac's from theft in computer labs? I was curious as to what other people use or recommend in this area.

    All 3 of my labs are alarmed and supervised at all times so no I've never seen anyone try to take one that's been locked down. Had an LCD stolen once out of an office but it had not been secured. The cables can be cut but it's not as easy as it looks. In IT once in a while someone would need to relocate or surplus a computer that was locked down and no one had the key. I would go and cut the cable with bolt cutters but it usually took a few passes. If you see someone walking around with a set of bolt cutters in their hand then I would be suspicious.
    George

  • Managing Docks in a computer lab

    I've got a couple Dock issues across my computer labs:
    Firstly, is there a way to change one Dock icon? Specifically, I updated a program, and this time, it came in a folder instead of by itself; since the path to the program changed, it made the icon turn into a question mark. This wouldn't be a problem, but I have to manage seven sets of Docks across my labs, which means manually editing and propagating seven com.apple.dock.plist's. Is it possible to make a .pkg installer that will copy the new program, delete the old program, and update the Dock icon?
    Secondly, which .plist manages Dock magnification? It doesn't seem to be handled by com.apple.Dock.plist, and it seems to irk the faculty. (I rather like the effect.)

    The simplest way is to drop and drop the program's icon in and out of the dock. Click and hold the icon then drag to your desktop and it will disappear. To load a new version of the same software, just do the reverse. Click and drag the programs new icon onto the dock and place it. Do this 7 times and in 6 minutes your problems are solved.
    P.S. After each install make sure to run Disk Utility and update permissions on each machine.
    The mac doesn't delete old programs when installing. Updaters overwrite the existing ie: going from version 6.1 to version 6.3 will simply update the current version, but going from version 6 to version 7, will not delete version 6!
    Be careful not to delete the old software right away, you never know what bugs are in the newer version.
    You can simply configure the documents to open in the newer one.

Maybe you are looking for

  • Is there a way to open login apps in separate desktops without the screen switching between them?

    When I login, I open several apps on desktop 1, and several apps on desktop 2. However, the Mac switches to Desktop 2 a few seconds after I login, as the applications open there. Is there a way to prevent the screen from moving during login?

  • Issue with the import of hyperlinks from FM to Robohelp

    Hi, I am trying to produce online help (WebHelp) using RoboHelp 9 based on FrameMaker files (FM8). Previously I was working with WebWorks ePublisher (which was way easier to use since there wasn't much to customize...). I'm linking (not importing) th

  • Media Encoder CS4 won't launch

    Hello, I am trying to use Media Encoder CS4 but it will not launch. It seems to get hung up on "ImporterQT.bundle". I am on a Mac G5 Dual 2.5 GHz Power PC running OSX 10.5.7 Please help! I'm on a really tight deadline. Thanks!

  • Oracle BUG... Snapshots in 8.1.7

    I accidently issued a RENAME on a number of snapshots in my DB. It created a TABLE for each of these objects and I can not drop these objects without getting told "ORA-12083 must use DROP MATERIALIZED VIEW to drop "OWNER.TABLE"". If I try to use drop

  • Import .dmp  from 8i  to 11g

    Hi There is a .dmp file which has been exported from 8i version , I have copied this file and try to import it to a database of 11g version. imp SYSTEM/overmars file= file.dmp but the following error getted:- IMP-00002: failed to open 30-06-2008.dmp