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

  • What are the legal options for Licensing Windows 7 or Windows Vista? Or how to avoid mis-licensing

    I’m often told that Microsoft licensing is complex, but what I actually find are that this either translates to “I have too many choices - ahhhh!” or “I can’t license in the way I want to” or “I can’t find the information I want to”. Option 1 is always going to happen – the more choice, the more complexity in making the right choice. Option 2 is often “I don’t want to buy lose licenses, why do I have to..” and Option 3 is poor communications on the part of Microsoft. To help with the Option 3 situation there is a new guide on the Microsoft Partner portal that explains one of the areas I’m often asked about – i.e. Windows client licensing. It is really simple. Here are the rules in summary (non-legally binding and please read the guide for full details): A PC has to licensed with a Full retail product (FPP, bought from a shop) or supplied with an OEM license (the OEM option can’t be used after the PC has been bought...
  • 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