UN-Registering Noteworthy Composer 2004-09-08 10:07 am I may be replacing my computer soon, and intend to migrate NWC to the new machine. I will uninstall the program from the old machine; does this remove the secretly-held licence information, or is there some other way to do this?If I just uninstall NWC, could the new owner of the machine acquire and install a trial version which would then recognise to the still-existing undeleted licence information? Quote Selected
Re: UN-Registering Noteworthy Composer Reply #1 – 2004-09-08 02:57 pm Unless you are using a very old version, you can simply uninstall. Quote Selected
Re: UN-Registering Noteworthy Composer Reply #2 – 2004-09-08 03:21 pm I recommend if the computer is going to have a new owner then to do a full “system restore” to your computer, this way any other information on the computer will not be able to be seen or used by the new owner. Quote Selected
Re: UN-Registering Noteworthy Composer Reply #3 – 2004-09-08 03:24 pm Good point. Any time you are planning to give your old computer to someone else, it is a good idea to reformat your system's hard drives. You might be surprised how much info is collected and maintained by your PC. Quote Selected
Re: UN-Registering Noteworthy Composer Reply #4 – 2004-09-09 05:30 am To prevent anyone from restoring your deleted files (which won't take many minutes if you have the right tools), you should overwrite the "empty" areas of your disk.Files don't disappear from your disk when you delete them, but instead they are only marked as deleted. Then, whenever disk space is needed, those deleted areas of the disk will be overwritten.Here is a simple but quite working OW.BAT batch. All it does is make one huge file that will overwrite all of your empty areas.@echo offif x%1==x goto syntaxecho Overwriting empty areas of your disk.echo This may take quite some time, please wait...%1:cd\goto continue:syntaxecho Error!echo To run this batch, use the following syntax:echo.echo OW <drive>echo.echo <drive> The letter of the drive you want to overwrite.echo.echo Example:echo OW C will overwrite all empty areas of drive C.goto end:continueecho x >aecho x >bcopy a+b c /b /y >nul:redodel bren c bcopy a+b c /b /y >nulif exist c goto redodel adel bdel cecho Done!:end Quote Selected