DavidOverton.com
This site is my way to share my views and general business and IT information with you about Microsoft, IT solutions for ISVs, technologists and businesses, large and small.  

Browse by Tags

  • Upgrade Windows XP/Vista/7 to Windows 8 Pro for $40 or £25 AND Media Center Pack for free – until 31st January

    This is a simple offer. Download the upgrade assistant from Microsoft, run the tool, purchase the license for a shockingly low price and get the benefits of Windows 8. Even if you think you might not use it for a year, you can burn the ISO so it is ready. All indications are that the price will increase once this offer expires. So, what is the processes? Go to the web site - http://windows.microsoft.com/en-GB/windows/buy (UK) or http://windows.microsoft.com/en-us/windows/buy (US) Press the Download link - Download Pro for £24.99 ERP (UK) or Download Pro for $39.99 ERP (US) ) - note the link is the same for any country for the assistant. Run the assistant and fill in the details, including the purchase options There is also one other thing you may wish to consider. Getting the currently free Media Center Pack. This is also very simple, go to http://windows.microsoft.com/en-gb/windows-8/feature-packs (UK) http://windows.microsoft.com/en-US/windows-8/feature-packs (US), enter your e-mail address and get a free...
  • How to copy or archive files by year using the command line and robocopy

    I got this question via e-mail and decided I would post the answer here in a blog. (Updated 16th Feb 2017 with a typo correction) I want transfer all files created in Office Word 2003 by year (annual batchs - ex: 2005, 2006, etc.) to external HD. How can to do this? I will appreciate your answer. Edgar To do this via the command line you can use Robocopy which is present in Windows Vista and Windows 7. If you have Windows XP download the Server 2003 Resource Toolkit and install it. Robocopy will be part of the install and found in the install directory. The actual command would look like this and would need to be entered into a command prompt: for /L %x in (2009,-1,2000) do robocopy source destination \%x *.doc? /maxage:%x0101 /minage:%x1231 /s To break it down a bit.. for /L %x in (2009,-1,2000) do This creates a counter from 2009 up in steps of -1 (or down in steps of 1) until 2000 is reached. Each time the counter changes it is set into %x, so %x will become 2009, 2008 and so on. It then executes the command...

(c)David Overton 2006-23