Showing posts with label Windows. Show all posts
Showing posts with label Windows. Show all posts

Copy contents of a directory

Thursday, December 27, 2012

If you need to create a batch file in Windows to copy the content of a directory including its subdirectory, you can use 'xcopy'.

xcopy /s c:\source d:\target

These are some of the options you can use with the command

  • /s/e - recursive copy, including copying empty directories.
  • /v - add this to verify the copy against the original. slower, but for the paranoid.
  • /h - copy system and hidden files.
  • /k - copy read-only attributes along with files. otherwise, all files become read-write.
  • /x - if you care about permissions, you might want /o or /x.
  • /y - don't prompt before overwriting existing files.
  • /z - if you think the copy might fail and you want to restart it, use this. It places a marker on each file as it copies, so you can rerun the xcopy command to pick up from where it left off.

Read more...

Windows 8 Setback

Thursday, January 6, 2011

Stop buying new software or application for Windows! Microsoft plans to create the next version of Windows to run on ARM chips. This could means that the previous application from previous windows might not be able to run on these new Windows. Users might have to re-buy the apps for it to work with the next Windows. Users are not the only one who will get affected, but the creator or developer of these third parties software might have to re-write their programs again to enable it to run on the next version of Windows. So users!! Get ready.. Better change to linux..

Taken from http://www.businessweek.com

'Windows 8' will run on ARM chips - but third-party apps will need rewrite
Microsoft says next version of Windows will run on increasingly popular chip platform, but existing programs won't run without changes
read more at http://www.guardian.co.uk/technology/2011/jan/05/microsoft-windows-8-arm-processors

Read more...
Technology blogs Blog Directory

  © Blogger template Noblarum by Ourblogtemplates.com 2009

Back to TOP