Don't log file copies
This commit is contained in:
parent
217053000f
commit
19ddde9eb3
@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
#Copy items to desktop
|
#Copy items to desktop
|
||||||
Copy-Item './extract.py' '..';
|
Copy-Item './extract.py' '..';
|
||||||
Get-ChildItem | Where-Object { $_.name -match '\.zip'} | ForEach-Object {Write-Output $_.name; Copy-Item -Path $_.name -Destination '..' }
|
Get-ChildItem | Where-Object { $_.name -match '\.zip'} | ForEach-Object {Copy-Item -Path $_.name -Destination '..' }
|
||||||
|
|
||||||
#Capture zip password from filename
|
#Capture zip password from filename
|
||||||
$pwPattern = [regex] "[A-z 0-9 \-]{1,251}\((?<PW>[A-z0-9]{1,251})\)\.zip";
|
$pwPattern = [regex] "[A-z 0-9 \-]{1,251}\((?<PW>[A-z0-9]{1,251})\)\.zip";
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user