updated USAGE

This commit is contained in:
Patrick Neumann 2020-06-07 12:01:03 +00:00
parent 792eb2a132
commit 7151027f16

View File

@ -7,9 +7,18 @@
# copyfiles.ps1 (or copyfiles.exe) # copyfiles.ps1 (or copyfiles.exe)
# #
# USAGE: # USAGE:
# Step 1 (cmd.exe): # Step 1a (cmd.exe as Administrator):
# C:\>powershell -ExecutionPolicy Unrestricted # C:\>powershell -ExecutionPolicy "Unrestricted"
# Step 2: # Step 1b:
# PS C:\> E:\copyfiles.ps1 <Sourcepath> <Destinationpath> [Options]
# or
# PS C:\> E:\copyfiles.ps1 -s[ourcepath] <Path> -d[estinationpath] <Path> [Options]
#
# OR:
#
# Step 2a (powershell.exe as Administrator):
# PS C:\> Set-ExecutionPolicy "Unrestricted"
# Step 2b:
# PS C:\> E:\copyfiles.ps1 <Sourcepath> <Destinationpath> [Options] # PS C:\> E:\copyfiles.ps1 <Sourcepath> <Destinationpath> [Options]
# or # or
# PS C:\> E:\copyfiles.ps1 -s[ourcepath] <Path> -d[estinationpath] <Path> [Options] # PS C:\> E:\copyfiles.ps1 -s[ourcepath] <Path> -d[estinationpath] <Path> [Options]