Alias to user directory on remote computer

Hi there,
I was wondering if it is possible to create an alias to a folder in the user directory which can then be ported to another computer and point to the same directory for another user.
I read something about the usage of the symbol '~' to point directly to the user directory.
How can I create an alias that points to '~/Library/Screen Savers/' where the '~' is the 'home/user/'?
Can anybody help me out on this?
Thanks in advance...

Thank you so far. But it's still not quite what I need.
I'll make an example. I made a screensaver that consists of some files. In order to work, all files have to be placed into the /User/Library/Screensavers/ directory. Now, I want to give these files burnt on a cd to a friend that doesn't have much knowledge on macs but runs one. The easiest way for that friend would be, if he would insert the cd, see the finder window with the files and an alias in it. All he would have to do would be to drop the files on that alias and they would be copied to the /User/Library/Screensavers/ directory of his mac.
Much like the aliases that you can find on thirdparty apps that are inside a .dmg file and all you have to do to install them is to drag them onto the applications alias that is also in the .dmg
I read somewhere that the symbol ∼ refers to the default users directory, but I can't figure out how to change an existing alias and insert that symbol.
I hope it is clear now what I'm trying to do. Thanks in advance...

Similar Messages

  • Remove domain account on remote computer using its local credentials

    I want to make a script that will remove domain user account from remote computer. Right now I tested dosen of methods. I have stick to this:
    ([ADSI]"WinNT://$computerName/$localGroupName,group").Remove("WinNT://$domainName/$userName")
    Thats absolutely working on local computer, but when I try to reach the remote computer I get 'Access Denied' error.
    I do know the credentials for remote computer. I know how to created credential object. Now I am stuck with - how to force it use credential object with that kind of task?
    Invoke is not an option.

    This won't work in a Workgroup setting.  It only works in a domain if you are a Domain Admin.
    ¯\_(ツ)_/¯

  • Rsh - connecting using user name that does not exist on remote computer

    hi
    is it possible to connect to a remote computer as, for example John, if user account John does not exist on the remote computer but is listed in .rhosts?
    this is what i have written in .rhosts on the remote computer ( Work ):
    home root
    home John
    when I connect as root:
    rlogin -l root Work
    everythings fine, but when I try to connect as John I get the incorrect login message
    I know the message above probably answers my question, but I want to be sure

    If the user id exists, you can bypass the authentication with .rhosts or /etc/hosts.equiv files; but you can't login to a remote machine as an anonymous user.

  • How to make a remote panel file dialog open remote directory from any computer

    Hello to everybody. I am using Labview 6.1 and I would like to know how to make a remote panel file dialog open remote directory from any computer (Not only from a specific computer. If I open the file with a specific computer, I have to conect the path of the remote machine, but if I don´t know which remote computer is going to run the aplication, how can I do it?)?

    Hi!
    first you have to know progammatically the name of the remote pc connected to your server: this is a problem!
    I did not find a straigth way, LV 6.1 doesn't allow much progammatic control on the remote panel connection feature, but I'm confident that in the next LV version this will be improved!
    The point is that the Remote Panel Connection Manager (from the Tools menu) has all the informations about the connection: client name, server vi and whatever.
    This application is embedded in the \PROJECT\REMOTEPANEL.LLB and consists of a set of password protected vis.
    So here's the trick: use VIServer to grab data from the rpcm Get Server Data.vi when the Remote Panel Connection Manager is in run mode. By this you get all the informations (not only client name)o
    f the remote panel connection. See my example.
    By the way use client machine name to build the file dialog function input path.
    If anybody has an alternative method it would be more than appreciated to share it.
    Good luck,
    Alberto Locatelli
    Attachments:
    get_remote_machine_data.vi ‏151 KB

  • I can no longer use all of the "Computer Management" tools against a remote computer. "Local Users and Groups", "Event Viewer", "Performance Logs and Alerts" and "Device Manager"

    Hello All,
    I can no longer use all of the "Computer Management" tools against a remote
    computer. "Local Users and Groups", "Event Viewer", "Performance Logs and
    Alerts" and "Device Manager"
    kindly see the below snapshot for assistance
    REGARDS DANISH DANIE

    This link may help....
    http://windowsxp.mvps.org/admintools.htm
    Freeman

  • Remote Desktop cannot verify the identity of the computer because there is a time or date diffrence between your computer and remote computer

    Hello.....
    I'm not able to log into Windows Server 2008 r2 server thorugh Remote Desktop connection, receiving below error message.
    This issue is with only three servers in the environment
    "Remote Desktop cannot verify the identity of the computer because there is a time or date diffrence between your computer and remote computer......"
    The date/time is correct on the server when i checked in the console session of the server
    Can see below messages in event logs
    Event ID 1014:
    "Name resolution for the name XYZdomain.com timed out after none of the configured DNS servers responded."
    Event ID 1053:
    The processing of Group Policy failed. Windows could not resolve the user name. This could be caused by one of more of the following:
    a) Name Resolution failure on the current domain controller.
    b) Active Directory Replication Latency (an account created on another domain controller has not replicated to the current domain controller).
    Any thoughts ....

    Hi,
    Have you tried to connect these three servers with IP address instead of computer name or DNS name?
    Check Remote Desktop Connection settings: Option-->Advanced-->Connect from anywhere-->Settings-->Connection Settings-->Select “Do not user an RD Gateway server”
    For more information please refer to following MS articles:
    Remote Desktop cannot verify the identity of the remote computer because there is a time or date difference between your computer and the remote computer
    http://social.technet.microsoft.com/Forums/en-US/w7itpronetworking/thread/c1f64836-5606-49b0-82eb-56be7f696520
    Cannot connect via Remote Desktop
    http://social.technet.microsoft.com/Forums/en-US/windowsserver2008r2general/thread/5087e897-8313-468c-ad37-ef18b87d4dd6
    Lawrence
    TechNet Community Support

  • Add printer on remote computer

    In my environment I need to add printers on remote computers. I can’t use active directory. My account has admin privileges, but the remote computer is setup to auto login to an account and that account is just a member of the domain users group. So far
    I pieced this script together, but it needs to be run on the remote computer
    Dim printer, UNCpath1, slash1, slash2
    slash2 = "\\"
    slash1 = "\"
    printername = InputBox("What printer do you want to be the default? ", "Create Default Printer")
    UNCpath1 = InputBox("What server is this printer on? ", "Server")
    Set printer = CreateObject("WScript.Network")
    printer.AddWindowsPrinterConnection slash2 & UNCpath1 & slash1 & printername
    printer.SetDefaultPrinter slash2 & UNCpath1 & slash1 & printername
    WScript.Quit
    I would like a script that has input boxes to ask what printer you want to setup, and which print server the printer is on.
    Please phrase your answer with the knowledge that I know next to NOTHING about scripting. The script above was pieced together after a lot of searching.

     
    I can't do anything with Group Policy at my new job.
    Where I used to work, I controlled group policy, and then adding it through group policy was a possibility, but now I must work under conditions in which group policy is off limits to me.
    I said that doing this using psexec is cumbersome, so I wanted to see if this is possible through scripting. And the script I pieced together that I show in my first post works fine, as long
    as I remote into the computer using a program called Proxy Pro Master.
    I want to use something else, because it is hard to coordinate a time to proxy into a user's computer. And the computers I am working with are so locked down, you can't change the default printer
    for instance. However, with my script, it changes the default.
    I know very little about scripting, and thought that if my pieced together script could change the default printer, maybe a script could add printers remotely. So a user would request a printer,
    and on my pc, I could run the script to add whatever printer they want.

  • How do I allow all users on a single computer access to music without duplicating songs?

    There has got to be a way to allow all users on a single computer access to a single -shared- directory without DUPLICATING the songs, but I can't figure it out.  Tried Edit | Preferences | Advanced | Change, but the songs do not show up.  Tried Sharing the folders. Tried Public Folders.  Just want all my songs in one place to save space, prevent duplicates.  Please advise.

    Move the iTunes folder from its current location to, say, C:\iTunes.
    With each account in turn press and hold down shift and click the icon to start iTunes, keep holding until asked to Choose or create a library.
    Choose the library at C:\iTunes, or wherever you put it.
    Job done.
    tt2

  • Can I share my iPhoto library with other users accounts on my computer?

    My wife and I both have our own user account on the computer. Right now all the photos are on my account. If we put the iPhoto library in users/shared will this allow us both to access the photos?
    Thanks.

    Yes, this is exactly how I use iPhoto on my system.
    You do need to update the permissions on the iPhoto directory after it's moved to the Shared folder. the default permissions will only permit your account to fully access the files, your wife's account will get errors or not see thumbnails correctly when accessing the pictures from iPhoto in her account.
    After moving the iPhoto Library into Shared (and with iPhoto closed), Get Info on the iPhoto Library folder and change the Others access to Read+Write. Let it apply to all enclosed folders, also. Then hold down the Option key while starting iPhoto and choose the Shared version of the folder as your Library. Repeat the iPhoto launch w/option key on the other account as well and each user will access the same set of pictures, albums, keywords, etc. Just make sure you don't open iPhoto from both accounts at the same time. Close iPhoto before walking away from the computer or letting the other person logon.

  • Access MS Access database on remote computer (shared folder)

    Hello,
    I need some help.
    I've made a program and it works fine on my computer, but multiple users will be using program simultaneously, each one on his own computer conected over local network to mine computer (database is on my computer in shared folder). 
    When I try to access data on database (path is path of shared folder) i'm getting error 5013 (no database). The problem occurs only when I'm trying to read something from MS access database but not if I try to read data from .txt file, then it works fine...
    I'm using ADO Tools
    Can someone help me, I would be very greatful?
    Solved!
    Go to Solution.

    Thanks to you Dennis I've managed to figure it out.
    I'll explain this for future generations
    1) I've created DSN. To do that open ODBC Data Source Administrator:
    - for 64 bit app C:\Windows\System32\odbcad32.exe
    - for 32 bit app C:\Windows\SysWOW64\odbcad32.exe
     In System DSN tab click Add.. then choose Microsoft Access Driver (*.mdb) (If you do not have this on list download that drivers from web) --> FINISH.
    Enter Data Source Name (mine is Test2) --> Select... --> now because the MS Access database is on shared folder on remote PC go to Network... --> Browse... and select that shared folder --> Finish. Now you'll see all .mdb files on that folder and you choose your database --> OK --> OK --> OK
    2) Now in block diagram you connect string "DSN=your_dsn_name;" (mine was Test2) to ConnectionString connector of ADO Connection Open.vi
    It worked for me.
    Pis
    Attachments:
    MS Access database on remote computer (local network).jpg ‏114 KB

  • I have a 2nd gen Mac book air with Lion. The hard disk has filled up even though i keep my data , music etc on hard drive . I used disk inspector to find where problem was and it is 20GB in the hidden files under the user directory can i resolve this ?

    I have a 2nd Gen MAc book Air with Lion .  The 60GB hard disc has quickly filled up despite me keeping most of my data on a portable hard drive .  I used disk inspector to locate the problem but found that it was was in 20 GB of hidden files in my user directory .  Is this correct and is there anything i can do about it ? Using disk inspector you can not see individual hudden diretories or files. I did unhide them but there is a mass of diretories etc and so no way i could see if this is one or multiple files using the space. Library System and  Applications are at 4 3 and 3 GB respectvely.  The data I actually keep on there is 9GB    Thanks for any help

    I think the problem is Quick Time Player. I am using OS 10.6.8 by the way.
    I tried it out again.
    I had about 26 GB of space before I played an .avi video.
    After the movie started to play (it was slow to load), I got a warning message that my startup disk was full. I opened Disk Utility and it told me I had no space left (about 20 MB or something like that was left).
    I watched to the end of the movie.
    Then I quit Quicktime Player.
    And I shut down the computer.
    I turned on the computer and checked Disk Utility. I have about 26 GB of space.
    I think for some reason Quicktime Player uses up a lot of the disk space when it runs movies that are problematic. This movie I was watching did not open with vlc.
    I normally use vlc to watch movies.
    Probably it doesn't use up this much space when the movie is OK.
    I think there's a problem with this particular movie. It is about 50 MB so it's not that big a file. I watch .smi subtitles with it. The Quicktime Player automatically loads the subtitle file in this case because the subtitle file has the same name as the movie file.
    I watched about 10 movie files from the same series that I downloaded together and did not have any problem watching them. I watched them on vlc. But this latest movie had problems I think (as I repeat). It did not load on vlc even though I waited for a minute, and normally movies load instantly on vlc. 
    So I think that movie file caused problems. It made QT player use up a lot of hard disk space.
    I had better avoid watching that movie in the future. I don't want it to wreck my hard drive.
    So to sum up, everything is back to normal. I have the hard disk space that I should have. However, I am scared of damaging my hard drive due to shonky movie files that eat up all the space when they are played using QT player, and so I will not watch those files in the future, as I do not know why the files do that.

  • Merge iweb sites from multiple user accounts on same computer

    With the previous iweb version, my children created their own iweb sites on their own users, but all under my own .mac account. It worked great.
    But now with the new "upgraded" iweb '08, that isn't allowed anymore.
    So, I created a new user on our computer for all of us to use to maintain our multiple iweb accounts on.
    How can I move multiple iweb sites from multiple users on the same computer into one user?

    Each of the user's work in iWeb will be contained in a single file, Domain.sites2, which can be found in this location on the hard drive for each user account. You will need to copy all of these Domain.sites2 files to an external drive, or, at the very least, burn them to a disk to make them transferable from one user account to another. A flash drive also works great for this.
    Once you have made all of these Domain files accessible from the new user account that you created, you will still have a formidable task ahead of you, i.e., publishing separate sites, from separate Domain.sites2 files, to the same .Mac account/directory. In other words, bringing all of these Domain files together for access by a single user account will not solve the problem. You may very well be able to solve the problem with things the way they are, but it will involve some shuffling of Site's files on the iDisk prior to publishing.
    The method I'm going to give you has worked well for me. So far, here in the forums, I've read posts from (2) other users who were also successful. Conversely, I know of at least (3) other users who have been unsuccessful with this approach. I sure hope it works for you.
    Open System Preferences and go to .Mac. Turn syncing off, if it is on, and leave it off.
    Now, in Finder, navigate to the current Site files on your iDisk, following this path:
    Go/iDisk/My iDisk/Web/Sites/NameOfSiteFolder
    Drag the Site folder that is named for your site, (not the directory Site folder), back one level on the iDisk, into the Web folder. This is where some run into difficulties--you may get an error message that the folder is "in use, and cannot be moved". I have never gotten this message, and am able to move my Site's folders around with no problem on the iDisk.
    If you are successful moving the folder, choose one of your other accounts on your machine, launch iWeb, and Publish all to .Mac. The existing site on the server will not be deleted. Now, go back to the iDisk and move that site folder, (the one you just published), back one level, again, to the root Web directory. Publish your next site, from your next account.
    When you are finished publishing sites, just move the Site folders back to their original location on the iDisk--Web/Sites/SiteFoldersHere. All sites will be accessible from a browser using the web.mac.com/username/nameofsite url.
    It is important to use the Publish all to .Mac command in iWeb. A simple Publish to .Mac command will not put the correct index.html file in place on the server.
    Post back and inform us of your success.
    -Mark

  • Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up

    Photoshop Elements 11 installed on Mac Mini OS X 10.9.5. Application running successfully on bot main user and administrative accounts for considerable time with no warning messages. When established a new user account on same computer and try to call up elements receive message “Some ot the application components are missing from the Application directory. Please reinstall the application.” How do I correct this problem without disturbing application in main user account?

    Brooks lansing if you create a new Administrator account does the same issue occur?  If so then it is likely that there is a file permission failure and file permissions have been set for the existing Users instead of the groups they belong to.
    Have you removed and reinstalled Photoshop Elements 11?  This may reset the file permissions to the correct state to allow it to work under new accounts.

  • Get-DfsrBacklog cmdlet doesn't work from remote computer (pssession)

    Hi there!
    I try to manage our Server 2012 R2 boxes from a Windows 7 remote machine using PowerShell. For some reason the cmdlet "Get-DFSRbacklog" seems not working remotly. The same cmdlet work when logging in locally to the server(s) with the
    same credentials. UAC is turned off on the target machines and i have local admin permissions on this servers using my domain account.
    What i do is:
    Enter-PSSession <servername>
    Get-DfsrBacklog -SourceComputerName <servername> -DestinationComputerName <servername>
    Then i receive the following error:
    Get-DfsrBacklog : Could not retrieve the backlog information. Replication group: "*" Replicated folder: "*" Source
    computer: <servername> Destination computer: <servername> Confirm that you are running in an elevated Windows PowerShell
    session and are a member of the local Administrators group on the destination computer. The destination computer must
    also be accessible over the network, and have the DFSR service running. This cmdlet does not support WMI calls for the
    following or earlier operating systems: Windows Server 2012. Details: WinRM cannot process the request. The following
    error with errorcode 0x8009030e occurred while using Kerberos authentication: A specified logon session does not
    exist. It may already have been terminated.
     Possible causes are:
      -The user name or password specified are invalid.
      -Kerberos is used when no authentication method and no user name are specified.
      -Kerberos accepts domain user names, but not local user names.
      -The Service Principal Name (SPN) for the remote computer name and port does not exist.
      -The client and remote computers are in different domains and there is no trust between the two domains.
     After checking for the above issues, try the following:
      -Check the Event Viewer for events related to authentication.
      -Change the authentication method; add the destination computer to the WinRM TrustedHosts configuration setting or
    use HTTPS transport.
     Note that computers in the TrustedHosts list might not be authenticated.
       -For more information about WinRM configuration, run the following command: winrm help config.
        + CategoryInfo          : ProtocolError: (zursf1003:String) [Get-DfsrBacklog], DfsrException
        + FullyQualifiedErrorId : Get-DfsrBacklog.CimException,Microsoft.DistributedFileSystemReplication.Commands.GetDfsr
       BacklogCommand
    Any ideas?

    This article
    suggests that you're logged into your Win7 management machine with local credentials. You should try the Get-DfsrBacklog command with domain credentials:
    Client is in a domain: Attempting to connect to a remote server by using implicit credentials that are the local administrator's credentials on the client. Instead, use domain credentials that are recognized by the domain of the target server, or right-click
    the server entry in the Servers tile, click Manage As, and then specify credentials of an administrator on the target server.
    Sam Boutros, Senior Consultant, Software Logic, KOP, PA http://superwidgets.wordpress.com (Please take a moment to Vote as Helpful and/or Mark as Answer, where applicable) _________________________________________________________________________________
    Powershell: Learn it before it's an emergency http://technet.microsoft.com/en-us/scriptcenter/powershell.aspx http://technet.microsoft.com/en-us/scriptcenter/dd793612.aspx

  • User Directory services stopped working

    Getting this err all the sudden:
    The User Directory publishing service reported an error.
    https://server:8900/contribute
    Error details: End of file or no input:' Operations
    interrupted or timed out'
    Happens to everyone. using CPS 1.11 with ActiveDirectory. I
    had upgrade to new hardware about 2 weeks ago but everything worked
    nicely after the move. I did decommision an old DC, but not the one
    CPS uses in the admin screens. Does it pick a random DC behind the
    scenes and use that all the time?

    Tried restarting. No change. In the admin page I can search
    and test auth just fine. I installed Contribute on another clean
    computer that has never had it before and tried and get the same
    problem. I am thinking about reinstalling but I really don't want
    to as I have about 20 roles/users to recreate. Or how can I back
    the config up so I can restore the user/roles info?

Maybe you are looking for

  • Firefox hangs while loading pages.

    When loading a new page (not always in a new tab, not always an additional tab or tabs, but it seems to happen more when opening multiple tabs) the little rotating circle will either remain dark and if an attempt is made to reload the location bar ch

  • _DISABLE_OBJSTAT_DEL_BROADCAST = FALSE - no info found

    Hello guys, I need to set this param to false in the systems, as I upgraded Oracle to 10.2.0.5, but I cannot find anywhere if this parameter can be modified online or if I need to restart the database. DISABLEOBJSTAT_DEL_BROADCAST = FALSE Note 830576

  • How do I unistalled an application?

    I downloaded couple of applications via the App store and found that it is not useful, so how do I go around to unistall these applications in OS Lion? Thanks.

  • Simple email application

    I would like to create simple application which sends and gets emails from the Internet. I would like to know which packages I have to use and which classes I need. It would be great if someone has sample code. Any answer will be appreciated

  • About resolving duplicate fonts

    Hi to all !! Got a question about resolving duplicate fonts. Safari (1.3.1) quits on occasion, especially after long internet browsing. So following Bee's estimed adviced, I trashed the icons folder and checked for duplicate fonts. Of course there we