Password Particular Files

Hi I have some tickets in pdf format that i ordered through Ticketmaster for a couple upcoming concerts. Is there any way i can password protect just these particular pdf's so no one can go on my mac and print out my tickets?

Hello Thomas.
You shouldn't allow anyone access to your Mac when logged in to your user account and Home folder/directory.
If there is a family member or someone else that uses your Mac on a regular basis, you should create a user/login account for the regular user without admin privileges and disable automatic login which requires manually entering the password for your user login account when starting up or restarting the computer and you can also require your login password when waking the computer from sleep or screen saver.
For the occasional user, you can create a "Guest" user login account without admin privileges and enable Fast User Switching which makes the process of switching between login accounts a fast and easy process. When stepping away from your Mac, you can log out from your account or enable the screen saver, etc.
Other than that, yes by creating an encrypted disk image.
See About Encrypted Disk Images and How to create a password-protected (encrypted) disk image.
I use the same to protect sensitive files/data and I don't save the password for my encrypted disk image in my Keychain but when doing so, if you forget the password for the encrypted disk image, all files/data stored within cannot be recovered.

Similar Messages

  • Password protect files and folders Creative Cloud Files

    I know this feature has been requested a number of times, but I'm just wondering if anyone knows whether or not the ability to password protect files and folders for sharing purposes is in the works? It appears to be a glaring omission to me, particularly as Adobe's vision for the Creative Cloud encompasses the corporate world, where security is obviously of great importance.
    Any news would be welcome.
    Best regards
    Liam

    Moving the discussion to File Hosting, Syncing, and Collaboration forum.
    Thanks,
    Atul Saini

  • I have sent a file to the trash bin. When I come to empty the trash bin everything goes out except this one particular file and I get a note saying the file is 'in use' but it is not. How can I delete this file from trash?

    I have a Macbook Pro with OS X Lion 10.7.2. I have sent a work file to the trash bin along with many other files. When I empty the trash this one particular file remains and I get a message that this file is still in use. I have tried returning the file to my documents, opening it, closing it and then sending it to trash and again I try to empty trash but the same message comes up - Q - How can I trash this file permanently?

    First just try logging out and back in.  Whatever is holding on to it may not be running after the logout thus freeing it so you can trash it after logging back in.
    You might also try Trash It!
    Lastly, look at the following for suggestions:
    The X Lab: Solving Trash Problems

  • Why can't I save my password protected file in a password protected folder?

    I've just encrypted my folder which contains password protected files. I've attempted to save a new password protected file (Word document) but have had to save it to my desktop because when I try to save the file to the folder I receive a message: "Word cannot save or create this file. The disk may be full [which it is not] or write-protected [which it is]". Sooooooo. Does this mean I can only password protect the folder and not the files? Which is really annoying because I really do need the two levels of security. Please can someone help?

    File Vault is not in Disk Utility.  It is in System Preferences/Security/FileVault.

  • Dynamic UserID/Password for file Adapter

    Hi,
    How to use dynamic UserId/Password for file adapter ?
    (Sender/Receiver)
    In our case the Id/Pwd of FTP Site changes freguently.
    Can anyone help.
    Thanks in Advance
    Regards
    Chemmanz

    Hi Chemmanz,
    >>>>In our case the Id/Pwd of FTP Site changes freguently.
    but do you have those passwords in the message payload?
    if not then you will still have to fill it somewhere right?
    BTW
    the only way would be to use java proxies and write a simple ftp adapter inside it (or your own adapter)
    but this is not possible in standard I believe
    Regards,
    michal

  • Can not  open  a  password protected file from OSX2.8 in OSX4.x

    I have a few files that I password protected in OSX2.8 that will not open now in OSX 4.6. The are not part of the vault type protection. It seems that the feature of individually password protecting files in the earlier OSX system do not open, nor give the option to even give the password. In the get info window there is no option to change or type in the password. The password is not related to the administrator password and it seems that it was a feature that did not follow through to the later OSX version. The only alternative I can think of is to install OSX 2 on an external and hope it gives me the option.
    Does anyone know how to deal with this type of individually protected file in OSX 4.6? I have tried the vault, and the get info, but nothing seems to work to even give me the option to enter a password for an individual file. They are jpeg, and QuickTime, and Photoshop .psd files.
    Any ideas?
    Thanks

    Then it's probably not 100%-compatible with the PDF security standard. You
    should post this question on an iText forum.

  • Password protected files do not preview.

    Can someone help me?
    When I upload a password protected file with restrictions on printing and editing it does not preview the file. I have not set any password for viewing or opening the file. I want to share the document but not allow for people to download it i.e. just for online viewing.
    I do understand that download of the document is inevitable for a person that has some basic level of computer literacy but still want to get that done.
    Is what I am trying to accomplish possible?
    Regards.
    Edit: I am referring to Acrobat.com document management and sharing.

    Hi
    I am having the same problem, the image does not appear in the main preview box, it is shown in the sidebar window but you cannot drag it into the main window, I have tried tiff and jpg but to not avail, the only way I can import into main window is converting the picture into eps (but it then automatically converts to a PDF format before importing), I am running 10.6.2, any ideas

  • Check if external program (MS Excel) is active and has opened a particular file

    All
    I need to find some solution for next problem (Visual Studio 2010). I have a form with some buttons. Those buttons open Excel-files from a network share and the Excel-files are marked as shared (meaning they can be opened/edited by multiple users from different
    computers at same time).
    Anyway, when the user presses the button on the form, the file opens in Excel as expected. If he presses the button again, the file is opened again in a second Excel instance. I want to build in some check: if the file is already opened in an existing Excel
    instance, that instance should become visible.
    That's not all: there is a possibility the user already opened the Excel-file before he launched my application. If he then presses the button, the existing Excel-instance (with this particular file) must be shown.
    Of course, the user can close his Excel file. So if he then presses the button, a new Excel instance should start up which opens the file.
    How can this be done?
    Regards
    Kris

    Hi,
     Here is an example that will find any instances of Excel and check if they have a specified file name opened.  If it is found it will bring the Excel window to the foreground or if it is minimized it will be restored.
    Imports System.Runtime.InteropServices
    Public Class Form1
    <DllImport("user32.dll", EntryPoint:="SetForegroundWindow")> _
    Private Shared Function SetForegroundWindow(ByVal hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <DllImport("user32.dll", EntryPoint:="ShowWindow")> _
    Private Shared Function ShowWindow(ByVal hWnd As IntPtr, ByVal nCmdShow As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <DllImport("user32.dll", EntryPoint:="IsIconic")> _
    Private Shared Function IsIconic(ByVal hWnd As IntPtr) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <UnmanagedFunctionPointer(CallingConvention.StdCall)> _
    Private Delegate Function EnumCallBackDelegate(ByVal hwnd As IntPtr, ByVal lParam As IntPtr) As Integer
    <DllImport("user32.dll", EntryPoint:="EnumChildWindows")> _
    Private Shared Function EnumChildWindows(ByVal hWndParent As IntPtr, ByVal lpEnumFunc As EnumCallBackDelegate, ByVal lParam As Integer) As <MarshalAs(UnmanagedType.Bool)> Boolean
    End Function
    <DllImport("user32.dll", EntryPoint:="GetWindowTextW")> _
    Private Shared Function GetWindowTextW(ByVal hWnd As IntPtr, <MarshalAs(UnmanagedType.LPWStr)> ByVal lpString As System.Text.StringBuilder, ByVal nMaxCount As Integer) As Integer
    End Function
    Private Const SW_RESTORE As Integer = &H9
    Private ChildHandles As New List(Of IntPtr)
    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
    'Check if Excel has "My Excel File.xls" opened
    If Not IsExcelFileOpen("My Excel File.xls") Then
    MessageBox.Show("Excel does not have this file opened.")
    Else
    MessageBox.Show("Ecell has this file opened.")
    End If
    End Sub
    Private Function IsExcelFileOpen(ByVal filename As String) As Boolean
    ChildHandles.Clear()
    For Each p As Process In Process.GetProcessesByName("EXCEL")
    EnumChildWindows(p.MainWindowHandle, AddressOf EnumChildWindowProc, 0)
    For Each h As IntPtr In ChildHandles
    Dim sb As New System.Text.StringBuilder(256)
    GetWindowTextW(h, sb, 256)
    If sb.ToString.ToLower.Contains(filename.ToLower) Then
    If IsIconic(p.MainWindowHandle) Then
    ShowWindow(p.MainWindowHandle, SW_RESTORE)
    Else
    SetForegroundWindow(p.MainWindowHandle)
    End If
    Return True
    End If
    Next
    Next
    Return False
    End Function
    Private Function EnumChildWindowProc(ByVal hwnd As IntPtr, ByVal lParam As IntPtr) As Integer
    ChildHandles.Add(hwnd)
    Return 1
    End Function
    End Class
    If you say it can`t be done then i`ll try it

  • How do I keep a Pages 09 password protected file in iCloud?

    After uploading a Pages 09 password protected file from my laptop it shows as a page with the Pages 09 icon in the center (no visible text) in iCloud.  So far so good.  But once I open that doc using my iPhone, a task that as expected requieres entering the password, the protection seems to disapear and the file gets saved without the protection right in iCloud. The icon for the document changes from the Pages icon I described above to the text of the first page, just as a regular file, and if I try to open it back again entering the password is not requiered!
    How do I keep the file password protected?
    Thanks.  Ale

    Files stored in iCloud are stored locally as well as on some remote Apple server - just not on the desktop. You cannot keep the file on the desktop but you should be able to locate it in your Mobile Documents folder, make an alias, and put the alias on your desktop.
    The Mobile Documents folder is in your Library folder (hold option while selecting the Go menu in the Finder) and your Numbers documents are located in com~apple~Numbers

  • How do I save a password protected file without a password?

    Someone sent me a password protected file and I want to save it on my computer without the password.
    Thanks,
    Scott

    Hi Scott,
    It is not possible to save a password protected file without a password with Adobe Reader, you would require Adobe Acrobat to remove the password protection. Even with Adobe Acrobat you can only remove the security if you are aware about the password otherwise you need to contact the Author/creator of the PDF to remove the security.
    Regards,
    ~Pranav

  • How to open password protected files in Numbers for iPad?

    In my company, there are formats created in Excel 2010 which have password-protetected cells. Neither Numbers, nor Doccuemts to Go can't open them.
    The workaround is having someone open the file in my office and re-save it in an older version, but it messes up with the formatting and it's simply not a practical solution.
    Documents to Go still doesn't support Office 2010 password protected files. Numbers niether, so does anyone know of any app that can solve my problem?

    Go to the App Store on your iPad and download Adobe Acrobat DC (formerly called Reader).
    Open it and click on Help. Then click on Handbook. Read the section on "Open PDFs in Acrobat DC"

  • Is it possible to set an opening date for a password protected file

    Is it possible to set an opening date for a password protected file!
    I want to lock a folder and then have it open on a perticular date not just open with a password so that i am not tempted to open it. Is it possible?

    Yes. Go to the Settings app, and select safari. There will be a section called "Autofill", and you can enable it to save your passwords and auto-fill your personal information taken from the address book. Also, iOS automatically saves all Wi-Fi passwords, so there is no need to save it manually yourself.

  • HOW TO SEARCH THE LOCATION OF A PARTICULAR FILE(say a doc file) IN JAVA

    JAVA CODE FOR FINDING THE LOCATION OF A PARTICULAR FILE(say a doc file)

    Well you can write a recursive/iterative code using methods provided by
    java.io.File class.
    However,there are few customized frameworks coming up which can to job for you please have a look at.
    https://filesearch.dev.java.net/
    else where if you wanna build up your own solution the below POST could be useful.
    http://en.allexperts.com/q/Java-1046/desktop-file-search-1.htm
    or you might go ahead and use source of file search utility where an implementation is provided in the below article
    http://jdj.sys-con.com/read/36412.htm
    Hope this might help :)
    REGARDS,
    RaHuL

  • OpenInWindowEx Method fails to open password protected file.

    Hi,
    I am getting issue while opening password protected file thru OpenInWindowEx Method. It rerurn 0. So please let me know how to open paasword protected file thru code ?
    Regards,
    Arvind

    Hi,
    It just returns 0 which means failed to open file. And I am using Adobe Acrobat 8.1.3 on window XP.
    You can test this in the sample application named ActiveViewVC.
    So I want to know whether we can open password-protected file using the OpenInWindowEx method or not?.
    Please let me know your response
    Regards,
    Arvind

  • AirPrint and pdf password protected file issue

    Hello
    I'm facing issue while printing pdf password protected file via Airprint.
    From my iPhone /iPad I can print without any issue to my HP dj 2540 almost everything except pdf password protected file.
    The same pdf file (protected with password) can be printed without any issue form any PC/laptop.
    Do anyone have any idea on how to solve this issue, please?
    Thanks
    regards
    Michele

    It seems that everyone asking this question have links from Grand Canyon University which will soon have over a 100,000 online students that all use ebooks that open just fine in Adobe Acrobat on their PCs BUT NOT on the mobile versions of Adobe Acrobat. Whatever allows this on PCs needs to be added to the mobile version soon.  We rely on our etextbooks that can ONLY be opened on the PC version of Acrobat.  That is ridiculous.  I can't believe with all the posts regarding password protected ebooks on this forum....that it hasn't been resolved.  No one can give you a link because the ebooks are on a website that needs a password.  We can save the books to our harddrives/dropbox...  I could send you a copy, but thats it.  Surely someone at Adobe knows what the hell is going on and can test the problem out themselves?

Maybe you are looking for

  • How to get the files in presentation server while uploading?

    how to get the files in presentation server while uploading? give me the function module name

  • 4 months of iPad problems

    Just a report on my recent experience with Apple support on an iPad. In May, I bought the top of the line iPad3 (64Gb + 4G). A couple of weeks later, problems started to appear, in random order. - half of the screen started to flicker - spontaneous r

  • Webi Report Error: INF

    Hi All I am having an issue with one of the WEBI report. As soon as I open the report it pops up a box with header HTTP Status 500 - Internal error and error in the box is (Error: INF). On data refresh it gives the same error after couple of minutes,

  • Trouble connecting my email account using ntlworld

    I have recently purchased an ipad2 and I am having trouble with the settings for my ntlworld email account and cannot seem to get it to send but I can receive emails. Any ideas?

  • SSO Configuration in the Portal - Configtool screen greyed out

    Hi, I am trying to setup SSO to our AD server in our portal system. However, when I go into the config tool to change the settings in the UME LDAP Tab - the screen is greyed out and I cannot change anything. Anyone know how I can modify this screen?