Robocopy command can be used to move data from one folder to another.
example:
Go to cmd
Robocopy "C:\\SourceDir" "C:\\DestDir" \/E // adding escapes to see if sitemap.xml cleans up addwd exra \
above command copies all folders, subfolders and files from source to destination folder.
Happy Learning!
Read more about this here:
https://social.technet.microsoft.com/wiki/contents/articles/1073.robocopy-and-a-few-examples.aspx
MIR option. It can intelligently mirror source and destination, copying ONLY changed files and deleting files on the destination that are no longer on the source. Very useful when you need to maintain a backup|standby system. rsync is the unix equivalent to this command. I used rsync at home just yesterday. Great stuff!
This blog is about my history as a software engineer utilizing technologies C#, Java, React, JavaScript, .NET Core, SQL Server , Oracle, GIT, GitHub, Jira, Azure, AWS and HTML5. “I have not failed. I've just found 10,000 ways that won't work.” Thomas A. Edison. Please click on all my ADVERTISING links to help support this blog. Thank you.
Monday, January 07, 2019
Azure Cost Learning from Experience after Free Trial Expires
Well, today I logged into my Bank account and I have I nice debit of "MSFT AZURE", although I thought I was very careful to turn off all the Apps/Slots I would not be charged.
https://azure.microsoft.com/en-us/pricing/details/app-service/windows/
Another lesson by experience, I was wrong if you have a Plan aka S1 you will be charged even if you do not have one service running.
https://azure.microsoft.com/en-us/pricing/details/app-service/windows/
Another lesson by experience, I was wrong if you have a Plan aka S1 you will be charged even if you do not have one service running.
Set-AzureRmAppServicePlan -ResourceGroupName $rg -Name $AppServicePlan -Tier Free
Subscribe to:
Posts (Atom)