How to create a password

I have an apple tv 2 I have an airport extreme with a hdd attached with movies, I want to watch those movies on my apple tv and my tv set and my iPad 2 how I do that I have no password for the apple tv , how I create an I'd an a password for my apple tv. Thanks.

First, if you didn't create a password when you set up your account
Go to System Preferences - accounts
Click you account name and click change password
Leave old password blank (assuming you never entered a password initial creation)
Enter new password
confirm password
click change password
Next, click the lock and using an administrative account (if you only have one account, that's the administrative account), authenticate
Click Login Options
Uncheck Automatic Login
Restart your computer to make sure it works
Ben

Similar Messages

  • How to create a password file for executing psadmin command to deploy portl

    how to create a password file for executing psadmin command to deploy portlet

    What you have done is perfectly right. The password file doesn't have anything else apart from the password
    for example in your case
    $echo password > /tmp/password.txt
    However I remember that in windows install, the Application server used to wait for a user's input when a deploy was to be done for the first time. So Can you read the Release notes or the Readme file which has come with windows.
    The solution was,
    manually use asadmin command of application server to deploy some war (any webapp will do), at this time, a question will be prompted to accept a certificate. once this is done, deploy portlet should work fine!!!
    HTH

  • How to create a password for the pdf file

    In Adore Acrobat XI, how to create a password for the file? The help states going to Tools Menu and clicking on Protection tab - but there is no such option. In the file - properties - security screen, it shows the security details but does not allow to edit it.

    I think you may be mixing up two different products: Adobe Reader (free), and Acrobat ($$).

  • How to create a password on mac mailbox

    how to create a password on mac mailbox

    I don't agree with that point, password protect only one mailbox is definitily possible,
    see How to password protect only one mailbox in Mac Mail for more details.

  • How to create a password on windows folder using form developer

    Dear friends
    i want to create a password on folder of ms windows. i think we use host() or ora_ffi. but i don't know how to use it to create a password. if any one knows my request please inform me step by step as soon as possible
    thanks a lot
    God bless all of us
    shafiq malik

    How To Encrypt A Folder With Password Protection In Mac

  • How to create Global password and user information list in Linux

    Hi ,
    OS is : OEL, We have some requirement, we need to create global password and Users information, that location sould be accessable to all users, can any one guide me how to do it in Linux.

    Could you give us a little more details? Are u looking for something like a centralized authentication system? or....what exactly?
    kido

  • How to create a password with JTextField

    Hi, I need to create a password field on the JTabbedPane. I can create a TextField and setEchoChar to make it a password field. However it is not working well with the rest of the JComponents. Can I do this on a JTextField? I could not find the functionality.
    Thanks for the help!
    -Joanne

    use JPasswordField instead

  • How to create a password file for 9i database

    I just created a database 9.2.0.5 based on another database. I copied the password file to the new database. I got an error. How can I recreate one?
    Thanks a lot!
    SQL> startup;
    ORACLE instance started.
    Total System Global Area 337204540 bytes
    Fixed Size 455996 bytes
    Variable Size 268435456 bytes
    Database Buffers 67108864 bytes
    Redo Buffers 1204224 bytes
    ORA-01991: invalid password file '/local/ORACLE/OraHome1/dbs/orapwilnktest'
    SQL>

    Do you think the password is the sys password?Time to go through the doc :
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96521/dba.htm#1227
    Nicolas.

  • How to create forgot password feature

    How can I create a "Forgot Password" link on the apex login screen that asks for users email address or userID and resets their password to a random one and emails it to them..

    I think we took the wrong path, that wont work out. I was looking at the APIs and found that we can change the user at run time.
    I think this should work..
    1. create login page as public
    2. In case password reset, grab the user name and change the current user as any admin user using the API Procedure SET_USER( p_user IN VARCHAR2)
    http://download.oracle.com/docs/cd/B31036_01/doc/appdev.22/b28550/api.htm#BABIBIBH
    3. Now that you have the admin user , you know the current user's ID and you know the API to change the password for a particular user
    APEX_UTIL.RESET_PW(
    p_user IN VARCHAR2,
    p_msg IN VARCHAR2);
    http://download.oracle.com/docs/cd/E14373_01/apirefs.32/e13369/apex_util.htm#insertedID69
    I think these if you work around these steps you could build change password fuctionality.
    Thanks,
    Manish

  • How to creat a Password Protected Folder

    Hi
    I was wondering how do I create a single folder that contains all of my passwords (Banking ...etc) that only I have access to - I would like to password protect this foder and if possible have the information inside encripted.
    I was looking into security vault - but I'm afraid it encripts all the folders on my Mac. I just want to create a single folder - everything else should be as it was.
    Any help is greatly appreciated
    Thanks

    Create a password-protected (encrypted) disk image
    1. Open Disk Utility at /Applications/Utilities.
    2. Images>New>Blank Image... or click the "New Image" button in the Toolbar.
    • go to step 3
    2a. To encrypt an existing folder..
    • Go to...Images>New>Image from Folder.
    • In the dialog window, select the folder and press "Open"
    3. Type and/or select from popup window .....
    • Name • location • Format
    • Size (no size option for folder)
    • Encryption .....AES-128 must be selected
    4. Click the "Create" button ..... or if Image from folder was used, click "Save"
    5. Enter and verify your password when prompted and click "OK".
    6. The .dmg will appear on the desktop and the left pane of Disk Utility.
    •Important...If you forget the password, the data stored will be lost.If you save your password in the keychain file, it will be available to you there.
    An easy way to password-protect certain folders
    To password protect a specific folder in any version of OS X, if you're an administrator, simply change the permissions in the "Get Info" box so that the folder is owned by the system. You'll be prompted for a password. To access the folder again, just change the ownership back - and it will require a password to be made accessible.
    Secret Folder lets you conceal a folder and its contents.
    http://apimac.com/secret_folder/index.php

  • How to creat a password for a HTML link ?

    Hello,dear all,
    This question may not be closely related to Java,but I hope to get some help.
    I created an HTML link in the webpage, but I only want the people who has the password to access it. Say when a person click that link, a dialog box pop up requiring for your password.
    How should I implement it? using JavaScript ?
    Any help are greatly appreciated.
    Kevin

    There's a very simple and very nasty way of restricting access to pages. Put them in a folder named after the password. Your javascript can then just do something like:
    document.location.href = document.loginForm.pword.value + "/index.html";It's a mess and obviously requires that your parent directory can't be browsed. But, it's about as good as it gets with Javascript and requires zero effort.
    If you're serious about security then I'd look at something other than Javascript (as suggested above).

  • How to create a password policy for password syntax?

    Hi,
    I need to apply a password policy in OID that checks the password syntax. We need to verify that the each password contains at least three of the four character groups (Capital Letters / Small Letters / Numbers / Special Characters). In OID, I may only check for minimum Length and a min Number of Numbers. Is there an easy way to do this? (Plugin in OID?)
    For the Web-Part (eg. Portal) its quite easy, as we may create a Javascript to check the syntax on the "change password" page, but as we have diffrent types of access, we want to get the rule applied in one place.
    Thanks for help
    Alex

    Hi,
    In addition to Martin’s suggestions, we can also choose to change the scope of the existing GPO with Security Filtering.
    Regarding Security Filtering, the following article can be referred to for more information.
    Security filtering using GPMC
    http://technet.microsoft.com/en-us/library/cc781988(v=WS.10).aspx
    Filter Using Security Groups
    http://technet.microsoft.com/en-us/library/cc752992.aspx
    Best regards,
    Frank Shen

  • How to create new password policy in FIM

    Can anyone assist me is there any way to create a new password policy in fim similar to creating password policy in OIM.Any related inforamtion is useful and appreciated.

    Ref to below Link it might give you some idea:
    http://www.iamblogg.com/password-policy-violation-exporting-to-ad-from-fim-2010/
    Regards~
    Deepak Arora
    If you Find the Answer | Article | Blog Helpful Please Vote As Helpful / Mark As Answer

  • How to create a password file?

    Dear buddies,
    I tried these steps but getting error.
    Please advice on how should I go about it.
    in my pfile: REMOTE_LOGIN_PASSWORDFILE = shared
    C:\Documents and Settings\administrator>orapwd file=D:\oracle\admin\u
    at password=mydba
    OPW-00001: Unable to open password-file
    C:\Documents and Settings\administrator>orapwd file='D:\oracle\admin\
    uat' password=mydba
    OPW-00001: Unable to open password-fileWhere am I making a mistake?
    Thanks.
    Nith
    Edited by: user645399 on Dec 16, 2010 4:33 PM
    Edited by: user645399 on Dec 16, 2010 4:37 PM
    Edited by: user645399 on Dec 16, 2010 4:37 PM
    Edited by: user645399 on Dec 16, 2010 4:37 PM

    Dear oradba,
    I tried but it failed:
    SQL> $orapwd file='D:\oracle\admin\uat\pwdfile' password=mydba
    OPW-00001: Unable to open password-file
    SQL>and also this
    SQL> $orapwd file='D:\oracle\admin\uat\pwdfile.txt' password=possedba
    OPW-00001: Unable to open password-fileThanks.
    Nith
    Edited by: user645399 on Dec 16, 2010 4:45 PM

  • How to create a password protected file using pages

    Hi I wanna know how to password protect a pages document on iPad?
    thanks

    How To Encrypt A Folder With Password Protection In Mac

Maybe you are looking for

  • Automaticf creation of purchase order through pr

    Dear Consultants, system is not creating automatic  purchase order. in me59n i am getting the following error Requisition could not be converted i have done the following setting for automatic creation of purchase order 1. in materil master record i

  • SCCM 2012 R2 SRS Repointing Point Error 7403

    I have install the Reporting services point and I'm receiving error 7403 "The report server service is not running on Reporting Service Point server "SFSCCM1W.SFCCMO.EDU"; start the service to enable reporting." Server 1: SCCM 2012 R2 Server 2: SQL 2

  • Using numbers as accounting application and combine with ical

    I am facing a slight challenge. I love using quickbooks, but there is no version for Mac in SA. I need to be able to set up numbers in such a way that when I save an ivoice as a pdf, the information on the invoice is saved on a spreadsheet in date or

  • DFU Mode not recognised in iTunes?

    Hi everyone :) Recently I put my iPod into DFU mode, to do a restore. However, when I put it into DFU mode, iTunes did not regocnise it. I'm aware that recovery mode is a similar thing, but I'm worrying about the DFU mode. I'm on an iPod Touch 4th Ge

  • Index not using the base table

    Hi, In which scenario, a query will only use the index and not the base table. Please give me some example. Thanks, Santhosh Edited by: Santhosh on Oct 23, 2012 2:45 AM