Skip to content

Instantly share code, notes, and snippets.

@SharePointX
Last active March 30, 2016 23:46
Show Gist options
  • Save SharePointX/1cb0520d6a4203f37f7c32b021d27872 to your computer and use it in GitHub Desktop.
Save SharePointX/1cb0520d6a4203f37f7c32b021d27872 to your computer and use it in GitHub Desktop.
Install MyTwitter Module from https://github.com/MyTwitter/MyTwitter
$webclient = New-Object System.Net.WebClient
$url = "https://github.com/MyTwitter/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:PSModulePath.Split(";")[0]
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
@SharePointX
Copy link
Author

An error occurred during the import-module

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment