Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Copy user profile? Helppppp!  (Read 5305 times)

0 Members and 1 Guest are viewing this topic.

Carlos Medrano

    Topic Starter


    Rookie

  • I've Allways enjoyed computers!
    • Experience: Beginner
    • OS: Windows XP
    Copy user profile? Helppppp!
    « on: July 11, 2010, 09:04:23 AM »
    Hello
    I am trying to copy my user profile with a Batch file Help?
    Running Microsoft® Windows Vista™ Home Premium
    Thanks
    Do Computers Think for them selfs?
    If they do tell them to write a report of your mind.

    Mulreay

    • Guest
    Re: Copy user profile? Helppppp!
    « Reply #1 on: July 12, 2010, 03:22:53 PM »
    What and why are you copying? Very vague as far as a request goes.

    Carlos Medrano

      Topic Starter


      Rookie

    • I've Allways enjoyed computers!
      • Experience: Beginner
      • OS: Windows XP
      Re: Copy user profile? Helppppp!
      « Reply #2 on: July 12, 2010, 03:46:58 PM »
      Because I have data I don't want to loos I try to copy and it does not copy anything
      e.g it does not copy the documents folder
      Do Computers Think for them selfs?
      If they do tell them to write a report of your mind.

      Mulreay

      • Guest
      Re: Copy user profile? Helppppp!
      « Reply #3 on: July 12, 2010, 03:55:20 PM »
      Whilst I'm looking do you have another account open on this computer? Like a guest account?

      Carlos Medrano

        Topic Starter


        Rookie

      • I've Allways enjoyed computers!
        • Experience: Beginner
        • OS: Windows XP
        Re: Copy user profile? Helppppp!
        « Reply #4 on: July 12, 2010, 04:33:49 PM »
        Yes I do.
        Do Computers Think for them selfs?
        If they do tell them to write a report of your mind.

        Mulreay

        • Guest
        Re: Copy user profile? Helppppp!
        « Reply #5 on: July 12, 2010, 04:40:30 PM »
        Are these shared files you want to copy?

        Carlos Medrano

          Topic Starter


          Rookie

        • I've Allways enjoyed computers!
          • Experience: Beginner
          • OS: Windows XP
          Re: Copy user profile? Helppppp!
          « Reply #6 on: July 12, 2010, 04:44:52 PM »
          No there my personal files
          Do Computers Think for them selfs?
          If they do tell them to write a report of your mind.

          Mulreay

          • Guest
          Re: Copy user profile? Helppppp!
          « Reply #7 on: July 12, 2010, 04:48:55 PM »
          This is sounding more and more unlikely. You will have to give me some solid proof this is your computer your working with.
          I could help you easily but I don't believe you.

          Carlos Medrano

            Topic Starter


            Rookie

          • I've Allways enjoyed computers!
            • Experience: Beginner
            • OS: Windows XP
            Re: Copy user profile? Helppppp!
            « Reply #8 on: July 12, 2010, 05:06:31 PM »
            This is my computer. ???
            What kind of proof do you want to me give you? ???
            Do Computers Think for them selfs?
            If they do tell them to write a report of your mind.

            Mulreay

            • Guest
            Re: Copy user profile? Helppppp!
            « Reply #9 on: July 12, 2010, 05:59:34 PM »
            It's a very straight forward process retrieving information from a computer, if you know the passwords.
            You have not once commented on a password. I for one think your not the owner. But please prove me wrong. And I apologise if I'm over sensitive.

            Carlos Medrano

              Topic Starter


              Rookie

            • I've Allways enjoyed computers!
              • Experience: Beginner
              • OS: Windows XP
              Re: Copy user profile? Helppppp!
              « Reply #10 on: July 12, 2010, 06:16:23 PM »
              You really want me to post the password? ???
              I'll post it rite here.
              ******
              Do Computers Think for them selfs?
              If they do tell them to write a report of your mind.

              Mulreay

              • Guest
              Re: Copy user profile? Helppppp!
              « Reply #11 on: July 12, 2010, 06:23:59 PM »
              You really want me to post the password? ???
              I'll post it rite here.
              ******

              I never asked for the password. I find your comment less than constructive.

              Carlos Medrano

                Topic Starter


                Rookie

              • I've Allways enjoyed computers!
                • Experience: Beginner
                • OS: Windows XP
                Re: Copy user profile? Helppppp!
                « Reply #12 on: July 12, 2010, 06:32:34 PM »
                Topic clos
                ....................................... ...........
                Do Computers Think for them selfs?
                If they do tell them to write a report of your mind.

                Mulreay

                • Guest
                Re: Copy user profile? Helppppp!
                « Reply #13 on: July 12, 2010, 06:37:29 PM »
                I for one would be happy if you closed this topic. I won't make a point.

                BC_Programmer


                  Mastermind
                • Typing is no substitute for thinking.
                • Thanked: 1140
                  • Yes
                  • Yes
                  • BC-Programming.com
                • Certifications: List
                • Computer: Specs
                • Experience: Beginner
                • OS: Windows 11
                Re: Copy user profile? Helppppp!
                « Reply #14 on: July 12, 2010, 06:46:25 PM »
                Hello
                I am trying to copy my user profile with a Batch file Help?
                Running Microsoft® Windows Vista™ Home Premium
                Thanks

                Code: [Select]
                @echo off
                set %destinationuser%=Default User
                xcopy.exe "%userprofile%" "C:\Documents and Settings\%destinationuser%" /C /I /S /E /H /R /Y


                change destination user as appropriate. Copies all data in the currently logged on users profile to "destinationuser" (which defaults to "Default User".

                You really want me to post the password? ???
                I'll post it rite here.
                ******

                +1 AWESOME!  ;D
                I was trying to dereference Null Pointers before it was cool.