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

Similar Messages

  • I use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    i use migrate assistant to move files from my old pc to the new Mac , but it creates the user account. How can i delete the unwanted user account.

    Welcome to Apple Support Communities
    That's the classic behaviour after using Migration Assistant and that's normal.
    To transfer the data from the new user account to your old user account, you can follow some steps. Here is all the information you need to do this > https://discussions.apple.com/docs/DOC-5472

  • 18 month old original i-pad switches on but screen resolution not good and can only just see the icons has the screen gone?

    18 month old original i-pad switches on but screen resolution not good and can only just see the icons has the screen gone?

    No could just make this out and it is up full

  • TS1389 i authorized some movies under a deleted user id that i cant recover since the old account is gone

    I authorized several movies under and old ID i no longer use that service provider and my email account has been deleted I update my Apple id to reflect the new account but now its still asking me to put in the old id to authize use of these movies haow can i fix this

    SurefireMedia,
    so it showed that you’d had 153.58 GB being used in your user’s home folder. Your first image showed that you have a disk with 499.42 GB, less 355.43 GB free, which left 143.99 GB being used. Thus, those files must still be somewhere underneath your home folder, perhaps restored after your migration, as BobRz suggested.
    Try a variation on the first du command to see where they’re located under your home folder:
    sudo du -sm /Users/username/* /Users/username/.[A-Za-z]*
    (Substitute the relevant username for username above.) If the bulk of the files are underneath one of the folders with a name that begins with a period, then that would explain why they’re difficult to find — names that begin with a period are hidden by default. (This behavior is a UNIX holdover.)

  • Hi please help.virus iPad? I have a iPad 2 , not jail broken, just 2 months old fresh from the apple store. Recently I have been directed to **** sites or a fake bad oink **** application, t

    Re: Mail virus and Trojan issues
    21-Jan-2013 14:58 (in response to Memoire)
    Hi please help.
    I have a iPad 2 , not jail broken, just 2 months old fresh from the apple store. Recently I have been directed to **** sites or a fake bad oink **** application, through various applications. From google chrome app, the photon app and safari.
    I always delete cookies and cache on exit. I use photon and puffin to watch flash player videos on tv series site with links such as put locker. I heard that there is no virus for the iPad but Trojans do exist.
    Pleae help, at first this was just happening with photon app now in 3 different apps, and it is directing me always to the same **** site. I don't watch **** so it's. it from cookies or whatever and my iPad has been randomly turning off and also the videos are working really badly now. Also there is a message red alert staying untrusted site and hacker may be intercepting your device. What is going on? Please help
    Is their a new redirecting Trojan or virus for iPad 2. ? If yes how can I remove it and will it cause permanent damage to my device? How could I have got this virus and in 3 apps. I'm also,worried as I use my iPad to buy things online etc with my credit card. What shall I do?.. Do I restore my device? How do I do that as I cannot connect to iTunes as I do not have a computer, just my iPad. Any help appreciated thanks.

    AlaskanElizabeth wrote:
    Happily- perhaps the most legit tech site on the Internet- cnet:
    http://news.cnet.com/8301-1009_3-57506159-83/apples-ios-and-android-are-new-favo rite-malware-victims/
    They broke a story on sept 4, 2012 titled "apple's iOS, the new favorite malware victims"
    Despite the dramatic title of the article, the only mention of iOS in the body was this:
    Even though malware is increasing in iOS, it still remains relatively low compared with other operating systems.
    And, it provides no examples or other documentation. And, unlike you, I don't consider CNET "the most legit tech site on the internet". I find them to be generally biased in their reiviews and heavily influenced by advertisers.
    http://www.forbes.com/sites/timworstall/2012/06/26/yes-apples-machines-really-ca n-get-viruses
    The Forbes article descibes issues with the Mac OS, of which there always have been some, though certainly far fewer than there have been on the Windows platform. It goes on to speculate :
    All those iPads, iPods and iPhones? Is this going to be a juicy enough target for the virus and trojan writers to at least attempt to attack, even given the difficulty of doing so?
    Again, the Forbes article doesn't mention any current viruses, trojans or malware that exist which will affect an unjailbroken iOS device.
    http://www.huffingtonpost.com/2012/05/15/iphone-malware-kaspersky_n_1515074.html
    And, the HuffPo article quotes Grebennikov thusly:
    "Our experience tells us that in the near future, perhaps in a year or so, we will see the first malware targeting iOS," Nikolai Grebennikov, Kaspersky's chief technology officer, told Computing.
    Again, even Kaspersky doesn't say such things exist now, merely that they might.
    Speculation about what might happen in the future or articles focusing on the Mac OS or Android are not terribly relevant. So, if you do have any other citiations, preferably from a source that doesn't derive most of is revenue from the companies it reviews, that document a virus or trojan that affects an unjailbroken iOS device, I would be interested. I have not been able to find any. I thought, perhaps, as a professional, you might know of some.
    Thank you.

  • My MacBookPro is less than 3 months old and for the last few days, it has been  itslow to load anything, especially web pages.  I get the rainbow swirl when loading or reloading.  I guess I am spoiled.  Up until now it was lightening fast!

    My MacBookPro is less than 3 months old and, for the last few days, it has been loading so slowly, mainly with webpages.  I have gotten the swirling rainbow "thinking" icon more in the last days than I have since I bought it.  I know I'm spoiled and expect it to be faster than lightening (which it has been) but I am worried that I may have been compromised in some way, or, is there anything I can do as administrator to clear out some "junk"?

    Back up your documents and everything else important to you, not that there is any reason to believe your hard disk may be failing, but the symptoms you describe may presage an impending disk failure, and you should have backups anyway.
    Given that your MacBook Pro is so new, you should certainly contact AppleCare and take advantage of the free telephone support included in its purchase price.
    Until then, if you are motivated to investigate this yourself consider the following:
    Apple Support Communities contributor etresoft wrote a very useful app to quickly gather certain system information that may help point to a cause of this problem. Go to his website, download and run EtreCheck:
    http://www.etresoft.com/etrecheck
    Etrecheck will be in your Downloads folder. Open it from there. You may see the following dialog box:
    Click Open - etresoft contributes to this forum frequently and can be considered a trustworthy developer.
    It will take a moment to run as it collects its data.
    Copy and paste its output in a reply.
    Do not be concerned about anything that says "Problem" or "failed".
    EtreCheck was designed to remove any personal information (such as your computer's name and serial numbers) but if you see anything that looks like an email address or any other personal information that should not be divulged to others, please delete or obscure that information when you post the reply.
    When you are finished with EtreCheck, quit the program. It occupies very little space, and you can keep it or drag it to the Trash as you wish.

  • I upgraded to lion, now that I am restarting my mac, it is asking for a password. mind you i never set a password in the begining. so i used my start up cd and re set the password and restarted my mac only to be faced with the same delima. user password.

    I upgraded to lion, now that I am restarting my mac, it is asking for a password. mind you i never set a password in the begining.
    So i used my start up cd and re set the password and restarted my mac only to be faced with the same delima. user password please.
    I am currently in safe mode, otherwise I can't log on to mymac
    Please help, anyone

    thank you to all who responded. the final line was that I had to reboot and loss all of my info.
    this was per apple store intelligence.

  • How To Restrict Users To Only Create Purchase Requisitions with Item Catalog?

    Hi, everyone 
    Please help me, 
    How To Restrict Users To Only Create Purchase Requisitions with Item Catalog? is it possible? 
    Regards,   Manuel

    Hi Steenie Norman
    First click on the text item ---> Tools ---> Property Pallete ---->
    and change the Keyboard State to Local Only also this Depend in your OS
    hope this useful ....
    Regards
    Mohammed

  • How can I import not only apps from the old iphone to the new iphone, but also the content of the apps?

    How can I import not only apps from the old iphone to the new iphone, but also the content of the apps?

    You can sync apps as you normally would, but I do not believe this copies over app specifc data (i.e. saved game status/scores).
    You can always restore your new device with a backup from your old device.

  • Adobe Creative Cloud - Photoshop CC / Photoshop CC (2014) i had first install Photoshop CC with some actualizations , I have install now Photoshop CC (2014) without desinstalling Photoshop CC... I would like stay only with the 2014 version but i don´t fin

    Adobe Creative Cloud - Photoshop CC / Photoshop CC (2014) i had first install Photoshop CC with some actualizations , I have install now Photoshop CC (2014) without desinstalling Photoshop CC... I would like stay only with the 2014 version but i don´t find more the desinstaller of old CC version and the 2 versions takes a lopt of space on my disk... is it normal or is there a necessity to stay with the 2 versions... Now I use only the 2014 version but the old version is always there ????

    Topic or subject titles should be clear, pertinent and concise so that individual users can tell at a glance if they can help or not. 
    That field is not for attempting to fit your entire question in there.
    Please keep this in mind next time you post.  Thank you.

  • Is it possible  to ask user a text, and create watermark with the answer?

    I am using the action wizard combined with preflight profiles to make some arrangements in the pdf I get from my customers.
    I usually create a watermark and introduce it without problems, but I would like to go further, introducing a code number that changes for every item as a watermark.
    It would be interesting that Acrobat asked the user that code number, and acrobat put that information in the bottom-center or the existing page...
    Is that possible with the action wizard, or should I look for information in the javascript forum?
    Thanks and Kind Regards.
    Joan

    I simply store *.HTM files on my memory card.
    then used the Memory explorer to browse the memory card, and click on the HTM file.
    it works fine.
    you can also look the "save page" option when you are viewing a page.
    the page gets added to your messages list like a regular email.
    The search box on top-right of this page is your true friend, and the public Knowledge Base too:

  • IPod touch users offered UK nationwide Wi-Fi with The Cloud

    *Check this out:-*
    http://www.thecloud.net/page/3653 (iPod touch users offered UK nationwide Wi-Fi with The Cloud)
    Sounds quite cool & not too expensive either...
    Extract:-
    +Friday, 28 September 2007+
    The Cloud today announced that it is giving Wi-Fi access to owners of Apple’s new iPod touch in thousands of hotspots across the UK. From Monday, users will be able to use their iPod touch to access the internet and Apple's online iTunes service in Wi-Fi hotspots provided by The Cloud.
    The new Wi-Fi service, called Cloud Unlimited Music, will be available from Monday 1st October 2007 for £3.99 per month, specifically for iPod touch, and is not subject to any minimum term contract.
    Owen Geddes, Group Director of Business Development at The Cloud, commented; “We believe this is a significant step forward in making music, podcasts and video available when, and wherever, people really want it. iPhone users will soon be able to make the most of our Wi-Fi network with O2 and The Cloud when the iPhone is introduced in November and we want to make sure people who have the Wi-Fi enabled iPod touch are able benefit from our network of over 7,500 hotspots too.”
    iPod Touch users need to sign-up for the service at http://www.thecloud.co.uk/ipod , where they can register their individual device for use on The Cloud’s network across the UK and pay for the service. Once a user has registered their device, they are able to connect to any The Cloud Wi-Fi network without complicated usernames and passwords. The service is being introduced in the UK first and will become available in other European markets shortly.
    The Cloud offers wireless broadband access at thousands of locations across Europe, including airports, hotels and railway stations throughout the UK, Germany, the Nordics and The Netherlands.
    *Obviously, for future UK iPhone owners, such Wi-Fi service is gonna be "free" (included in monthly contract bill)... BUT for itouch owners, what do people think of this new service?*

    It works outside pubs as well Not very far away - about the same as walking along the street and picking up signals from houses. Walked through Birmingham City Centre today (close to Bull Ring) having got my Touch out and watched a YouTube video walking along, moving from one hotspot to another - a bit stuttery as the signal dropped sometimes as TheCloud hot spots didn't overlap. But, at the pub, you are chatting to your mates and someone mentions something on YouTube so you whip out your Touch, press YouTube and everyone can have a look at it. Pretty smart.
    I've been testing it out last few days and, now, it's all seamless. No log in, just have wifi switched on and if signal appears can just press safari, youtube or itunes and "boom" it works.

  • I posted in Mac pro Eplehust and Oslo in early June to change videokart (which has changed six months ago) got my Mac a month by mail, with the terrible damage the body, but the packaging in which he lay was not damaged. I sent him back to change t

    I have posted in Mac pro Eplehust and Oslo in early June to change videokart (which has changed six months ago) got my Mac a month by mail, with the terrible damage the body, but the packaging in which he lay was not damaged. I sent him back to change the computer, 4 weeks, I changed it and checked 2 more weeks. as a result of three days ago, got back, more than half the programs crash, I can not open or closed CDrom, some programs do not come off or stop, and stop responding commands, turn it off only mechanically, not any excuses, I did not get to the store, what should I do?
    My patience is crowded, nerves on edge, I have lost my time with the worst service of my life, the only thing I see its the draw Eplehuset and apple to court.
    my e-mail - [email protected]

    While writing I made a mistake... It is true I could become aware of the Scorpio incompatibility.
    I also tried the same identical procedure with a Seagate one. This disk and the same procedure was performed by some people I know on many MacBookPro Mid-2010 and everything was OK.
    We do not understand why this problenm occurs.
    Furthermore, If I installed the system on the broken HDD (that works, but sometimes it fails so badly and makes the system experience kernel panic) I could boot from it.
    I guess it is because of the **** Apple FIrmware written on the label.
    Is it possible that I cannot manage to boot from my new HDD because it has not a "special" feature on it that makes it compatible with apple??? Why making things so **** difficult my god a closer world like Apple one is impossible to imagine.
    However Shootist007 thanks for your message, but given what I said I do not think is a cable problem.

  • I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?

    Hello everybody,
    I would like to copy all the songs from one Ipod into another. All the songs are into my Itunes account, I tried to drag and drop the songs from the old Ipod to the new one but it doesn't work. Is there a way to do it ?
    I share one Itunes account with other people from my family and one person would like to keep the same songs on the new Ipod as the ones which were on the old one.
    Thanks in advance for your answer.
    Yan

    Hello Chris,
    Thanks for your answer. I was hoping for an easier answer. Too bad there is no drag and drop solution, it would have been much easier.
    Thanks for answering so fast.
    Bye.
    Yan

  • Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    Can i change my old iPad with the new one, i Will pay the difference... Do you have this kind of program?

    If you are past the return date, you can sell the older iPad and put the money towards a new one.
    Plus, old iPads make great gifts ! ! !

Maybe you are looking for

  • Logic won't start! I got the message "Logic Pro 9 did suddenly quit!

    Hi. I had the same problem with Garageband a while ago... Now its time again! When i used Garageband, i downloaded cubase on my mac. And after that when i was tryed to open Garageband i got the message "Garageband did suddenly quit" (Translated from

  • Mail will not open message viewer or drafts

    Hello.  I work on a 27" IMac 2.66 GHz 8 GB 1067 MHz DDR3, running Mavericks 10.9.5.  Since installing the latest update mac mail has been running VERY slowly, even lagging substantially as I type.  Then in the last couple of days it has seemingly lau

  • How to install verion 8.0 on windows 8.0

    how can I install my old illustrator 8.0 onto my new system with windows 8.0

  • PS Library for Java?

    Does Adobe have a postscript print library for Java? I called Adobe Support - and got the typical India call center (no help of course). Hopefully Adobe has smart people someplace in the company... just not sure where. We have a Java Web Start deskto

  • Where'd my Serial Number go?

    Two months ago I had to bend over backwords to find CS2 for Photoshop (The free one they offered years ago) And recently I upgraded my computer only to go through much hassle of acquiring the serial number. Today I had to wipe my computer and I am in