Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions PowerMeta.ps1
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Disable cert checks
add-type @"
using System.Net;
using System.Security.Cryptography.X509Certificates;
Expand Down Expand Up @@ -229,6 +228,8 @@ Function Invoke-PowerMeta{

}
}
#Quiet ProgressBar to increase webrequest throughput
$ProgressPreference = 'SilentlyContinue'

#Performing a Bing search second

Expand Down Expand Up @@ -525,8 +526,6 @@ Function ExtractMetadata{
{
Write-Output "[*] Exiftool.exe was not found in the current directory! Exiting."
}


}
}
else{
Expand Down Expand Up @@ -570,4 +569,6 @@ Function ExtractMetadata{

}
}
#Return ProgressBar to default
$ProgressPreference = 'Continue'
}