Locking Computer for public use

I need to lock a computer so only one program can be used. The public will be using a particular program but that is it. I don't want them to be able to leave the program.
Thanks

You could setup the account to use a simple finder (System Preferences-Accounts, choose the account, select Parental Controls, Configure the Finder & System, select Simple Finder). With it you can also choose the application that you want them to use. When you log into their account, the dock will be locked so that items cannot be removed. There will be a documents folder as well as an applications folder. In the applications folder, it will contain the applications you chose for the account to use. The use cannot remove them.
If you want an application to startup at login, first start the application, then click and hold the mouse button on the application when it appears on the dock, and select Open at Login. As far as keeping them from being able to leave the application, I'm not sure if that can be done.
Once extra step you can take as well is to setup a login script so that the account is refreshed every time it logs in. Meaning that no matter what they do (save documents, whatever) to the account, once it has been logged out and is logged back in, all the settings you had previously set, will come back. For that I found useful information at the following:
http://www.bombich.com/mactips/loginhooks.html
http://docs.info.apple.com/article.html?artnum=301446
http://www.bombich.com/mactips/scripts.html
http://www.bombich.com/mactips/workshop.html (download the PDF)
Ben

Similar Messages

  • Looking to download trail version of cc App and then install it on personal computer for offline use. Is this possible?

    Looking to download trail version of cc App and then install it on personal computer for offline use. Is this possible?

    yes, Download Adobe Creative Cloud apps | Free Adobe CC trial
    but you must be online to install apps.

  • Best Distro for Publicly Used Computers?

    Howdy y'all.
    I was wondering if anybody had some advice as to what distro would be best for a low-power, publicly used computer. My dorm is getting two computers for our common room ("Destitute" model here: http://media.photobucket.com/image/rece … /Guide.png ). I am however, not sure what to put on it.
    Here are the requirements that I am looking at:
    1. Must run on low-performance computer
    2. Must be able to play Flash videos and run Shockwave applications
    3. Must be able to run LibreOffice.
    I was thinking about Linux Mint, because I need something that people can maintain after I leave (so Arch is not really an option, sadly), but I was also wondering if it would be possible to run a completely free distro that met these requirements.
    Right now, my top choices would be Linux Mint, gNuSense (not sure if it meets the requirements though), and Xubuntu. Does anybody have suggestions?
    Additionally, does anybody know where I could procure a 40 GB hard drive? I have been searching on NewEgg, but they only have refurbished models. This computer really only needs to have enough space to run the OS, since people will be saving stuff to their own flash drives.
    Input/Advice/Ideas would be appreciated, thank you.

    janvaletin wrote:I can see how I would be able to set up a regular file deletion with cron. How would I be able remove installed applications while protecting ones I installed?
    There's a few ways you could do this, you could save the list of packages you installed and periodically spit out a new list, then diff that with the old list, remove packages that aren't on both.  Unless you give out the root password, or put people in sudoers, people aren't going to install software.  Your issue will be more that people will mess with the configuration settings to stuff, which will result in a periodically less and less usable desktop, or just some embarrassing bookmarks.  If you use a dedicated guest account for people logging in, you could just periodically delete and recreate the account to revert it back to a "clean" state.  Somebody claimed there's a "kiosk mode" for Xubuntu, I'd look into that, it sounds like something useful for you.
    janvaletin wrote:As far as the hard drive goes, I only need enough to run the OS, and since I will be building the computers, I figured I should aim for the cheapest solution possible.
    The cheapest, new, spinning-platter drive you are going to find is going to be 80GB, I assumed that machine came with a 500GB drive because that's what the linked spec-sheet indicated.  If it doesn't, and you want to consider other options you could do something like:
    1) Don't put a harddrive in the things at all, build yourself a livecd image and run the machine off that (annoying to update, but no-worries about reverting to a clean state, just reboot the machine)  Also, no need to worry about harddrive failure.
    2) Get a usb flash drive and run the machine off that, you could probably get a working system on 4GB, 8GB for sure.  You won't save much money doing this though, maybe $10/$20 and, unless you've got a motherboard with an external usb-port soldered right on the board, you'll have to worry about someone yanking the drive out and rendering your system in-operable.

  • Internet Cafe for Public Use using iPad

    Hi to all,
    Good day.
    I'm planning to put up an internet cafe for public usage, as you can read at the topic i will use the iPad instead of PC or Mac.
    Q1: Is there any app that can monitor the time consumed and how much the price to pay (this will automatically starts upon login)?
    Q2: How to secure iPad from thief (we know iPad is too handy), is there any casing or accessories that we can lock-up the iPad in its place?
    Q#: Can anyone help me?
    Thanks

    We did think about using the device as a "Shared Device" but we thought this would get over complicated, as the library has requested that the users can just pick it up and use it without any hassle. Which in an ideal world would be easy but alas, it is not!
    We also thought about using Single App Mode and locking it into the AirWatch Secure Browser, where we could disable things like caching and saving usernames and passwords etc!
    Thanks for your reply!
    Vish

  • How best to define default styles in widget libraries for public use?

    I'm putting together some code to go with my blog, and it will include a custom component. I'd like the default component to use a style I define, but I'd also like the user to be able to easily override this. Does anyone have any suggestions on the best way to do this?
    I notice that the [url http://www.jidesoft.com/blog/2011/10/04/meet-our-first-javafx-component/]range slider from JideSoft has us explicitly setting the skin in code in their example. Ideally the end-user would not be doing this. So what is the best practice? Should I build a custom skin for my component and then set the style in my code? Should I define a base style sheet that somehow always gets imported, etc?
    In essence, I want to have my base styles work in the same way that caspian.css does - is there a way?

    Thanks Jonathan, really helpful responses.
    I think my control would be a candidate for a style-2 approach if the method was moved up to Parent as you suggested. If I understood it all right then I'm glad you have been pushing for this, and I'm glad David has been persuaded :)
    I've got basic skinning for my component working, but I'm stuck on the getUserAgentStylesheet() method.
    My widget is basically a NavigationToolbar with back, forward, home, refresh buttons - simple sort of thing.
    I have done this:
    public class NavigationToolbar extends Control implements NavigationListener
        private BooleanProperty backAllowed;
        private BooleanProperty forwardAllowed;
        public NavigationToolbar()
            getStyleClass().add("navigation-toolbar");
            this.backAllowed = new SimpleBooleanProperty();
            this.forwardAllowed = new SimpleBooleanProperty();
        ... getters/setters ...
        protected String getUserAgentStylesheet()
            return "styles/nav-toolbar.css";
    }Then I have created Skin in the same package, which is basically my real view (what I previously had in the NavigationToolbar class before I made the unfortunate decision to make it nice an skinnable :) ):
    public class NavigationToolbarSkin implements Skin
        private NavigationToolbar navigationToolbar;
        private HBox root;
        private Button backButton;
        private Button forwardButton;
        public NavigationToolbarSkin(NavigationToolbar navigationToolbar)
            this.navigationToolbar = navigationToolba
            root = new HBox(4);
            backButton = new Button("Back");
            backButton.getStyleClass().add("back");
            backButton.disableProperty().bind(navigationToolbar.backAllowedProperty().not());
            root.getChildren().add(backButton);
            forwardButton = new Button("Forward");
            forwardButton.getStyleClass().add("forward");
            forwardButton.disableProperty().bind(navigationToolbar.forwardAllowedProperty().not());
            root.getChildren().add(forwardButton);
    }My nav-toolbar.css looks like:
    .navigation-toolbar {
        -fx-skin: "com.zenjava.jfxflow.navigation.NavigationToolbarSkin"
    .back {
        -fx-graphic: url("../images/nav-back.png");
    .forward {
        -fx-graphic: url("../images/nav-forward.png");
    ... other styles ...When I try and use this in code (I just 'new' a NavigationToolbar instance and then add it to the scene, am I suppose to do something more?), I get the following error:
    SEVERE: javafx.scene.control.Control impl_processCSS The -fx-skin property has not been defined in CSS for NavigationToolbar@31ad98ef[styleClass=root navigation-toolbar]If I manually set the skin on the toolbar (i.e. setStyle("-fx-skin: \"com.zenjava.jfxflow.navigation.NavigationToolbarSkin\"") ) it works, although obviously I don't have any of my other styles with it. I wondered if maybe it was just a URL issue so I've tried with the css in the root directory as well, and tried various paths (with a slash at front, without, etc). No luck - if you can tell me this is the problem then I can keep mucking around with it, but I'm thinking maybe I have missed a step or misunderstood and cocked up one of the steps above?
    Cheers for your help, much appreciated!
    zonski

  • Group data locked error for MM01 using parallel processing

    Hello gurus,
                       I am using Call txn method (MM01) Parallel Processing method ( around 9 threads ). The Materials are getting locked around 10 percent sometimes.
    This is happening randomly ..one day i dont have any locking errors ..next day i have ...Any ideas why this could be..any prereq i need to check before executing the parallel processing..
    Thank you in advance..
    sasidhar p

    Hi Sasidhar
    I guess you are either extending the Sales Data or MRP Data. Just make sure that you are processing these transactions in a linear form for a single material. We can use parallel processing for different materials but for a single material if we go for parallel processing we can definetely expect the Lock Objects error.
    Kind Regards
    Eswar

  • Help with new computer for Photoshop Use ?

    I am going to upgrade my laptop (prefer using laptop for various reasons) and I have the choice of two laptops. Yeah one is more expensive and is a gaming laptop but I just want to know which will work best with Photoshop CS6
    The two laptops I have the choice of and I don't want any other suggestions please as I only have these to choose from are:
    HP Envy DV7
    (details here)
    Samsun Series 7 Gamer
    (details here)
    The specs might not say but they both come with Win8 64 Bit
    I know the Samsung is a high end gaming laptop but that dosent mean it will be great at photoshop and would the cheaper HP do photoshop just as well for less money ??
    I would greatly appreciate any help and advice
    thanks

    Honestly, one cannot hope to advise you reasonably on how best to run an application as complex as Photoshop without your having stated any of your needs or goals.  Pretty much any modern computer will be able to run Photoshop.  But...
    What kind of work products are you going to want to make with Photoshop?
    Big images? Small images? Huge images?
    Are you planning to do things that rely heavily on the GPU?  3D?
    Are you going to work with an external monitor?  Is color-management important to you?
    CS6_User wrote:
    would the cheaper HP do photoshop just as well
    That's a kind of meaningless question.
    It's akin to asking, "Would a Dodge take me to the store better than a Ford?"
    If you're considering doing serious Photoshop work I'd suggest reconsidering a desktop system.  Laptops are typically optimized for things other than what Photoshop needs.
    -Noel

  • Computer for photoshop use

    Hi all, I am looking at purchasing a computer witht he primary aim of using photoshop. I will be working in layers, up to say 10 of them, at 300 dpi each. I have some specs as suggested by my local computer shop and would be greatful for some feedback on their usefullness.
         i7-870 (2.93GHz)
         Windows 7 64 bit (English)
         4GB SDRam
         500GB 3.0Gb/s Hard drive
         16x DVD+/-RW Drive
         19-in-1 Hi-speed Media Card Reader
           1 GB NVIDIA GeForce GT220 (DVI, VGA, HDMI)
    Any help would be great

    I'll add, re hard drives, that you should spare no expense and get top-notch hard drive hardware.  Something like enterprise-class drives.
    Also, if you put them in a RAID configuration (e.g., RAID 0) you can get greater throughput.
    -Noel

  • How can I make another computer my main computer for sync use

    my main computer is going to be the one that generates the change to book marks and tabs. when I first
    set up sync I used a secondary computer not realizing it would be the main computer. how can i change
    the status of the computers. now that all of my data has merged I need to clean it up and maintain it for
    the new main computer. Thank you Miles

    If your secondary system don't want to SYNC. then try the following method to stop SYNC
    Type '''about:config''' in URL and search for '''services.sync.prefs.sync.''' and set the value as "fasle".

  • Can BC create classified ad listing for public use?

    Can Business Catalsyt creat public classified ad listings as a web app?

    Thank you for posting.
    Yes, you can create classified ad listing through webapp in business catalyst. Please refer to the following article : http://kb.worldsecuresystems.com/242/bc_2428.html. This article has the steps to create a real estate site. You can use the similar kind of set up for creating classified ads.
    Hope this helps.
    Cheers,
    Aish

  • How do I submit a computer for repairs/use my warranty?

    Okay, I have a HP Pavillion 500-a60 Desktop PC and this thing has given me trouble since I've first gotten it! The frist problem was that it's hardware system crashed within the frist 3 weeks of having it THEN when I got a new one it wouldn't conntect to the internet. So, then I had to fix that and it was working, but now it's not connecting to the internet at all!
    I'm just DONE with this computer and it IS under warranty! How the heck to I send thing thing in for either repairs or (much preferably) my money back?!?!?

    Please contact official HP Customer Support in USA, via  Contact Support , to initiate warranty service for your computer.
    If you have any further questions, please don't hesitate to ask.
    Please click the White KUDOS "Thumbs Up" to show your appreciation
    Frank
    {------------ Please click the "White Kudos" Thumbs Up to say THANKS for helping.
    Please click the "Accept As Solution" on my post, if my assistance has solved your issue. ------------V
    This is a user supported forum. I am a volunteer and I don't work for HP.
    HP 15t-j100 (on loan from HP)
    HP 13 Split x2 (on loan from HP)
    HP Slate8 Pro (on loan from HP)
    HP a1632x - Windows 7, 4GB RAM, AMD Radeon HD 6450
    HP p6130y - Windows 7, 8GB RAM, AMD Radeon HD 6450
    HP p6320y - Windows 7, 8GB RAM, NVIDIA GT 240
    HP p7-1026 - Windows 7, 6GB RAM, AMD Radeon HD 6450
    HP p6787c - Windows 7, 8GB RAM, NVIDIA GT 240

  • How do i restrict access on ipad for public use?

    My employer would like to set up Ipads in each office to display our advertizements and products as well as play informative videos.
    Eventually we would also like to be able to set up access on the ipads for the clients to type in their personal info and submit quote requests electronically.
    However, we want to be able to restrict the access so that the public are only able to view and access specific apps or websites that we have chosen.
    also if anyone has a recommendation on an app that provides a pausable slideshow for displaying documents that would be helpful as well.

    One option would be to investigate an MDM such as AirWatch.  Devices can be placed in Single App Mode, or setup with a restricted browser.  You can also display business content on your devices. 

  • Fire fox not responding, locks computer, have to use task manager to reset

    Firefox continually stops responding when I click on a bookmark. I get the info at the top of my screen that Firefox is not responding. Now if I go to MS office and am working in Word with Firefox in the background, word freezes. I go to Task Manager, it says Firefox not responding. End task and office works. Even without office running, I still get the not responding problem. I use Windows 8.1 on a Dell desktop. This problem has been happening since Friday the 21st.

    Problems with bookmarks and history not working properly can be caused by a corrupted places.sqlite database file.
    You can check for problems with the places.sqlite database file in the Firefox profile folder.
    *http://kb.mozillazine.org/Bookmarks_history_and_toolbar_buttons_not_working_-_Firefox
    *https://support.mozilla.org/kb/Bookmarks+not+saved#w_fix-the-bookmarks-file

  • ICal calendars on web for public use

    Where can I find list of iCal public  calendars on web that I could sync to for iPad and iPhone?

    Sorry to disappoint you but there is no way of doing that without introducing new equipment. Your LAN is physically and Logically connected together so there is no stopping someone connecting to your LAN via an unsecured AIrport.
    To do it you would need some sort of firewall in-between. Ideally it would have 3 network interfaces, 1 WAN, 1 LAN & 1 DMZ. You could then connect the public Airport to the DMZ as both the DMZ & LAN will be able to access the internet but the DMZ will not allow connections to the LAN.

  • NB 305 7 Starter Restore "Preparing Computer for first" use how long stuck??

    OK, I've searched far and wide for a straight forward answer on this, but I can't seem to find one anywhere... 
    So I did a restore on my NB because the guy I bought it from had deleted everything, but didn't do a restore, and It's running 7 starter, and didn't come with a disk...
    So I went through the wizard and got everything partitioned and the reboot, now It's stuck (maybe I don't know) on the "setup preparing desktop"  page, and has been like that for a little over an hour. 
    Now I'm not sure, how long it's supposed to take, as I just got it and haven't played with it much, but Is it supposed to take this long?? If not, what can I do? I saw a couple posts about going through CMD to remove drivers, but I don't have a disk, or USB, and I don't think I can get into BIOS or safe mode.. Anything would be helpful! Thanks guys!
    Solved!
    Go to Solution.

    mini notebook NB305-N413BN
    Downloads here.
    You should obtain a recovery USB thumb drive from Toshiba. Scroll down to Get Recovery Media here.
    For instructions, see the section Restoring from recovery DVDs/media, which begins on p. 62 of the User's Guide.
       NB300 Series User’s Guide
    -Jerry

Maybe you are looking for

  • Can't type Pantone values in the Color Picker with Ai CS6

    Hi Illustrators, I'm running Design and Web Premium CS6 on a Windows 7 machine. I was recently using Ai's Recolor Artwork dialogue for a CMYK document. I wanted to convert my 4 color artwork to Pantone solid coated. I decided to chose some different

  • Ipod unknown error message 'Unable to store pair record'

    I get this error: "iTunes cannot connect to this iPod touch. An unknown error message 'Unable to store pair record', was received from the device"

  • [SOLVED] [Openbox] Icon-theme not working(?)

    Hi! I hope you guys could help me with the following problem. Currently I'm running Openbox, compton, tint2, gtk2/3 on my Arch-system. The problem I'm having right now is that tint2 tray icons are not showing Faenza-Dark but showing gnome(?) dark ico

  • Linked PO and SC

    Hi Experts, How I can get number SC from PO?? I used BBP_PD for GUID PO and from this how I can get exactly table name of SC? Also I tried use FM BBP_GETPO_DETAIL, and find SC number from E_Header_REL, but i need the table because I need PO in last t

  • Custom images in Oracle BI

    I needed to add the custom images in my BI dashboard and followed the same guidance provided on OTN threads to add the images in the 3 diffrent directory locations in my 11g setup. After Adding it to the 3 different path I restarted my presentation s