Difference between revisions of "Windows Powershell"
Jump to navigation
Jump to search
Line 17: | Line 17: | ||
</pre> | </pre> | ||
'''save with .ps1 extension''' | |||
[[Windows| Category]] | [[Windows| Category]] |
Revision as of 14:36, 31 March 2020
Script that create a folder based on today's date, then copy the contents of one folder to another
$datecurrent = get-date -Format MM-dd-yyyy $apath = "C:\Users\Robert\Desktop\leaves" $btest = "C:\Users\Robert\Desktop\leaves\pdf-sliced" $ctest = "C:\Users\Robert\Desktop\leaves\atest" #create directory New-Item -ItemType directory -Path "$ctest\$datecurrent" #open folder ii "$ctest\$datecurrent" #copy files Copy-Item -Path $btest\* -Destination "$ctest\$datecurrent" -Verbose
save with .ps1 extension Category