I want all users to have access to all programs

I've just hired 2 interns and so for the first time I'm setting up a new user account other than my own administrator account. There are a few things I'd like to do.
1. I figured out that I need to put the files I want to share with both interns into the Shared folder. I'm guessing I did that right because it seems to work.
2. I'd like for both users to have the use of all or most of the software installed on my machine. How can I set that up? Is there a way to only give them access to some software but not all?
3. I'd like to set up their Dock to look like mine. Is there any way to do this other than to take a screen shot of mine and simply recreate it on their log-in?
Thanks,
Ben

Hello Benjamin,
Seems like you are already file sharing with the other computers...That is great.
As far as them using your applications......you must install the applications onto their computers for them to be able to use the application.
As for the look of the dock......Once you have installed the applications onto their computers...you can make the dock look like yours simply by adding the icons to the dock. The dock can change appearance very easily just by dragging and dropping icons.
I am not an expert in sharing but in school we have things set up this way. I have set one computer to act as the main file sharer. Be sure to do periodic back ups...HTH....Jim

Similar Messages

  • Were do I put my iTunes files if I want 2 users to have access?

    Hi,
    I have a question. If I have 2 users on one computer and I want us both to be able to use the music, should I put my iTunes music on the Mac HD/Shared folder? I would guess we can both then access that folder from iTunes? Is this right, or am I way off here?
    Thanks

    http://docs.info.apple.com/article.html?artnum=93195

  • PowerShell - List all users that have access to a particular SPLIstItem

    Hi there,
    In PowerShell - how to list all users that have access to a particular SPLIstItem?
    Thanks so much in advance.

    Hi frob,
    According to your description, my understanding is that you want to list all users who have access to a particular SharePoint list item via PowerShell.
    You can use the following PowerShell command:
    $web = Get-SPWeb http://sp/sites/First
    $list=$web.Lists["listV2"]
    $item=$list.Items | where {$_['ID'] -eq 1}
    $item | Select -ExpandProperty RoleAssignments |Select {$_.Member.DisplayName}, {$_.Member.LoginName}, RoleDefinitionBindings
    In the above command, you need to change the web URL to your site's URL, change “listV2” to the name of your list, and change the ‘1’ to the ID of the list item.
    The result looks like:
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • We have multiple users, each with multiple devices, on 1 apple id - as we want to share music and ibooks etc.  We want the children to have access to the store, but with a financial limit. How do we do this?

    We have multiple users, each with multiple devices, on 1 apple id - as we want to share music and ibooks etc.  We want the children to have access to the store, but with a financial limit. How do we do this?

    Welcome to the Apple Community.
    That's simply not possible I'm afraid. You'd need to give them their own account and allowance or make it so you are required to be there to input the password when they wish to make a purchase.

  • How can I list all users who have access to a particular TABLE or VIEW

    Hi,
    Can someone tell me how I can list all users who have access to a particular TABLE or VIEW.
    Abhishek

    Hi,
    Take a look on this link: http://www.petefinnigan.com/tools.htm
    Cheers

  • Enumerate the users that have access to a particular directory

    Hi, my name is Jennifer and I have been searching for an answer to my problem through several blogs. The problem is that I have a Directory of which I want to not only retrieve the users\groups that have access to it but also enumerate through the groups
    to list actual users. The groups part is the main issue here. If I use get-acl, I can return any number of particular Active Directory groups that have access, however, I need to list the users inside this group and get-acl will not output an object I can
    work with. I thought I could do something like this (which I may have seen on this forum before):
    get-acl "C:\NestedGroupTest" | %{$_.access} \ ft -property identityreference
    This will return the groups\users that have access. Example:
    Domain\OU
    NT Authority\system
    Builtin\users
    ETC...
    I have tried exporting this output to a file and then trying to use get-adgroupmember (which obviously will not work on the non-AD groups) but the objects are of the wrong type so basically nothing in the Active Directory module will work...
    This seems like such a simple issue but it is causing me grief to no end...please help

    I can't guarantee that this will work in all cases, but it seems to work on my test domain. Warning: it's very slow and inefficient. It requires
    this module (get the 3.0 test version), but you can modify the foreach block's code somewhat to get it to work with Get-Acl. 
    Get-Item C:\NestedGroupTest | Get-AccessControlEntry | ForEach-Object { $PropertyNames = $null }{
    if (-not $PropertyNames) {
    # We need to copy the property. This will get a list
    # of the properties on each ACE when it encounters
    # the first ACE (since the rest of this is so ineffecient,
    # we can feel good that we saved some work by doing this)
    $PropertyNames = $_ | Get-Member -MemberType Properties | select -exp Name
    # Create a new hashtable that will be used to create a PSObject
    $NewObjectProps = @{}
    foreach ($CurrentProperty in $PropertyNames) {
    $NewObjectProps.$CurrentProperty = $_.$CurrentProperty
    # Check to see if this SID belongs to an AD group
    Write-Verbose ("Current principal: {0}" -f $_.Principal)
    try {
    $Group = Get-ADGroup -Filter { SID -eq $_.SecurityIdentifier } -ErrorAction Stop
    catch {
    # Write a warning or something?
    if ($Group) {
    Write-Verbose " -> Group, so looking up members"
    $Users = $Group | Get-ADGroupMember -Recursive | select @{N="Principal"; E={$_.SID.Translate([System.Security.Principal.NTAccount])}}, @{N="SecurityIdentifier"; E={$_.SID}}
    else {
    Write-Verbose " -> Not an AD group"
    $Users = $_ | select Principal, SecurityIdentifier
    # Go through each user/non-translated group, modify two
    # hashtable properties, and create the new PSObject
    $Users | ForEach-Object {
    $NewObjectProps.SecurityIdentifier = $_.SecurityIdentifier
    $NewObjectProps.Principal = $_.Principal
    $NewObject = New-Object PSObject -Property $NewObjectProps
    # This will make the new object show the module's custom formatting:
    $NewObject.pstypenames.Insert(0, "PowerShellAccessControl.Types.AdaptedAce")
    $NewObject
    That should resemble the output that Get-AccessControlEntry would give you, but AD groups have been translated to users. If you pipe that to Export-CSV, you'd have plenty of information for each ACE, including the path, principal, security identifier, access
    mask, etc. You could also pipe that to Select-Object and just ask for certain properties (try it with these properties: Path, Principal, AccessMask, AccessMaskDisplay, AppliesTo).
    You can also use the Get-AccessControlEntry function's parameters to do some filtering on the ACEs that are returned (maybe you only want ACEs with FullControl, or ACEs that were not inherited...)
    Give it a shot and let me know if it works for you. If you need more explanation of what's going on in the foreach-object process block, let me know and I'll try to help. It can be modified to work with version 2.1 of my module, and with Get-Acl.

  • Saving so that windows user can have access?

    I have my project all ready and those with quick time...loads up perfectly. However those who have windows have a long wait or pile will not come up. Do you know how i can save my final cut express project so that window users can have access to it?

    thank you. one last question....the quick time movie file can not be seen when opening on a windows. do you know if i need a quick time pro so that i can convert it? or is there a way that i don't know about?

  • List of users who have access to a specific universe

    Hello Experts,
    We have a requirement to get the list of the users who have access to a specific universe. Please suggest how to achieve this ?
    Is there any query to find this list by query builder or query to audit database ?
    We are using Business objects 3.1 sp5.
    Many Thanks
    Ankur

    Ankur,
    Refer to the discussion below:
    how to get a list of reports a user has access to, using either the cms database or the auditing database
    Regards,
    Ashvin

  • I don't want my children to have access to my photos.  How do I keep them seperate on photo stream?

    I don't want my others to have access to my photos.  How do I keep them sperate on photo stream?

    Log out of iCloud on their devices.

  • Query that show all users who have access in BW cubes & Query's Owner

    Hi Experts,
    Good day !!!
    I would like to know if it's possible to create a query that tell us who has access to all the cubes in BW? This is a business requrement that we should create if possbile.  We also wonder if we may also create a query for shows us all the queries and who created them? We are doing this manually for each query. We only manually look for all the areas that I have access, but if it can be done systematically, that would save a lot of time.
    Thanks in advance guys !!!
    Best Regards,
    Marshanlou

    Hi,
    Then For this You need to create the table of your own fields with all the user names in R/3 side and Develop the report,
    Bue users will not the stay in same company , They will be changing and some user will be coming, every time u can t go enhancement.
    Regards
    Radha

  • List of users who have access to multiple mailboxes

    Hi,
    I got the list of around three hundred generic mailboxes
    Please help me with the command which can help me to get the report of all users who has access on those  generic mailbox.

    Hi,
    If you want to export these permissions to a csv file, you can use the following cmdlet:
    Get-Mailbox -ResultSize Unlimited | Get-MailboxPermission | Where {$_.user -notlike "NT AUTHORITY\SELF" -and $_.IsInherited -eq $false} | Select Identity,User,@{Name='Access Rights';Expression={[String]::join(‘, ‘, $_.AccessRights)}} | Export-Csv
    C:\MailboxAccess.csv -NoTypeInformation
    Hope this can be helpful to you.
    Best regards,
    If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Amy Wang
    TechNet Community Support

  • How do I include the photos in a imovie project to the finished dvd so the users can have access to them?

    I've included alot of old photos in an iMovie project and would like to include them on the finished DVD I create with iDVD. I woud like the users to be able to have access to them so they can print them, store them on their own computer or whatever they would like to do. How would I do this?

    You do this by creating a DVD-ROM section on your DVD. See this explanation from iDVD Help.
    Adding files to the DVD-ROM portion of a disc
    You can let viewers copy files directly from your DVD by adding the files to the DVD-ROM portion of the disc. These files are burned onto the DVD and are accessible when the disc is viewed on either a Windows PC or a Macintosh computer, but not a DVD player.
    You can add any kind of file to the disc. For example, if your disc contains a slideshow, you can add the image files to the DVD-ROM portion of the disc so viewers can download them to their own computers and print them. You can also add a file containing your movie production notes and other “extras.”
    To manually add files to the DVD-ROM part of your disc:
    Choose Advanced > Edit DVD-ROM Contents.
    The DVD-ROM Contents window opens.
    Click Add Files, or click New Folder first if you want to create a folder to put the files in.
    Browse to select your files or folders, then click Open to add them to the disc.
    You can also drag files directly to the DVD-ROM Contents window. When you are done, just close the window.
    When you add a file to the DVD-ROM portion of your disc, before you burn the disc the project contains just a reference to the location of the file on your hard disk, not the actual file. So if you delete a file from your computer or move it from its location after adding it to the DVD-ROM contents, you get a “File not found” message when you try to burn your disc. You can either remove these missing files from the DVD-ROM contents or find them on your computer and put them back in the original location so iDVD can access them.
    As you add files to the DVD-ROM contents, be sure to check the DVD Capacity meter in the Project Info window to find out how many gigabytes of disc space are being used. The Capacity meter shows the disc space taken up by the video portion of the disc as well as the DVD-ROM portion.

  • How to get list of users who have access to a SAP module

    Hi,
    We are developing a tool in Java where we will pull the data from various modules in SAP (like Purchase order, Invoice etc). Lets take Purchase Order Module as example. I can get the data using BAPIs (like BAPI_PO_GETDETAIL).
    However to implement Authorization, I also want the list of users/groups that have access to Purchase order module. Is this possible? Or can we get the ACL information from the tables in database like EKKO for Purchase order?
    I have tried searching for solution but couldn't find any. Please suggest if there is some standard way by which we can pull the ACL information via Java, or if this can be achieved by some custom RFCs.
    Thanks,
    Anurag

    Anurag,
    The best way is to wirte a RFC Function Module (It will fetch the roles of the user from agr_users table) which will take user id as import paramter and will give you assigned roles.
    Please let me know if you still need any further information.
    Thanks,
    Hamendra

  • Do CC users have access to current programs after cancelling a subscription? The FAQs suggests we do

    One Q&A in your FAQs has attracted my attention.
    ~~~~~
    Do Creative Cloud members have access to previous versions of Creative Cloud apps?
    Yes. Creative Cloud paid members have access to a select set of archived versions of the desktop apps. Starting with CS6, select older versions of the desktop creative apps will be archived and available for download. Archived versions are provided "as is" and are not updated to work with the latest hardware and software platforms.
    ~~~~~
    Does this mean as a CC subscriber I can cancel my subscription at any time and walk away with a usable version of the 'select set' of software? Be it CS6 or what ever may be archived in the future at the time of subscription cancellation.

    Sjaani wrote:
    Does this mean as a CC subscriber I can cancel my subscription at any time and walk away with a usable version of the 'select set' of software? Be it CS6 or what ever may be archived in the future at the time of subscription cancellation.
    If only it was that easy.
    No, you must be a current "Creative Cloud paid member" to have access to any Cloud versions: current or archived.
    When you cancel your membership or allow it to expire then your access to all versions of the software ceases. That's the only exit strategy available.
    The idea is that, as a current subscriber, if you're using CC or some later version and you absolutely must access CS6 to complete a project or collaborate with someone then you can.

  • How to find out list of users who have access to particulat SID

    HI
    How to find out the list of users who has access, to a particular SID?
    Satish.

    jurjen,
    Thanks for replying, actually i was trying to navigate and execute the report using, SUIM...
    could you help me to find out the list of users who has access to a particular system.. using SUIM.
    satish.

Maybe you are looking for

  • Sd-delivery should be linked to advance payment-

    on 17 jan 2012  sales order no (1000)raised for rs 5,000,00 advance payment received on 20 jan 2012  rs 2,000,00 validity of the sales order(1000) is on 30 jan 2012 on 21 delivery is to be taken for rs 3,000,00- sys should through error because advan

  • Data Warehouse Date format

    Hello all I am trying to create a dashboard to be used in a weekly meeting for the services team.  One of the requirements is to show the number of incidents by category for the last 7,14,30 days.  SO I am trying to create a Date filter for my pivot

  • Multiple Conditions\Actions in a Workflow

    I am in the process of creating an expense approval form with a workflow that has two Approval stages. In the first stage, however, the approver would be dynamic based on a selection in the form. The second stage approval would go to the same person\

  • Problem - Playing media stops when CPU reaches 100%

    Hi, I have a big problem, I use JMF for playing my videos and music for my video game. But if the CPU reaches 100 % the playing media stops and if the Processor is in the state less as 100% it continues playing. But windows media player continues pla

  • Z30 Does not save contacts that are added

    I just recently upgraded from a 9900 to a Z30 and am running the 10.2.0.429 OS. I have tried numorous times to add contacts by going into my contacts, hitting Add (at the bottom), filling out the necessary contact information and then hitting save at