Difference between revisions of "Windows Powershell"

From rbachwiki
Jump to navigation Jump to search
Line 18: Line 18:


'''save with .ps1 extension'''
'''save with .ps1 extension'''
 
== CD  to a specific directory ==
set-location 'g:\Dropbox\All Folders\websites\amazonawsWebDev\test'
=[[Windows| Category]]=
=[[Windows| Category]]=

Revision as of 14:40, 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

CD to a specific directory

set-location 'g:\Dropbox\All Folders\websites\amazonawsWebDev\test'

Category