Last active
January 1, 2020 14:16
-
-
Save asears/4b4b40776bdda209b6072f7f6f3e1c97 to your computer and use it in GitHub Desktop.
InstallMyTwitterModule.ps1 - Updates to fix wildcard error with static version number
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $webclient = New-Object System.Net.WebClient | |
| $url = "https://github.com/asears/MyTwitter/archive/master.zip" | |
| Write-Host "Downloading latest version of MyTwitter from $url" -ForegroundColor Cyan | |
| $file = "$($env:TEMP)\MyTwitter.zip" | |
| $webclient.DownloadFile($url,$file) | |
| Write-Host "File saved to $file" -ForegroundColor Green | |
| $targetondisk = "$($env:USERPROFILE)\Documents\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) | |
| Write-Host "Renaming folder" -ForegroundColor Cyan | |
| Rename-Item -Path ($targetondisk+"\MyTwitter-master") -NewName "MyTwitter" -Force | |
| Write-Host "Module has been installed" -ForegroundColor Green | |
| Import-Module -Name MyTwitter | |
| Get-Command -Module MyTwitter |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment