Add files via upload

This commit is contained in:
I-Am-Jakoby 2022-12-26 13:10:10 -06:00 committed by GitHub
parent 82a8925586
commit 5ff7cfd24d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

15
unload.ps1 Normal file
View file

@ -0,0 +1,15 @@
# Set the destination directory on the desktop
$dest = "$env:USERPROFILE\Desktop\jakoby-payloads"
# Create the destination directory if it doesn't already exist
if (-not (Test-Path $dest)) {
New-Item -ItemType Directory -Path $dest | Out-Null
}
# Get all text files in the current directory and its subdirectories
$textFiles = Get-ChildItem -Path . -Recurse -Include "*.txt" -File
# Copy the text files to the destination directory
foreach ($textFile in $textFiles) {
Copy-Item -Path $textFile.FullName -Destination $dest
}