Skip to content

Instantly share code, notes, and snippets.

@darkoperator
Last active January 11, 2020 14:21
Show Gist options
  • Select an option

  • Save darkoperator/9138373 to your computer and use it in GitHub Desktop.

Select an option

Save darkoperator/9138373 to your computer and use it in GitHub Desktop.
Install Script for Posh-VirusTotal
# Make sure the module is not loaded
Remove-Module Posh-VirusTotal -ErrorAction SilentlyContinue
# Download latest version
$webclient = New-Object System.Net.WebClient
$url = "https://github.com/darkoperator/Posh-VirusTotal/archive/master.zip"
Write-Host "Downloading latest version of Posh-VirusTotal from $url" -ForegroundColor Cyan
$file = "$($env:TEMP)\Posh-VirusTotal.zip"
$webclient.DownloadFile($url,$file)
Write-Host "File saved to $file" -ForegroundColor Green
# Unblock and Decompress
Unblock-File -Path $file
$targetondisk = "$([System.Environment]::GetFolderPath('MyDocuments'))\WindowsPowerShell\Modules"
New-Item -ItemType Directory -Force -Path $targetondisk | out-null
$shell_app=new-object -com shell.application
$zip_file = $shell_app.namespace($file)
Write-Host "Uncompressing the Zip file to $($targetondisk)" -ForegroundColor Cyan
$destination = $shell_app.namespace($targetondisk)
$destination.Copyhere($zip_file.items(), 0x10)
# Rename and import
Write-Host "Renaming folder" -ForegroundColor Cyan
Rename-Item -Path ($targetondisk+"\Posh-VirusTotal-master") -NewName "Posh-VirusTotal" -Force
Write-Host "Module has been installed" -ForegroundColor Green
Import-Module -Name Posh-VirusTotal
Get-Command -Module Posh-VirusTotal
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment