PlusInfinite, LLC http://OFFLINEZIP.wpsho Custom software development for the cloud, mobile, and enterprise Fri, 12 Oct 2018 12:52:06 +0000 en-US hourly 1 https://wordpress.org/?v=4.9.10 Recursive Touch Command in Windows with PowerShell http://OFFLINEZIP.wpsho2016/08/01/recursive-touch-command-in-windows-with-powershell/ http://OFFLINEZIP.wpsho2016/08/01/recursive-touch-command-in-windows-with-powershell/#respond Mon, 01 Aug 2016 00:00:29 +0000 http://OFFLINEZIP.wpsho?p=377 We sometimes need to run the touch command in Windows recursively, for example when we need to mark all files in a folder and its subfolders as modified. We tested the built-in touch command, as well as numerous touch-like third party tools, and ultimately concluded that the following PowerShell command is the easiest way to accomplish that:

dir <folder> -R | foreach { $_.LastWriteTime = [System.DateTime]::Now }

Suppose we want to touch all files in the C:\Projects\PlusInfinite\BoxToolkit, including the BoxToolkit folder itself. In that case we would replace <folder> with C:\Projects\PlusInfinite\BoxToolkit. If, on the other hand, we want to touch all files in that folder, excluding the folder itself, we would replace <folder> with C:\Projects\PlusInfinite\BoxToolkit\*.

Resources

Related posts.

]]>
http://OFFLINEZIP.wpsho2016/08/01/recursive-touch-command-in-windows-with-powershell/feed/ 0
Happy New Year 2016! http://OFFLINEZIP.wpsho2015/12/31/happy-new-year-2016/ http://OFFLINEZIP.wpsho2015/12/31/happy-new-year-2016/#respond Thu, 31 Dec 2015 17:00:31 +0000 http://OFFLINEZIP.wpsho?p=137 Happy New Year 2016!

Hello 2016!

Happy New Year 2016! What an exciting year you are shaping out to be!

We are actively working on a few web applications, mobile apps, and services. We are prepared to integrate with more platforms and services. And we are ready to help even more customers!

Goodbye 2015!

We are extremely grateful for all the projects our clients entrusted us with in 2016. We developed mobile apps for the iOS and Android platforms, web applications for the .NET and LAMP stacks, and websites based on WordPress. We integrated with Box, Google Maps, and PayPal, to name a few.

Happy New Year 2016!

Please let us know how we can help with your project!

]]>
http://OFFLINEZIP.wpsho2015/12/31/happy-new-year-2016/feed/ 0