Delete user profiles on multiple computers using ARD

Hi Everyone,
I was wondering if there is a way to delete user profiles on all of my remote clients (250+) using ARD.
Or if anyone knows about a script which can do this and some more.
This is what I am trying to do:
I wanted to delete any user profile which exceeds the size of 300 MBs or older than 1 month.
All of my clients are Intel Macs using newest version of ARD and Leopard.
Thanks,

finding folders by size is pretty easy, modification date is a bit harder.
Here is a script that will list all user folders over 300mb.
I will leave it to you to test and modify to delete those folders.
#!/bin/bash
#list all folders larger than 300MB in /Users
#will exclude administrator and Shared
for user in $(ls -1 /Users | grep -v "Shared" | grep -v "administrator")
do
homeSize=$(du -sm /Users/$user | cut -d"/" -f1)
if [[$homeSize -gt 300]]; then
echo "/Users/$user"
fi
done

Similar Messages

  • Prevent the same user login on multiple computers at the same time

    prevent the same user login on multiple computers at the same time

    Is there any way (currently running 2012 Servers) that we can prevent users from logging into multiple domain computers simultaneously with the same username?
    We still want them to log into those computers, just not simultaneously?
    LimitLogin utility not work in Windows 2012 server.
    Thanks.
    Babu
    Unfortunately Windows has never offered this feature as a built-in feature, but there are several possibilities discussed in these articles:
    https://social.technet.microsoft.com/Forums/windowsserver/en-US/0103b5e7-0db5-4fb4-bfe7-d7132983880a/limit-concurrent-logins-on-a-ws-2008-environment
    http://www.edugeek.net/forums/windows-server-2008-r2/61216-multiple-logins.html
    http://windowsitpro.com/windows/prevent-multiple-logons-gpos
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • What is the best way to automatically delete user profiles after x days of inactivity (school lab environment)?

    I work at a school where we have multiple Mac Carts that have 30 MacBooks per cart. We image the macs every summer to delete the older user profiles but we are looking for way to possible have this done automatically through out the year to help with HDD space. What is the best way to delete user profiles after...say 180 days.... of inactivity automatically? I am open to login hooks, bash scripts, etc. Anything to get the job done. Thanks for any help or advice.

    A search here turned up this post Deleting inactive users
    It appears that the script posted will do as advertised though I would test it out on your systems and under your conditions to see if it does do what you need.
    regards
    Message was edited by: Frank Caggiano - That script looks for users over 21 days. To look for ones over 180 days change the 21 to 180 in the find command.

  • I run a mac air on a single user account but multiple people using it, which is ok for the situation. All have their accounts in the apple mail app. what is missing for me is a separate password to access the mail account. otherwise anyone can see anyones

    I run a mac air on a single user account but multiple people using it, which is ok for the situation. All have their accounts in the apple mail app. what is missing for me is a separate password to access the mail account. otherwise anyone can see anyones
    Any clue, how i can add a mail account to apple mail app, but with separate password / pin to open it.
    Years ago there was a program called mail switcher which added this functionality, but thats gone.
    cheers
    Tom

    They would have to be logged in as separate users in order not to see your account in Mail. Whatever accounts put in Mail under your account will show up. All mail accounts usually have there own user and password. The only thing you can do is to remove the password from Keychain and take the account offline so you don't keep getting prompts for passwords each time it checks for mail.
    Not a great solution.
    Best way is to give the other user their own user account with their own mail and enable fast user swithcing to log between the different users if all access the computer frequently.

  • FCP to export thru Compressor to multiple computers using Qmaster

    Hello all,
    I just wanted to confirm, can you from FCP export thru Compressor to multiple computers using Qmaster?
    Thanks

    Sort of... you can set up a render farm using Qmaster so the files are worked on by all of your CPUs... If that's what you are talking about the answer is yes.
    Jerry

  • Script to delete user profiles

    I am looking for a script that could be ran either by logout or via ARD . The script needs to delete all user profiles stored on the local mac. except for the admin account and ladmin also an admin account Since all users have an AD account there is no need to keep the users profile. I tried to find a script but no luck I know almost nothing about apple scripts so I am lost. all mac computers are either tiger or panther. All mac clients are managed via a Lepord server also if that helps

    I am looking for a script that could be ran either by logout or via ARD . The script needs to delete all user profiles stored on the local mac. except for the admin account and ladmin also an admin account Since all users have an AD account there is no need to keep the users profile. I tried to find a script but no luck I know almost nothing about apple scripts so I am lost. all mac computers are either tiger or panther. All mac clients are managed via a Lepord server also if that helps

  • Script to delete users profile only months old profile with the Registry itself but should leave current profile intact.

    Hi every one.
    first of all sry if this post is repetitive for the profile deletion.
    If you have a correct link please post it below or the script itself.
    Question: as i have a lot of computers with windows 7 (2400 systems) as the operating system on them and as the users keep on changing or shifting place from one PC to another PC and managing the system or the C drive for the consistent system performance
    or freeing space is a challenging task.
    I would like have a Script that would only delete old (No of Months) profile as well as the registry itself  but should keep the current profile instanct the the registry too.
    I did find the below script on some forum that gets the job done but not the right way as it deletes all the profile and excludes the admin,administrator etc as seen in the script but i cannot delete the old profile of a certain time or date period.
    As again sorry if this post looks like mess but help is appreciated 
    @echo off
    ' DELETES LOCAL PROFILES ON WINDOWS 7
    :START
    FOR /f "tokens=*" %%a IN ('dir c:\USERS /b /ad') DO CALL :PATHCHECK "%%a"
    GOTO REGISTRY
    ::The following is where you would put in the profile you wish to exclude from the wipe. Just copy/paste a line and make the appropriate revisions.
    :PATHCHECK
    IF /i [%1]==["Administrator"] GOTO :PATHSKIP
    IF /i [%1]==["Admin"] GOTO :PATHSKIP
    IF /i [%1]==["All Users"] GOTO :PATHSKIP
    IF /i [%1]==["Default"] GOTO :PATHSKIP
    IF /i [%1]==["Default user"] GOTO :PATHSKIP
    IF /i [%1]==["public"] GOTO :PATHSKIP
    GOTO PATHCLEAN
    :PATHSKIP
    ECHO. Skipping path clean for user %1
    GOTO :EOF
    :PATHCLEAN
    ECHO. Cleaning profile for: %1
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHFIRST
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHFIRST
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHSECOND
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHSECOND
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    GOTO :EOF
    :REGISTRY
    ECHO.------------
    FOR /f "tokens=*" %%a IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECK "%%a"
    GOTO VERIFY
    ::The following is where it parses the registry data and checks it against the user path. Copy/paste the IF line and make the user modification needed.
    :REGCHECK
    FOR /f "tokens=3" %%b in ('reg query %1 /v ProfileImagePath') DO SET USERREG=%%b
    IF /i [%USERREG%]==[c:\Users\Administrator] GOTO :REGSKIP
    GOTO REGCLEAN
    :REGSKIP
    ECHO. Skipping registry clean for %USERREG%
    GOTO :EOF
    :REGCLEAN
    ECHO. Cleaning registry for: %USERREG%
    reg delete %1 /f
    GOTO :EOF
    ::The cleaning portion of the script is now done. Now begins the verification and log reporting.
    :VERIFY
    FOR /f "tokens=*" %%c IN ('dir c:\USERS /b /ad') DO CALL :VERIFYPATH "%%c"
    ::Same thing as the clean - if you need to exclude an account, make your copy/paste below.
    :VERIFYPATH
    IF /i [%1]==["Administrator"] GOTO :EOF
    IF /i [%1]==["All Users"] GOTO :EOF
    IF /i [%1]==["Default"] GOTO :EOF
    IF /i [%1]==["Default user"] GOTO :EOF
    IF /i [%1]==["public"] GOTO :EOF
    GOTO VERPATHREPORT
    :VERPATHREPORT
    ECHO. %1
    IF /i [%1]==[] (
    set PATHRESULT=PATH_SUCCESS
    ) ELSE (
    set PATHRESULT=PATH_FAILURE
    ECHO. %PATHRESULT%
    GOTO REGVERIFY
    :REGVERIFY
    ECHO.------------
    FOR /f "tokens=*" %%d IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECKVERIFY "%%d"
    GOTO REGVERIFYECHO
    ::Same thing as the registry clean - copy/paste excluded profiles below.
    :REGCHECKVERIFY
    FOR /f "tokens=3" %%e in ('reg query %1 /v ProfileImagePath') DO SET USERREGV=%%e
    IF /i [%USERREGV%]==[c:\Users\Administrator] GOTO :EOF
    GOTO REGVERIFYECHO
    :REGVERIFYECHO
    ECHO. %1
    IF /i [%1]==[] (
    set REGRESULT=REG_SUCCESS
    ) ELSE (
    set REGRESULT=REG_FAILURE
    ECHO. %REGRESULT%
    GOTO REPORTCHECK
    ::The following is where you would enter the mapped drive path.
    ::You can use a straight UNC if you like, but I find this to be a bit
    ::more solid and it allows you to use different creds in case you
    ::automate it for a local scheduled task to run as local admin.
    :REPORTCHECK
    'net use t: \\server\path
    'IF EXIST "t:\labreport.txt" (
    'GOTO REPORTGEN
    ') ELSE (
    'GOTO EXIT
    ::This is a time/date stamp creator that I actually pulled from a Minecraft
    ::to Dropbox backup script I made a long while back.
    ':REPORTGEN
    'FOR /F "tokens=1 delims=:" %%f in ('time /T') DO SET T=%%f
    'FOR /F "tokens=*" %%g in ('echo %date:~10,4%-%date:~4,2%-%date:~7,2% %T%-%time:~3,2%-%time:~6,2%') DO SET TDATETIME=%%g
    ECHO. %PATHRESULT% %REGRESULT% %COMPUTERNAME% %TDATETIME% >> "t:\labreport.txt"
    net use t: /delete
    GOTO EXIT
    :EXIT
    exit
    :EOF

    Hi every one.
    first of all sry if this post is repetitive for the profile deletion.
    If you have a correct link please post it below or the script itself.
    Question: as i have a lot of computers with windows 7 (2400 systems) as the operating system on them and as the users keep on changing or shifting place from one PC to another PC and managing the system or the C drive for the consistent system performance
    or freeing space is a challenging task.
    I would like have a Script that would only delete old (No of Months) profile as well as the registry itself  but should keep the current profile instanct the the registry too.
    I did find the below script on some forum that gets the job done but not the right way as it deletes all the profile and excludes the admin,administrator etc as seen in the script but i cannot delete the old profile of a certain time or date period.
    As again sorry if this post looks like mess but help is appreciated 
    @echo off
    ' DELETES LOCAL PROFILES ON WINDOWS 7
    :START
    FOR /f "tokens=*" %%a IN ('dir c:\USERS /b /ad') DO CALL :PATHCHECK "%%a"
    GOTO REGISTRY
    ::The following is where you would put in the profile you wish to exclude from the wipe. Just copy/paste a line and make the appropriate revisions.
    :PATHCHECK
    IF /i [%1]==["Administrator"] GOTO :PATHSKIP
    IF /i [%1]==["Admin"] GOTO :PATHSKIP
    IF /i [%1]==["All Users"] GOTO :PATHSKIP
    IF /i [%1]==["Default"] GOTO :PATHSKIP
    IF /i [%1]==["Default user"] GOTO :PATHSKIP
    IF /i [%1]==["public"] GOTO :PATHSKIP
    GOTO PATHCLEAN
    :PATHSKIP
    ECHO. Skipping path clean for user %1
    GOTO :EOF
    :PATHCLEAN
    ECHO. Cleaning profile for: %1
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHFIRST
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHFIRST
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    IF EXIST "C:\USERS\%1" GOTO RETRYPATHSECOND
    IF NOT EXIST "C:\USERS\%1" GOTO :EOF
    :RETRYPATHSECOND
    ECHO. Error cleaning profile for: %1 - Trying again.
    rmdir C:\USERS\%1 /s /q > NUL
    GOTO :EOF
    :REGISTRY
    ECHO.------------
    FOR /f "tokens=*" %%a IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECK "%%a"
    GOTO VERIFY
    ::The following is where it parses the registry data and checks it against the user path. Copy/paste the IF line and make the user modification needed.
    :REGCHECK
    FOR /f "tokens=3" %%b in ('reg query %1 /v ProfileImagePath') DO SET USERREG=%%b
    IF /i [%USERREG%]==[c:\Users\Administrator] GOTO :REGSKIP
    GOTO REGCLEAN
    :REGSKIP
    ECHO. Skipping registry clean for %USERREG%
    GOTO :EOF
    :REGCLEAN
    ECHO. Cleaning registry for: %USERREG%
    reg delete %1 /f
    GOTO :EOF
    ::The cleaning portion of the script is now done. Now begins the verification and log reporting.
    :VERIFY
    FOR /f "tokens=*" %%c IN ('dir c:\USERS /b /ad') DO CALL :VERIFYPATH "%%c"
    ::Same thing as the clean - if you need to exclude an account, make your copy/paste below.
    :VERIFYPATH
    IF /i [%1]==["Administrator"] GOTO :EOF
    IF /i [%1]==["All Users"] GOTO :EOF
    IF /i [%1]==["Default"] GOTO :EOF
    IF /i [%1]==["Default user"] GOTO :EOF
    IF /i [%1]==["public"] GOTO :EOF
    GOTO VERPATHREPORT
    :VERPATHREPORT
    ECHO. %1
    IF /i [%1]==[] (
    set PATHRESULT=PATH_SUCCESS
    ) ELSE (
    set PATHRESULT=PATH_FAILURE
    ECHO. %PATHRESULT%
    GOTO REGVERIFY
    :REGVERIFY
    ECHO.------------
    FOR /f "tokens=*" %%d IN ('reg query "hklm\software\microsoft\windows nt\currentversion\profilelist"^|find /i "s-1-5-21"') DO CALL :REGCHECKVERIFY "%%d"
    GOTO REGVERIFYECHO
    ::Same thing as the registry clean - copy/paste excluded profiles below.
    :REGCHECKVERIFY
    FOR /f "tokens=3" %%e in ('reg query %1 /v ProfileImagePath') DO SET USERREGV=%%e
    IF /i [%USERREGV%]==[c:\Users\Administrator] GOTO :EOF
    GOTO REGVERIFYECHO
    :REGVERIFYECHO
    ECHO. %1
    IF /i [%1]==[] (
    set REGRESULT=REG_SUCCESS
    ) ELSE (
    set REGRESULT=REG_FAILURE
    ECHO. %REGRESULT%
    GOTO REPORTCHECK
    ::The following is where you would enter the mapped drive path.
    ::You can use a straight UNC if you like, but I find this to be a bit
    ::more solid and it allows you to use different creds in case you
    ::automate it for a local scheduled task to run as local admin.
    :REPORTCHECK
    'net use t: \\server\path
    'IF EXIST "t:\labreport.txt" (
    'GOTO REPORTGEN
    ') ELSE (
    'GOTO EXIT
    ::This is a time/date stamp creator that I actually pulled from a Minecraft
    ::to Dropbox backup script I made a long while back.
    ':REPORTGEN
    'FOR /F "tokens=1 delims=:" %%f in ('time /T') DO SET T=%%f
    'FOR /F "tokens=*" %%g in ('echo %date:~10,4%-%date:~4,2%-%date:~7,2% %T%-%time:~3,2%-%time:~6,2%') DO SET TDATETIME=%%g
    ECHO. %PATHRESULT% %REGRESULT% %COMPUTERNAME% %TDATETIME% >> "t:\labreport.txt"
    net use t: /delete
    GOTO EXIT
    :EXIT
    exit
    :EOF

  • Need to develope report for Deleting user profiles

    Hi All,
    I need to develop a report to delete inactive user profiles from SAP system. We have  a found out a list of valid users but need to delete all the users which are not contained in this list.
    If anybody is having any inputs, they are welcome.
    Thanks & Regards
    Abhii

    REPORT  ztest5.
    PERFORM delete_user USING 'TEST' .
    *&      Form  DELETE_USER
    *       text
    *      -->USERNAME   text
    FORM delete_user USING username TYPE bapibname-bapibname .
      DATA : li_mess TYPE TABLE OF bapiret2 ,
             ls_mess TYPE          bapiret2 ,
             lv_mess TYPE          string   .
      CALL FUNCTION 'BAPI_USER_DELETE'
        EXPORTING
          username = username
        TABLES
          return   = li_mess.
      LOOP AT li_mess INTO ls_mess .
        CLEAR lv_mess .
        MESSAGE ID     ls_mess-id
                TYPE   ls_mess-type
                NUMBER ls_mess-number
                INTO   lv_mess
                WITH  ls_mess-message_v1
                      ls_mess-message_v2
                      ls_mess-message_v3
                      ls_mess-message_v4.
        WRITE : / ls_mess-type , lv_mess .
      ENDLOOP .
    ENDFORM .                    "DELETE_USER

  • Copy Local User Data from Multiple Computers to a File Server

    Just recently acquired a new company with 20 standalone computers (desktops and laptops, Windows 7 and 8.1), that are part of a WORKGROUP, with no local server at all. This site will be getting a network upgrade, and will soon have a VPN tunnel to the Main
    Office (but not until cutover weekend, a month and a half in the future).  Now, all these computers have local user accounts, and some are shared computers, so copying data to a centralized location is going to be bothersome (especially if people keep
    modifying/creating data everyday).  Not sure what to do...
    Would anyone advise on what to do in this case?   I'd like to minimize downtime for these users while migrating them to our domain. 

    Hello Fernando Chanco,
    I can recommend you to use the User Migration State Tool as this provides a highly customizable user-profile migration experience for IT professionals.
    User State Migration Tool (USMT) Technical Reference
    https://technet.microsoft.com/en-us/library/hh825256.aspx
    USMT Requirements
    https://technet.microsoft.com/en-us/library/hh824913.aspx
    Also this is an interesting document that points to this same tool (USMT) to accomplish something similar to your goal.
    How to migrate from Workgroup network model to Domain based model?
    https://support.microsoft.com/kb/555542/en-us
    Q: 
    How to migrate from Workgroup network model to Domain based model?
    A: 
    Network base Workgroup support a few hosts without central management. 
    After you company/network grow, you will have to start to migrate to network base on Domain model.
    The followings instructions will give you a guidelines to achieve this migration in the short and safe way. The guidelines assume that you migrate single place and serve SMB (Small Medium Business) network...
    Hope this info helps to reach your goal. :D
    5ALU2 !

  • Can't add or delete User Profiles in System Preferences

    I'm trying to connect to my school's wireless network, which is now using WPA2 Enterprise encryption and I need to change my User Profile to connect. As far as I can tell, I've done this several times, but my new profile doesn't show up and the old two don't go away (which I have deleted from the 802.1X page).
    What do I need to do to get my preferences to work correctly?

    Try repairing permissions and ACLs on that user.
    The Repair Permissions run from Disk Utility in your Applications doesn't touch anything in any of the user folders, so startup holding command-r keys into your Recovery Volume.
    From the menu bar choose Utilities then select Terminal.
    At the prompt type resetpassword
    Press return
    The Password reset utility will launch (do not reset password)
    Instead, click your Mac hard drive.
    Then from the drop-down select the user account you want to repair. At the bottom of the window, you’ll see an area labeled ‘Reset Home Directory Permissions and ACLs’. Click the Reset button there.
    The process takes a couple of minutes. When it’s done, quit the programs you’ve opened and restart your Mac.

  • User profiles with multiple login accounts in SharePoint 2010

    Hello,
    Consider the following scenario:
    We have Active Directory that is accessible inside our network. Except the sites, accessible from the corporate network, we are exposing SharePoint sites from the same farm on the internet, using claims based authentication with ADFS 2.0 using the same
    AD instance as in the intranet.
    The problems is that the claims based accounts are not linked to the profiles, that are created for the users by the User Profiles Synchronisation service.
    Is there a way to configure the user profiles so if our users are signing in from internet, to access the same profiles that they have, when accessing the SharePoint sites from intranet?
    (I've searched a lot, I didn't find excat solution. I've found something related to SPCLaims properties and had confugred them to sync with the AD using the "claims" trusted connection, but the problem remains.)
    This is simmilar to allow our users to login using their Facebook, Google, OpenID identity or the identity in our AD. How can this be done?

    SharePoint user profiles are not populated automatically when using claims-based authentication methods. You must create and populate these profiles yourself, typically in code. Users that map to existing accounts when you migrate to claims-based authentication
    will use any existing profile information, but other users and new users will not have profile information. For information about how you can populate user profiles when using claims-based authentication, see "Trusted Identity Providers & User Profile
    Synchronization" at
    http://blogs.msdn.com/b/brporter/archive/2010/07/19/trusted-identity-providers-amp-user-profile-synchronization.aspx.
    The same limitation occurs when using SharePoint Audiences. You cannot use user-based audiences directly unless you create custom code to support this, but you can use property-based audiences that make use of claims values. For information, see "Using Audiences
    with Claims Auth Sites in SharePoint 2010" at
    http://blogs.technet.com/b/speschka/archive/2010/06/12/using-audiences-with-claims-auth-sites-in-sharepoint-2010.aspx.
    From: http://msdn.microsoft.com/en-us/library/hh446523.aspx

  • Is it possible for me to sync to multiple computers using an external HDD?

    I just bought a 1TB external HDD and have all my music on it, as well as the installed and latest version of iTunes, as well I think I have the iTunes media file on there as well.
    So using all of those things is it possible to sync my iPhone 5 to multiple computers? Like can I start syncing on my Laptop and unplug and cancel the sync and continue it on my Desktop
    If there is I would imagine that it has to be either really easy or really complex. Either or I would like to know if it is possible!
    If you need any more info just ask and I could provide anything that isn't personal.

    Yes, if you have the entire library organized properly on the external drive then you can connect it to any computer running the same build of iTunes. See make a split library portable for details. You should also keep a backup on another drive.
    See also this post.
    tt2

  • User Profiles across multiple hosts

    I have three Macs:
    iMac 27
    MBPr13
    MBA13
    All running OSX Mavericks 10.9.4.
    We also run a home network with a LaCie 5BigPro 10TB NAS. All my user profiles on the hosts are set up for administrator privileges.
    Lately, we have had trouble with document files on the NAS not able to be opened on certain hosts because of a lack of user privileges. This could be complex, but I wanted to start with a simple question, that is can I make it so my own user profile on each of three hosts is recognised by OSX as the same user profile (and therefore has the same priviliges)? Like it is a single, roaming profile such as what you find on many enterprise networks...would this require some level of central domain-based authentication engine? Or are these features native to OSX? Or do I need to run OSX server to achieve this functionality?
    Cheers.

    Hi,
    Thank you for posting in Windows Server Forum.
    How is everything going on?
    In addition, please check below articles for more information.
    1. How to configure Roaming Profiles and Folder Redirection
    2. Using Folder Redirection
    3. Managing Roaming User Data Deployment Guide
    Hope it helps!
    Thanks,
    Dharmesh

  • Backup multiple computers using Time machine to a single external drive

    Is it possible to backup multiple computers to a single external drive connected to an Xserve using Time machine? We have a Six TB external drive that we are connecting to an Xserve that has three drives. We want to backup the entire

    Set the drive as a network share in the File Sharing section of System Preferences on the Xserve it is connected to and see if Time Capsule on the other machines can see it.  If so, it should work.  If you don't want the whole drive as a network share create a folder for backups on it and set that folder as a network share.

  • Can I sync my ipod with multiple computers using home share?

    Once I homeshare all my computers, can I sync my ipod with any of them?  Or do I always have to sync using the same computer.

    What kind of iPod do you have?
    For most iPods you can click Manually manage music on the summary page in iTunes. Check out Apple's document -> Using iPad or iPod with multiple computers.
    WTH.

Maybe you are looking for

  • How can i  change the column label text in a alv table display

    how can i change the column label text in a alv table display?? A similar kinda of question was posted previuosly where the requirement was the label text was needed and following below code was given as solution : <i>*  declare column, settings, hea

  • Can't play a single downloaded video, with all updated softwares and O.S.

    Problem : Attempting to play any downloaded iTunes video content from my iTunes Library prompts me with the following message: Authorize Computer This computer is not authorized to play "any iTunes Video That You Just finished downloading.m4v". If yo

  • Satellite A65 Hard Drive Problem...PleasE Help!

    When I try to boot my computer (Sarellite A65-S126) I get the following message,....It keeps scrolling down my computer. For Realtek Rtl8139(x)/8130/810x PCI Fast Ethernet Controller V2.13 (020326) PXE-E61: Media Test Failure, check cable PXE-M0F Exi

  • G5 shuts down when Portable external drive connected to Fire wire port

    Hi, I hope somebody can help me. I have a 100G lacie portable external HD that I use to back up my files regularly. It worked until today, I plug it in, I was able to save some files, and then the computer shut down. I restarted it and it did the sam

  • X-Fi XtremeMusic switch chann

    So finally?I bought an X-Fi. Very satisfied, but?there's just one small problem.Right and Left channels are switched. In the THX Setup Console, however, the test sound?comes from the good channels (right is right, left is left). I don't seem to have