I'm unable to grant full access to 2nd user account. What am I missing

While our MacBook Pro is out for repairs, I need a way to process my wife's emails and other business. So I'm trying to set up a 2nd user account for my wife on our iMac (running 10.7.5 Lion). Unfortunately, every step I've tried has failed to grant permission for her account to access the iMac desktop or launch applications other than Safari.
Here's what I've tried:
1. I created an account with my wife's name and password under Users & Groups in System Preferences.
2. In her Users & Groups account, I granted her Adminstrator privileges.
3. In the Sharing folder in System Preferences, I selected all the folders except those labeled "remote" and "xgrid" (whatever that is). I granted Read & Write privileges for each one. These included two Desktop folders, and I added the folder for Applications.
4. I made sure File Sharing was turned on, along with Printer Sharing, Web Sharing, Screen Sharing, Internet Sharing, etc.
5. Under Sharing Options, I noted a checkmark in the box labeled "Share files and folders using AFP", although the "number of users connected" was 0. I left that alone.
6. Because several sharing choices were listed as "blocked by firewall," I turned the Firewall setting off.
Despite all this, when I log in as my wife, I cannot launch any major applications except Safari, whether from the Dock or Applications folder. In fact, most of the apps in the folder are grayed out. And when I try to access the Desktop, Other Files, and various other folders, I receive a message that her account "does not have permission to see the contents." Why not? What have I overlooked?
This is becoming an urgent problem, because there's business that must be conducted. I have had similar problems with the iMac from the start, when it refused to accept me as the rightful owner of files that were transferred from our older Mac Pro dwesktop. Yikes!
Any help on this will be very much appreciated. Thanks.
Message was edited by: David Henderson7

Hey thomashfrompa,
Thanks for the question. I understand that you are experiencing issues with iTunes for Windows. The following article outlines the error message you are receiving and a potential resolution:
iTunes 11.1.4 for Windows: Unable to install or open
http://support.apple.com/kb/TS5376
Some Windows customers may experience installation issues while trying to install or open iTunes 11.1.4.
Symptoms may include:
"The program can't start because MSVCR80.dll is missing from your computer"
"iTunes was not installed correctly. Please reinstall iTunes. Error 7 (Windows Error 126)”
"Runtime Error: R6034 - An application has made an attempt to load the C runtime library incorrectly"
"Entry point not found: videoTracks@QTMovie@@QBE?AV?$Vector@V?$RefPtr@VQTTrack@@@***@@$0A@VCrashOnOverf low@@***@@XZ could not be located in the dynamic link library C:\Program Files(x86)\Common Files\Apple\Apple Application Support\WebKit.dll”
Resolution
Follow these steps to resolve the issue:
Check for .dll files
1. Go to C:\Program Files (x86)\iTunes and C:\Program Files\iTunes and look for .dll files.
2. If you find QTMovie.DLL, or any other .dll files, move them to the desktop.
3. Reboot your computer.
Note: Depending on your operating system, you may only have one of the listed paths.
Uninstall and reinstall iTunes
1. Uninstall iTunes and all of its related components.
2. Reboot your computer. If you can't uninstall a piece of Apple software, try using the Microsoft Program Install and Uninstall Utility.
3. Re-download and reinstall iTunes 11.1.4.
Thanks,
Matt M.

Similar Messages

  • Unable to grant full access permission

    I am trying to grant full access permissions for one user to another users mailbox  when I right click on the user the command does not appear to allow this.  I have tried using the Add-MailboxPermission CMdlet but this is not recognised either.
    My exchange knowledge is relatively limited so it may be something simple, but I would appreciate any assistance.
    best regards
    James

    Turns out someone had saved the wrong credentials in the RDP  connection and I was logging in as the wrong user.

  • Exchange 2010 Unable to Assign Full Access Permissions using a Security Group

    I've been running into this issue lately.  I cannot seem to use groups to allow full access to mailboxes.  When I add them from the EMC, it will show up when you go to "Manage Full Access Permission...".  After waiting a day and even restarting
    the Information Store service, the permissions do not take effect.  When I view the msExchDelegateListLink attribute of the mailbox account, the group is not listed.
    When I grant a user full permission, it works and updates the attribute.  However, on occasion when I revoke the full access permission for a user is doesn't always remove that user from the msExchDelegateListLink attribute.  So the mailbox
    will still appear in Outlook, but the user isn't able to see new emails.
    Any ideas on what may be going wrong?
    Environment:
    Exchange Server 2010 SP1 Standard
    Windows Server 2008 R2 Standard
    Outlook 2010 SP1 (tried without SP1 as well)
    I was looking over Add-MailboxPermission on Technet (http://technet.microsoft.com/en-us/library/bb124097.aspx) and I noticed that it doesn't mention adding groups.  Is this not possible?

    I never got a proper fix.
    I worked around it by creating a script which gets the members of an AD Mail Enabled security group, and updates the full access based on the groups members.
    Here's a script I'm running every hour which updates permissions. It's probably not the most efficient script ever, but it works. It has several benefits
    1. Managers of the distribution group can add/remove mailbox members using OWA or through the address list
    2. New members of groups are added to FULL Access Permissions
    3. Members removed from the groups are removed from FULL access permissions
    4. Automapping works :)
    5. Maintains a log of access added / removed / time taken etc.
    Obviously I have had to remove domain related information, replace with whatever your domain requirements are, and PLEASE debug it properly in your environent first, don't complain to me if it wipes out a load of access for you or something like that!
    It takes about 5 minutes to run in my environement. Some formatting seems to have got messed up on here, sorry. I hope it is of use!
    # Mailbox Permissions Setter for Exchange #
    # v1.1 #
    # This script will loop through all mailboxes in Exchange and find any where #
    # the type is 'SHARED'. These should be determined to be a GROUP/SHARED mailbox #
    # and access to these mailboxes are controlled by a single ACL, e.g. 'ACL_Shared_Mailbox'. #
    # This script will add any members of these ACLs directly to the Full Access Permissions #
    # of the mailbox and also remove them if they no longer need the access. #
    # Script created by Jon Read, Technical Administration
    # Recent Changes
    # 15/11/2012
    # 1.1 Added exclusions for ACLs that we don't want automapping to happen for
    # 12/11/2012
    # 1.0 Initial script
    #Do not change these values
    Add-PSSnapin *Ex*
    $starttime = Get-Date
    $logfile = "C:\accesslog.txt"
    $logfile2 = "C:\accesslog2.txt"
    $totaladditionstomailboxes = 0
    $totalremovalsfrommailboxes = 0
    $totalmailboxesprocessed = 0
    $totalmailboxesskipped = 0
    # Exclude any ACLs that shouldn't be processed here if they are used for a non-standard purpose and
    # we don't want FULL access mapping to happen. Seperate array values with commas
    $ExcludedACLArray = "DOMAIN\ACL_ExcludedExample"
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-Output "#----------------------------------------------------------------#" >> $logfile
    Write-Output "# Mailbox Permissions Setter for Exchange #" >> $logfile
    Write-Output "# v1.1 #" >> $logfile
    Write-Output "#----------------------------------------------------------------#" >> $logfile
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-output "Start time $starttime ">> $logfile
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    # Set preferred DCs and GCs
    $preferredDC = "preferredDC.domain"
    $preferredGC = "preferredGC.domain"
    Write-Output " PreferredDC = $preferredDC ">> $logfile
    Write-Output " PreferredGC = $preferredGC " >> $logfile
    Set-ADServerSettings -PreferredGlobalCatalog $preferredGC -SetPreferredDomainControllers $preferredDC
    # The first part of this will ADD permissions to the mailbox, reading from an associated ACL.
    # Check for all mailboxes where the type is SHARED. These are the only ones we would
    # want to apply group mailbox permissions to.
    foreach ($mailbox in get-mailbox -resultsize "unlimited" | where-object {$_.RecipientTypeDetails -eq "SharedMailbox"})
    $totalmailboxesprocessed = $totalmailboxesprocessed + 1
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-Output "|-------------------------------------------------------" >> $logfile
    Write-Output "| MAILBOX ADDITIONS: $mailbox " >> $logfile
    Write-Output "|-------------------------------------------------------" >> $logfile
    $mailbox=$mailbox.ExchangeGuid.ToString()
    # For each of them, get the distribution list applied to the mailbox (Starting DOMAIN\ACL_)
    # We then need it to be turned into a string to use later.
    #Declared $changes as 0. if this is set to 0 at the end of the mailbox job, we know no changes were made.
    $changes = 0
    foreach ($distributiongroup in get-mailbox $mailbox | Get-MailboxPermission | Where-Object {$_.User -like "DOMAIN\ACL_*" })
    $skipACL = 0
    #Get the distribution group and put the name in a useable format
    $distributiongroup=$distributiongroup.user.tostring()
    Write-Output "Found ACL $distributiongroup" >> $logfile
    # Check if this distribution group needs to be excluded and if it shouldn't be processed
    # then move onto the next ACL. This will stop FULL access being granted if the mailbox is
    # used for a non-standard purpose. See the start of this script
    # for where these are excluded (ExcludedACLArray)
    foreach ($ACL in $ExcludedACLArray )
    if ($distributiongroup -eq $ACL)
    $skipACL = 1
    Write-Output "ACL $distributiongroup is excluded so skipping mailbox " >> $logfile
    $totalmailboxesskipped = $totalmailboxesskipped + 1
    if ($skipACL -eq 0)
    # Get each user in this group and for each of them, add try to add them to full access permissions.
    foreach ($user in Get-DistributionGroupMember -identity $distributiongroup)
    # Get the user to try, convert to DOMAIN\USER to use shortly
    $user="DOMAIN\" + $user.alias.ToString()
    # Check to see if the user we have chosen from the ACL group already exists in the full access
    # permissions. If they do, set $userexists to 1, if they do not, leave $userexists set to 0.
    # Set $userexists to 0 as the default
    $userexists = 0
    foreach ($fullaccessuser in get-mailbox $mailbox | Get-MailboxPermission)
    # See if the user exists in the mailbox access list.
    # Change $fullaccessuser to a useable string (matching $user)
    $fullaccessuser=$fullaccessuser.user.tostring()
    if ($fullaccessuser -eq $user)
    $userexists=1
    # Break out of foreach if the user exists so we don't unnecessarily loop
    break
    # Now we know if the user needs to be added or not, so run code (if needed) to add
    # the user to full access permissions
    if ($userexists -eq 0)
    Add-MailboxPermission $mailbox –user $user –accessrights "FullAccess"
    Write-Output "Added $user " >> $logfile
    $changes = 1
    $totaladditionstomailboxes = $totaladditionstomailboxes + 1
    #Now repeat for other users in the ACL
    #if changes were 0, then log that no changes were made
    if ($changes -eq 0)
    Write-Output "No changes were made." >> $logfile
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-Output "---------------------------------------------------------------------------------" >> $logfile
    Write-Output " FINISHED ADDING PERMISSIONS" >> $logfile
    Write-Output "---------------------------------------------------------------------------------" >> $logfile
    Write-Output " " >> $logfile
    # The second part of this will REMOVE permissions from the mailbox, reading from an associated ACL.
    ## Check for all mailboxes where the type is SHARED. These are the only ones we would
    ## want to apply group mailbox permissions to.
    foreach ($mailbox in get-mailbox -resultsize "unlimited" | where-object {$_.RecipientTypeDetails -eq "SharedMailbox"})
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-Output "|-------------------------------------------------------" >> $logfile
    Write-Output "| MAILBOX REMOVALS : $mailbox " >> $logfile
    Write-Output "|-------------------------------------------------------" >> $logfile
    $mailbox=$mailbox.ExchangeGuid.ToString()
    #Declared $changes as 0. if this is set to 0 at the end of the mailbox job, we know no changes were made.
    $changes = 0
    # For the current mailbox, get a list of all users with FULLACCESS, and then for each of them
    # check if they exist in the ACL
    foreach ($fullaccessuser in get-mailbox $mailbox | Get-MailboxPermission | Where-Object {$_.Accessrights -like "FullAccess" })
    # Get the security identifier (SSID) of the FULLACCESS user to store for later.
    $fullaccessuserSSID=$fullaccessuser.user.SecurityIdentifier.ToString()
    $fullaccessuser=$fullaccessuser.User.ToString()
    #If user needs to be excluded then skip this bit
    #Users added or removed will only start with 07 (07$, 07T, so only run if the user starts with this.
    #This stops it trying to remove NT AUTHORITY\SELF and other System entries
    if ($fullaccessuser -like "DOMAIN\07*")
    # Set $userexists to be 0. if we find the use user needs to remain, then change it to 1.
    $userexists=0
    # Check if this user exists in the ACL, if not, remove.
    foreach ($distributiongroup in get-mailbox $mailbox | Get-MailboxPermission | Where-Object {$_.User -like "DOMAIN\ACL_*" })
    $distributiongroup=$distributiongroup.user.tostring()
    #Write-Output "Found associated distribution group $distributiongroup" >> $logfile
    # Get each user in this group and for each of them, See if it matches the user in the mailbox.
    foreach ($user in Get-DistributionGroupMember -identity $distributiongroup)
    # Get the user to try, convert to DOMAIN\USER to use shortly
    $userguid = $user.Guid.ToString()
    $user="DOMAIN\" + $user.alias.ToString()
    if ($fullaccessuser -eq $user)
    $userexists=1
    #we have found the user exists so no need to continue
    break
    # If userexists = 0, then they are NOT in the ACL, and should be removed from
    # the full access permissions. Run the code to remove them from full access.
    #CONVERT FULLACCESSUSER TO GUID AND REMOVE $FULLACCESSUSERGUID NOT $USERGUID
    if ($userexists -eq 0)
    Remove-MailboxPermission -Identity $mailbox –user $fullaccessuserSSID –accessrights "FullAccess" -Confirm:$false
    Write-Output "Removed $fullaccessuser " >> $logfile
    $changes = 1
    $totalremovalsfrommailboxes = $totalremovalsfrommailboxes + 1
    # if changes = 0, no changes were made to this mailbox, so log this fact.
    if ($changes -eq 0)
    Write-Output "No changes were made." >> $logfile
    #Put the time in a displayable format
    $endtime = Get-Date
    $runtime = $endtime - $starttime
    $runtime = $runtime.ToString()
    $runtime1 = $runtime.split(".")
    $totaltime = $runtime1[0]
    Write-Output " " >> $logfile
    Write-Output " " >> $logfile
    Write-Output "|-------------------------------------------------------------------------------------- " >> $logfile
    Write-Output "| SCRIPT COMPLETE : STATS " >> $logfile
    Write-Output "|-------------------------------------------------------------------------------------- " >> $logfile
    Write-Output "| Total Mailboxes Processed : $totalmailboxesprocessed " >> $logfile
    Write-Output "| Total Additions : $totaladditionstomailboxes " >> $logfile
    Write-Output "| Total Removals : $totalremovalsfrommailboxes " >> $logfile
    Write-Output "| Total Mailboxes Skipped due to ACL : $totalmailboxesskipped " >> $logfile
    Write-output "| Start time : $starttime ">> $logfile
    Write-output "| End time : $endtime ">> $logfile
    Write-Output "| **END OF RUN** - Elapsed time : $totaltime " >> $logfile
    Write-Output "|---------------------------------------------------------------------------------------" >> $logfile
    Write-Output " " >> $logfile

  • Change public share access to read only for public and full access to selected users

    Hi, new to the community just purchased a recertified WDMyCloud 2TB after my 2 years old MyBookLive 2TB HD died due to accidental power cable unplugging. I've got everything setup including MiniDLNA by following instructions on this forum and everything is working  exactly as I want it to except public share. I want public share to be set to read only access for public and full access to certain users (just myself at the moment) and having a "upload" folder within this share with full public access to everything in this folder would be a bonus. I tried login in to ftp with root user and removing write permission for public but that blocks me out as well. I'm sure it's possible by doing some majic on SSH but I wouldn't have a clue so hoping someone here would be able to help me out.

    Mr_Khan wrote:
    What i want is public to have read only access to file server. Public as in users who do not have a user account on mycloud. E.g someone who connects to to my home network for the first time and is able to browse and download content from public share. I'm aware of being able to set indivual access to shares for users like full access, read only and no access but public users won't have a user account.Through the My Cloud UI interface what you seek to do is not possible. The public share like all other share folders are an all or nothing affair when using the adminstration UI. When using the administration UI you do not have granular control on shared folders to limit non users to read only access or set permission levels for subfolders. The workaround to do what you seek and have the public folder set for read only is to change the folder settings via SSH. It may take some work to set the folder security so that users can read/write to the public folder while the guests only have read access. However, if you reboot the WD My Cloud or update the WD My Cloud firmware those settings may be reset back to the default settings where the entire public folder is read/write for all. There are way to prevent this but again it will take a bit of coding to do so via SSH. See this link (even though its for the WD My Book Live) for a starting point on how to use SSH to change the permission levels on the public folder. Another option if one doesn't go the SSH route is to turn off public sharing for the public folder then create a "guest" user account and give that "guest" account read only access to the public folder while all other user accounts have full read/write access.

  • Grant RDP access to ONE user on multiple computers !

    I want to Grant RDP access to ONE user on multiple computers using PowerShell.
    List of computer names are stored in an excel sheet.
    Can this be done easily ?
    Thanks, Yeleshwar

    Hi, this script add users to remote desktop users group.
    $InputServers = Import-Csv "c:\servers.csv"
    $InputUsers = Import-Csv "c:\users.csv"
    $Servercount = 1
    $ServerCountTotal = $InputServers.Count
    $InputServers | ForEach-Object {
    $ServerTemp=$_.ComputerName
    "Starting " + $Servercount + " of " + $Servercounttotal + " : " + $ServerTemp
    $InputUsers | ForEach-Object {
    $objUser = [ADSI]("WinNT://" + $_.Username )
    $objGroup = [ADSI]("WinNT://" + $ServerTemp +"/Remote Desktop Users")
    $objGroup.PSBase.Invoke("Add",$objUser.PSBase.Path)
    "Complete " + $Servercount + " of " + $Servercounttotal + " : " + $ServerTemp
    $Servercount++
    Servers.csv has a header of “ComputerName” and then a list of servers you want to affect one per line.
    Users.csv has a header of “UserName” and then a list of user names Domain/User one per line.
    check this blog > http://www.blackops.ca/cms/blog/?p=215

  • Unable to log in to the FileVault user account

    I was unable to log in to the FileVault user account at this time because an error occurred.
    Q.1: What is FileVault user account?
    I can't reset a new password and to unlock FileVault even my master password is correct.
    Q.2: What can I do to solve this problem?
    Thanks!
    Message was edited by: KaylaHung
    Message was edited by: KaylaHung
    null

    KaylaHung wrote:
    I was unable to log in to the FileVault user account at this time because an error occurred.
    Q.1: What is FileVault user account?
    A security feature of OSX. It encrypts your entire home folder.
    See: [Mac OS X 10.6 Help: About FileVault|http://docs.info.apple.com/article.html?path=Mac/10.6/en/8727.html]
    Do you not remember turning this on, via +System Preferences > Security > File Vault?+
    I can't reset a new password and to unlock FileVault even my master password is correct.
    Q.2: What can I do to solve this problem?
    [Mac OS X 10.6 Help: If you forget your password for your FileVault-protected account|http://docs.info.apple.com/article.html?path=Mac/10.6/en/8739.html]
    Thanks!
    Message was edited by: KaylaHung
    Message was edited by: KaylaHung
    null

  • How do I access my encrypted User Account files from my Back Up hard drive?  Time Machine  was used to create the back up disk; File Vault was used to encrypt the files.

    How do I access my encrypted User Account files from my Back Up hard drive?  Time Machine  was used to create the back up disk; File Vault was used to encrypt the files.

    Thanks.  I will try going through TM.  Since my Simpletech is on the way out, I'll be plugging in a new external hard drive (other than the back-up drive) and trying to restore the library to the new drive.  Any advice or warning if this is NOT the right thing to do?
    Meanwhile, that is a great tip to do an alternate back-up using a different means.  It's been tough to figure out how to "preserve access" to digital images and files for posterity, knowing the hardware will always fail/obsolesce sooner or later, and that "clouds" are only as good as their consistent and reliable accessibility.  Upping the odds with redundancy will help dull the edge of my "access anxiety", though logically, it can never relieve it.  Will look into
    Carbon Copy Cloner.

  • HT1860 I purchased a movie on my apple tv (1st generation) and I'm unable to download the movie to my computer.  What am I missing?

    I purchased a movie on my apple tv (1st generation) and I'm unable to download the movie to my computer.  What am I missing?  I have home sharing set up and can see my computer iTunes on my apple TV.  I just can't see my apple TV movie on my computer.

    Hello theycallmeboz,
    If the movie was purchased on the AppleTV it wont show up in home sharing until that movie has been downloaded to an iTunes library. You can download previous purchases from the iTunse Store at any time. The article below goes over that process.
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    http://support.apple.com/kb/ht2519
    You may also want to take a look at enabling automatic downloads on your computer so that anytime you purchase content, it gets downloaded to iTunes.
    iTunes Store: How to enable Automatic Downloads
    http://support.apple.com/kb/HT4539
    - Griff W.

  • Grant full access object in database

    Hi Experts,
    I try use sysdba account to grant full object access right to a user. But I got error as
    SQL> declare
    2 I number;
    3 begin
    4 FOR I IN (SELECT TABLE_NAME FROM DBA_tables)
    5 LOOP
    6 EXECUTE IMMEDIATE 'GRANT SELECT ON ' || I.TABLE_NAME || ' TO allselectl';
    7 END LOOP;
    8 end;
    9 /
    declare
    ERROR at line 1:
    ORA-00911: invalid character
    ORA-06512: at line 6
    I try to user a DBA account (also as a schema owner_ I got error as
    SQL> declare
    2 I number;
    3 begin
    4 FOR I IN (SELECT * FROM ALL_tables)
    5 LOOP
    6 EXECUTE IMMEDIATE 'GRANT SELECT ON ' || I.table_name || ' TO allselect';
    7 END LOOP;
    8 end;
    9 /
    declare
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at line 6
    Here allselect is a role that created by dba account.
    Could you help me to do this job?
    I use oracle 10gR4 in 32 bit window2003
    Thanks
    JIM
    Edited by: user589812 on Jun 2, 2009 8:31 AM

    Hi Justine,
    Thanks for your help.
    It works and get below error.
    Error executing grant select on "SYS"."SYS_IOT_OVER_4478" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_4484" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_4488" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_5082" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_5168" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_8691" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_8801" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_9694" TO allselect
    Error executing grant select on "WMSYS"."SYS_IOT_OVER_10101" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_40414" TO allselect
    Error executing grant select on "CTXSYS"."SYS_IOT_OVER_40888" TO allselect
    Error executing grant select on "CTXSYS"."SYS_IOT_OVER_40933" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42452" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42459" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42466" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42469" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42488" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42491" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42494" TO allselect
    Error executing grant select on "EXFSYS"."SYS_IOT_OVER_42497" TO allselect
    Error executing grant select on "SYSMAN"."SYS_IOT_OVER_153360" TO allselect
    Error executing grant select on "SYSMAN"."SYS_IOT_OVER_153363" TO allselect
    Error executing grant select on "SYSMAN"."SYS_IOT_OVER_153258" TO allselect
    Error executing grant select on "STRMADMIN"."SYS_IOT_OVER_167992" TO allselect
    Error executing grant select on "STRMADMIN"."SYS_IOT_OVER_168042" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_60551" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_57132" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_147443" TO allselect
    Error executing grant select on "SYS"."SYS_IOT_OVER_147585" TO allselect
    how about to access all of other objects in database?
    Thanks
    JIM

  • Granting full access and Mailbox Caching

    Hi!
    We have a Microsoft Server 2008 R2 (terminal server) with Office 2013. The mailboxes are hosted by Microsoft Online. If a user creates a Outlook profile everything goes well. I
    even have a policy set up that forces to Cache one month to speed things up.
    Now when I give this person 'full access to a colleges mailbox it appears (magically) on its own which is perfect yes? However it starts caching the entire mailbox from that college
    and not just a month. What Group Policy should I set? Or should I do this differently.
    The only Group Policies which I have set (for Outlook that is) are:
    Cached Exchange Mode Sync Settings (1 month)
    Use Cached Exchange mode for new and existing Outlook profiles. (enable)

    Thank you for sharing your solution and experience here. Have a good time.
    Tony Chen
    TechNet Community Support

  • How can I grant Application access to a user via API ) programattically

    how do I grant access to a portal user from API
    I want to grant access to a user from an API, ie I need a
    command to grant "SCOTT" access to "EXAMPLE_APP" APPLICATION as
    an end user?

    Hi,
    I am assuming that you have already updated the EUL in the Administrator Edition, correct? If not, open Discoverer Administrator and login to the database you want to connect to. You must use your EUL user name which I assume has already been created and assigned the correct privileges in the database. You will be asked to update your EUL. Follow the prompts.
    Once logged into the EUL, go to Tools \ Privileges and find the user that you want to give administrator access to.
    Hopefully, this answers your question.
    Regards,
    Nancy

  • Unable to access my Administrator User Account with my CORRECT password.

    The correct password for the Peter Thiess Administrator User account is bandicoot. All I get is the jiggle. I managed to change the password for the account by booting up with OS X Installer disk with the "C" key. Went to Utilities - reset password. Changed password in appropriate fields, added a hint and clicked Save. When I logged on again, the account accepted the new password with the note:
    "you are unable to log in to the user account Peter Thiess at this time"...and THEN the screen jiggled.
    Still no access to all my main stuff including my iTunes library that I built over the past 4 yrs.
    Some weeks ago I opened my secondary acct. (Peter Alexander), which I created for house guests to play. Since I never use this account, I wanted to refresh my memory as to what I had on it. While I was here, I decided to delete "cache" and "cookies" from 2 libraries in the account. I also placed 2 or 3 folders that "seemed" empty (0Mb was in the bottom of the window of the files) in the trash. I don't remember where I plucked those folders from, from Peter Alexander acct. (If a folder is in the computer, even if it seems empty - there must have been a reason for it to be there.) Put them all in Trash and chose the Secure Delete Trash. The beachball started spinning...too long. Attempted to Stop Emptying Trash, so I could swith over to plain old Empty Trash and be done with it. Wasn't allowed to and the beachball kept spinning. This was taking too long, and I wanted to log into my main Peter Thiess Administrator account again. Attempted Restart - spinning ball. Attempted Shut Down, Log Out Peter Thiess, and Force Quit...more spinning bball. Finally I just held down the Power button. That turned it off.
    Rebooted. Went back to the Peter Alexander account to finish emptying Trash. Trash finally emptied. Clicked Restart, got back to the opening window with both my accounts listed and clicked
    Peter Thiess this time. Entered correct password and got "Peter Thiess does not have account privileges at this time" Tried several times, same result each time. Went to Help, then System Prefs, and finally Accounts, and discovered the Peter Thiess Administrator account was de-selected (gray instead of black lettering)?? Anyway, I tried several more times with my known, positively password-then tried some variations until the window "you tried passwords too many times, try again later".
    Took the laptop to the MacSupportStore in Brooklyn, and due to a misunderstanding had the password to the Peter Alexander account, instead of the Peter Thiess account changed. When this mistake was pointed out, they investigated the correct account this time and told me the HD is dying, and that it would cost @ $400 for data rescue/retreval and a new HD. Not having any discretionary funds, I opted to get a Mercury external 500Gb HD instead. I want to rescue my data from my Peter Thiess Administrator account before the internal HD totally gives up the ghost. Suggestions? With deepest appreciation, Peter Thiess (alias - joblo22)

    >spins round a few times and then requests them again
    Mac Spinning Wheel https://forums.adobe.com/message/5470608
    -Similar in Windows https://forums.adobe.com/message/5853430
    or
    Sign Out When Sign In http://forums.adobe.com/thread/1450581?tstart=0 may help
    -and http://helpx.adobe.com/creative-cloud/kb/unable-login-creative-cloud-248.html
    -and 'looping' https://forums.adobe.com/thread/1504792

  • Access Denied creating user accounts through vba

    Hello,
    I have a MS-Access application that runs on a Windows 2012 server. My customer logs into the server using RDP. The MS-Access application is started up automatically by means of the environment variable in the user settings. The customer needs to be able
    to create new windows users for this application, simply by clicking a button.  
    The VBA script to create users works, because when I start up the MS-Access application with my own logged on Administrators account, the new users get created. If my customer tries it, he gets 'Access Denied' error. I have added his user account to
    the Power Users group, but that did not solve the problem. I also tried to make him member of the DCOM Users Group, the 'Access Denied' error remains...
    I do not want to give him administrator priviliges, because he is 'just a customer'...
    What do I need to do for this setup to work? I tried altering some DCom settings, but frankly I do not have enough knowledge to feel comfortable with this. Hope anybody can help me out here...
    best regards, Rob

    Is this a standalone server? Only administrators can create user accounts, so there is no work around for that. You could look at something that has the administrator account/password stored and launch PSEXEC or something else in an elevated session behind
    the scenes but that is a security volunerability because the credentials are stored.
    If the account is being created in an Active Directory environment you could delegate permissions to the appropriate OU for your customer.
    Mark B. Cooper, President and Founder of PKI Solutions Inc., former Microsoft Senior Engineer and subject matter expert for Microsoft Active Directory Certificate Services (ADCS). Known as “The PKI Guy” at Microsoft for 10 years.

  • BOE XI 3.1 - 'View only access' to ADMIN User Account

    Guys,
    we are using BOE XI 3.1 FixPack 1.6 version.
    I want to create a Test ID (for example, Test_ID) which is having ADMIN Access. But i need to provide 'View Only Access' to this Test ID account. Means this Test ID can enter into CMC. But should not modify/delete/add/ users or usergroups or folders in CMC.
    Is it possible to provide 'View Only Access' to the user who is having ADMIN access?
    Much appreciated. Thank you.

    Hi Seb,
    This is not working. I tried the same in one of the Test ID (This is an Enterprise Account).
    But i am getting the message "Account information not recognized: Access is denied" in the CMC login page.
    I logged in via Administrator and verified the Test ID. The account is enabled.
    Please any help.
    Thank you.
    regards,
    Kiruba v.r.

  • I have created an I-tunes playlist consisting of audio recordings recorded in Quick Time 7. The play list works fine in the computer and in the I-pod. However; I am unable to burn the playlist to a Cd disc. what am I missing ?

    I have created an I-tunes playlist consisting of audio recordings (AAC) recorded in Quick Time 7 Pro.. The play list works fine in the computer and in the I-pod. However; I am unable to burn the playlist to a Cd disc. What am I missing ?
    Audio recordings created with Quick time Player 7 and installed as playlist in I-tunes . Playlist works fine in Ipod; unable to burn to a disc. 

    Hi ! to Bd Aqua !
    Thank you for your response. :
    1. Audio recordings recorded in Quicktime 7 pro . Eighteen separate short recordings (18 tracks).
    1A. the combined playlist byte is 28.3 Megabytes
    2. Moved to I-tune.
    3. Created playlist in I-tunes.
    4.I go to file dropdown and request "burn playlist to disc"
    5. Burn Settings dialog box appears.  I click burn.
    6."Insert blank disc", appears in top wlindow.
    7. insert blank disc;  the 'Insert blank disc order" disappears but nothing happens after that.
    There is no indication or even a hint of anything happening.
    Hope you can help, Thanks

Maybe you are looking for

  • FM 'JOB_CLOSE' error ,  JOB_NOSTEPS, user authorization

    There are two users,  userA and userB when i log in as userA to submit job as user B, it was working fine. if the program run by userA:    submit XXXXX       WITH xxxx           to sap-spool           destination 'LOCL'           list name  'FINL_INV

  • "Do not import duplicates" IS importing duplicates

    Why does "do not import duplicates" no longer work in Aperture 3? I've upgraded to 3.1.1. This "pro" app is making managing my photos really a pain in the rear. What. Is. The. Deal?

  • DB link over HSODBC problem

    I've double and triple checked this and can't seem to find out why I am still getting ora-02063 errors. The connection is to a MSSQL server 2000 database from 10G R2, files configured are as such: =====================================================

  • How do I move Firefox URL's to Internet Explorer in English?

    How do I move the URL's of Firefox to Internet Explorer 9.0. I also want to move address book from Thunderbird to Outlook. I am using this on Windows 7 not XP. This is the machine I can communicate with, at the moment. New equipment. Thanks,

  • Keeping itunes organized

    so i've just copied a huge amount of songs from one mac to another via firewire target disk mode... now i realize that i didnt go about getting them into itunes in the best way... i simply copied the files/folders from the itunes music folder to the