Skip to content

Instantly share code, notes, and snippets.

@lzybkr
Created August 21, 2016 00:43
Show Gist options
  • Save lzybkr/3cd091334355f381d1d6ee7acfad5a48 to your computer and use it in GitHub Desktop.
Save lzybkr/3cd091334355f381d1d6ee7acfad5a48 to your computer and use it in GitHub Desktop.
Analyze curl in PowerShell scripts
using namespace System.Management.Automation.Language
function AnalyzeCurlUsage
{
param([Parameter(ValueFromPipeline)][Alias('PSPath')][string]$path)
process {
$err = $null
$tokens = $null
$ast = [Parser]::ParseFile($path, [ref]$tokens, [ref]$err)
$curlCommands = $ast.FindAll({ $n = $args[0]; $n -is [CommandAst] -and $n.GetCommandName() -eq 'curl'}, $true)
if ($curlCommands.Count -eq 0)
{
# The string 'curl' was in the script, but not used as a command name.
return [pscustomobject]@{UsesCurl = 'no'; FileName = $path.Substring($path.IndexOf('-') + 1) }
}
foreach ($curlCommand in $curlCommands)
{
foreach ($element in $curlCommand.CommandElements)
{
if ($element -is [CommandParameterAst] -and -not ($iwrParameters | Where-Object { $_.StartsWith($element.ParameterName, 'OrdinalIgnoreCase') } ))
{
# There was a parameter that could not have been used with Invoke-WebRequest,
# so the presumed usage is curl.exe
return [pscustomobject]@{UsesCurl = 'exe'; FileName = $path.Substring($path.IndexOf('-') + 1) }
}
}
$binding = [StaticParameterBinder]::BindCommand($curlCommand, $true)
if ($binding.BindingExceptions.Count -gt 0)
{
# Parameters were ambiguous (possibly Invoke-WebRequest), but the static parameter binder failed
# (possibly because of too many positional arguments), so assume the usage was curl.exe.
return [pscustomobject]@{UsesCurl = 'exe'; FileName = $path.Substring($path.IndexOf('-') + 1) }
}
}
# Not definitive, but very likely a usage of Invoke-WebRequest. A quick manual inspection of the results
# didn't show any incorrect results here.
return [pscustomobject]@{UsesCurl = 'iwr'; FileName = $path.Substring($path.IndexOf('-') + 1) }
}
}
$iwrParameters = (Get-Command Invoke-WebRequest).Parameters.Keys
# The scripts to analyzed were downloaded and saved locally with this script:
# gc .\scripts-with-curl.txt | % {$cnt = 0} { invoke-restmethod $_ -OutFile ("{0}-{1}" -f $cnt++,($_ -split '/')[-1]); start-sleep -seconds 8 }
# scripts-with-curl.txt was generated roughly like this:
# $y += 2..75 | % { write-host $_; iwr "https://github.com/search?p=${_}&q=curl+language%3Apowershell&type=Code&utf8=%E2%9C%93"; sleep -seconds 8 }
# Then processing the Links property, but only where the link ended in ps1. I have all the commands in my history, but it's messy ;)
dir *.ps1 | AnalyzeCurlUsage
https://raw.githubusercontent.com/HighwayFramework/Highway.RoadCrew/c6f52db30f89b443ea6dcb9a03d55ceaf3e48994/RunMe.Config.ps1
https://raw.githubusercontent.com/trayburn/Presentation-YellowBeltDocDBs/786c1cb85e5e5e68b6b725b02d9e87b5ae08d9bd/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox2/5191ea62ccf8b9a2cb92b66a11968c71b7825ade/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox2/5191ea62ccf8b9a2cb92b66a11968c71b7825ade/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/alexgit/push-notifications/901ddd4b5bdfa39b620fc50b573a53b88dbed13a/RealTime/packages/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/DevlinLiles/Herald/f0f8869892cd237184bccfcc96a6a5dc9aef2ad8/lib/RavenDB-Build-206/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/DevlinLiles/Herald/f0f8869892cd237184bccfcc96a6a5dc9aef2ad8/lib/RavenDB-Build-206/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/albertjan/Domotica/4b4e5b7a26230aa4a8193d18c504dfa5c6ac2c89/Libs/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/albertjan/Domotica/4b4e5b7a26230aa4a8193d18c504dfa5c6ac2c89/Libs/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/devharis/.NET/ece6e948852c67e7949f7b47032d0f0ecbc59578/.NET%20MVC%20CHS%20AlphaTest/Databas%20-%20Starta%20f%C3%B6rst/RavenDB-Unstable-Build-2578/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20A/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20B/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/VirtueMe/NNUG.NServiceBusSample/ecefc8f190d84af34bad352cdac85ee399b154c6/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/VirtueMe/NNUG.NServiceBusSample/ecefc8f190d84af34bad352cdac85ee399b154c6/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/munsu/RavenSystem/eb48cf018eaaab82adac2b56592c8d32d6a5f86a/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-800/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-888/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/CommonJobs/CommonJobs/a4fa3ad435b6d3eb5f1ed12202096c0c0e337ba0/spikes/RavenPOC1/RavenDB-Build-573/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/CommonJobs/CommonJobs/a4fa3ad435b6d3eb5f1ed12202096c0c0e337ba0/spikes/RavenPOC1/RavenDB-Build-573/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/dzampino/powershell/057a12218403b5df78f5336a725f8e0d9345651e/install-curl/Install-Curl.ps1
https://raw.githubusercontent.com/ShabeerJaleel/IFlixr/deb6c101da52eb5aa683bd285d48dae69b47827d/Lib/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/AleksanderGondek/GUT_IronTester/757195f5cb7d6db2845df3bf9086b9fc4282bdbb/Dependencies/RavenDB-Build-2330/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/mlinnen/SparkContinuosDeliveryExample/b945ac3c5ba0c6042cff53d91edc105da3592410/default.ps1
https://raw.githubusercontent.com/marcduiker/Powershell-Scripts/1480a5a547559ea2dd0d0daadc895fa7c6802c00/scripts/sitecore/deploy-sitecorepackage.ps1
https://raw.githubusercontent.com/AndrewKL/EmberTinkerer/cfa3ab4f182984c21052d40d2142615a42470871/Tools/RavenDb/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/brunomlopes/netponto-ravendb/acc83434164f630016d2dc145b141145c495688e/lib/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/brunomlopes/netponto-ravendb/acc83434164f630016d2dc145b141145c495688e/lib/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/jalchr/RavenDb.Azure/8a49ed03c6315f20ccd1a824f401db52a5676b97/Software/RavenDb/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/jalchr/RavenDb.Azure/8a49ed03c6315f20ccd1a824f401db52a5676b97/Software/RavenDb/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox/3675beaa5204296144d18993cbc9570b3f12a1a6/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox/3675beaa5204296144d18993cbc9570b3f12a1a6/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.Replication/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/RZachLamberty/isl/a02bd2d8d3db2388802194df9a734a2040a9d22c/bootstrap.ps1
https://raw.githubusercontent.com/nicseltzer/tomcat-deploy/ababcc70dd08879b61fdad17def518b962ac8e74/deploy-war.ps1
https://raw.githubusercontent.com/PhilipBrockmeyer/Wren/a06ce7375ec93147e0d14b4db5df47fc93857cd0/wren/Lib/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/jasonbs01/DungeonCloud/a915f2e191fbb5d5a3cfe36ba15b4bbf6b02b673/Source/TestScripts/CurlCommands.ps1
https://raw.githubusercontent.com/VirtueMe/NNUG.NServiceBusSample/ecefc8f190d84af34bad352cdac85ee399b154c6/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/nicholasceliano/Powershell_UsefulTools/ae7ddf0e351cfa5bc5d30bc09dd946fc9e007756/scripts/curl.ps1
https://raw.githubusercontent.com/mastersign/bench/477f8946bb8c8d1cfc1d231482de2244dd03456b/auto/lib/profile.ps1
https://raw.githubusercontent.com/wenming/BigDataSamples/f212a16b34d932a6216181117744963cbec1af1e/twittersample/uploadtweet.ps1
https://raw.githubusercontent.com/parkovski/config/f113ed8ece971eca987e8e0346f8d9d6cb9b480a/profile.ps1
https://raw.githubusercontent.com/shigekazu-inohara/WindowsPowerShell/aec387577e563bb77f88af9b8ed020a4787ca598/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/crmckenzie/career/fb9d8b7131a58e7b510d417b5ddcae640121b3d9/windows-workstation/Configure-Machine.ps1
https://raw.githubusercontent.com/crmckenzie/configure-win-dev-workstation/993640153c25e7deb77d4790bc21953287929c2c/Configure-Machine.ps1
https://raw.githubusercontent.com/jpadams/apiary/edd66868bef637118b3c4b572170d7bdb0ed89aa/x_windows_status2.ps1
https://raw.githubusercontent.com/Azure/azure-webjobs-sdk/b1fb20b0edf0530d62127d6dd9f50cc9345ca7b6/src/AzureJobsTest/Deploy.ps1
https://raw.githubusercontent.com/alpaix/azure-jobs/de9b2bd8882373a3b75cb3b9138d041af30cc823/src/AzureJobsTest/Deploy.ps1
https://raw.githubusercontent.com/dibble-james/VSO/43606618b3d8a02943a9ed3ca1c13b46384283d2/Build/cURLUploaderAmmended/cURLUploader.ps1
https://raw.githubusercontent.com/jaekschmitt/dotfiles-windows/f8f6e1fcc38d67cce44d14fd77fca22772005087/aliases.ps1
https://raw.githubusercontent.com/jpadams/puppetconf_api/aeb93fb791768d9a0ff6a5d2cd737e723807e152/x_windows_status2.ps1
https://raw.githubusercontent.com/aspnet/Performance/19458605aa1da60758ef4a7d3ba0ef0fd03f09cf/test/ColdStart/MeasureRequestLatency.ps1
https://raw.githubusercontent.com/jrotello/PsProfile/00997c9eca5d816651ffcd6e645f8b8f63970029/aliases.ps1
https://raw.githubusercontent.com/epitty1023/vagrant-win2012r2/698790d2c18cc6bd2b48cb5d928337b999f08073/scripts/devtools.ps1
https://raw.githubusercontent.com/tekconf/tekconf/ae16e5ae02f6143e593968138a9b82bbabfe2f5c/libs/RavenDB-Build-2330/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/samuelstein/FingerSpellingKinect/7753141248888650a8160c84660455abb884471c/RavenDB-Build-2700/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/trayburn/Presentation-YellowBeltDocDBs/786c1cb85e5e5e68b6b725b02d9e87b5ae08d9bd/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/mithro/chrome-buildbot-sprint/e41171676c9b84441a3818d08380d0a7a11cd682/appengine/windows-startup-script.ps1
https://raw.githubusercontent.com/atjshop/atjshop.github.io/70e378ebb3e50071d3a3d032b81f1524691b7436/processing/submit.index.html.2.baidu.ps1
https://raw.githubusercontent.com/mccullen/FHIR/65cd0fbf27cf5a237058871c9cb7f7cde89a8a92/DownloadFhirBuildProfile.ps1
https://raw.githubusercontent.com/majkinetor/posh/c526a1bcce4205bf331dc18822df0a458f1c250c/MM_Sugar/Get-Sprunge.ps1
https://raw.githubusercontent.com/majkinetor/posh/b3ecc97db90c00749d76b15f4980e65fd813070e/MM_Sugar/_Aliases.ps1
https://raw.githubusercontent.com/majkinetor/posh/b3ecc97db90c00749d76b15f4980e65fd813070e/MM_Sugar/_Aliases.ps1
https://raw.githubusercontent.com/cdhunt/Parse-Curl/7a4bd0d701ef7c2b9a8af9d9fd6bdd6fed15d029/Parse-Curl.Tests.ps1
https://raw.githubusercontent.com/devharis/.NET/ece6e948852c67e7949f7b47032d0f0ecbc59578/.NET%20MVC%20CHS%20AlphaTest/Databas%20-%20Starta%20f%C3%B6rst/RavenDB-Unstable-Build-2578/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20A/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20B/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/atjtest/atjtest.github.io/9c1c33a32a2ebc9f33fc331a3fed9ddda9ea27d3/processing/submit.index.html.2.baidu.ps1
https://raw.githubusercontent.com/munsu/RavenSystem/eb48cf018eaaab82adac2b56592c8d32d6a5f86a/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/AnthonyMastrean/WindowsPowerShell/5f92a53ac5d5926844b1e6c6ae0aa733d957d2b1/Cmdlets/httpcode.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-800/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-888/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/BackupDatabase.ps1
https://raw.githubusercontent.com/Bioconductor/BBS/1f711dbe8dc20bf18e5dc675b8914200d6dfc39e/utils/setup-vep.ps1
https://raw.githubusercontent.com/ShabeerJaleel/IFlixr/deb6c101da52eb5aa683bd285d48dae69b47827d/Lib/RavenDB/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/AleksanderGondek/GUT_IronTester/757195f5cb7d6db2845df3bf9086b9fc4282bdbb/Dependencies/RavenDB-Build-2330/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/AndrewKL/EmberTinkerer/cfa3ab4f182984c21052d40d2142615a42470871/Tools/RavenDb/Samples/Raven.Sample.Failover/Setup%20Master%20To%20Slave%20Replication.ps1
https://raw.githubusercontent.com/ako/CsvServices/b9d35941bcdf6dbd3d7a6e31ce6ce406f7082414/test-data/curl-products.ps1
https://raw.githubusercontent.com/NobilisHealth/marketo-rest-cli/d0a836b0a3fbc0b1a36e43726d11bdfb2f448feb/marketo-delete-patient.ps1
https://raw.githubusercontent.com/tekconf/tekconf/ae16e5ae02f6143e593968138a9b82bbabfe2f5c/libs/RavenDB-Build-2330/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/ewoutkramer/fhir-net-api/daf41f8d51eddfd9afa13c75627e0baf45e0fb6b/build/DownloadFhirBuildProfile.ps1
https://raw.githubusercontent.com/justinsoliz/ravendb_nancyfx_presentation/7e8d7941cdfd10255808393ba44789e0635e6abc/demos/ravendb_samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox2/5191ea62ccf8b9a2cb92b66a11968c71b7825ade/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/alexgit/push-notifications/901ddd4b5bdfa39b620fc50b573a53b88dbed13a/RealTime/packages/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/DevlinLiles/Herald/f0f8869892cd237184bccfcc96a6a5dc9aef2ad8/lib/RavenDB-Build-206/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/marcduiker/ShipTest/32f1c5777615451e32abccaa1663bff173a4793d/scripts/get-latestversion.ps1
https://raw.githubusercontent.com/albertjan/Domotica/4b4e5b7a26230aa4a8193d18c504dfa5c6ac2c89/Libs/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/StephenCleary/blog-stephencleary-dotcom/fcd78791d0b1e9cb0359b201c17974c286d0dc02/util/setpath.ps1
https://raw.githubusercontent.com/munsu/RavenSystem/eb48cf018eaaab82adac2b56592c8d32d6a5f86a/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/simplyadrian/powershell-install_rightscale_powershell_library/9bd1164de7300067edde59560f273136040c1083/src/install_rightscale_powershell_library.ps1
https://raw.githubusercontent.com/quentinproust/PowerShell-Scripts/0f71e3d85232f14ca369c70d7bd29e58a34f1d4f/solr.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-800/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-888/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/SzymonPobiega/ReleaseCandidateTracker/308240e1b96f64b12f9a276c12aa78cf0bc5fe0b/Tools/LibraryReleaseCandidateTracking.ps1
https://raw.githubusercontent.com/CommonJobs/CommonJobs/a4fa3ad435b6d3eb5f1ed12202096c0c0e337ba0/spikes/RavenPOC1/RavenDB-Build-573/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/thedersen/posh-env/d1989a073e2e58d02128bc9f452dc9104a57afba/path.ps1
https://raw.githubusercontent.com/AleksanderGondek/GUT_IronTester/757195f5cb7d6db2845df3bf9086b9fc4282bdbb/Dependencies/RavenDB-Build-2330/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/paralect/robomongo-vagrant/23c6a417eab6a94e74f4db344ab48c84d8fc3940/windows/windows-8.1/powershell/upload.ps1
https://raw.githubusercontent.com/cybyvlad/VS-Resharper/a2baf348ff11de4cc9e26b141f6efc10ed29e76a/AfterWindowsInstall.ps1
https://raw.githubusercontent.com/legigor/WindowsPowerShell/342435f6378f4dcca196e83d00b011ebf541573f/LastProfile/profile.ps1
https://raw.githubusercontent.com/brunomlopes/netponto-ravendb/acc83434164f630016d2dc145b141145c495688e/lib/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/jalchr/RavenDb.Azure/8a49ed03c6315f20ccd1a824f401db52a5676b97/Software/RavenDb/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/slieser/sandbox/3675beaa5204296144d18993cbc9570b3f12a1a6/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/marcduiker/Powershell-Scripts/1480a5a547559ea2dd0d0daadc895fa7c6802c00/scripts/sitecore/publish-sitecoresite.ps1
https://raw.githubusercontent.com/marcduiker/ShipTest/32f1c5777615451e32abccaa1663bff173a4793d/scripts/deploy-sitecorepackage.ps1
https://raw.githubusercontent.com/marcduiker/Powershell-Scripts/1480a5a547559ea2dd0d0daadc895fa7c6802c00/scripts/sitecore/search-and-deploy-updatepackages.ps1
https://raw.githubusercontent.com/Nuttenscl/streaming-extraction/0ea2a8044519f4551f21053cc734c12eb4f7c700/regarderfilmgratuit.ps1
https://raw.githubusercontent.com/puppetlabs/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/windows-toolset.ps1
https://raw.githubusercontent.com/nicholasceliano/Powershell_UsefulTools/ae7ddf0e351cfa5bc5d30bc09dd946fc9e007756/scripts/c.ps1
https://raw.githubusercontent.com/remotex/Samples/93bde2506de72609df011fb39ed768f797e92e71/Commands/Get-AvailableCommands.ps1
https://raw.githubusercontent.com/joe-niland/windows-dev-box/722d9edbe27593a147ed518c025481d9ca7f38ca/install-dev-tools.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/windows-toolset.ps1
https://raw.githubusercontent.com/codingteam/icfpc-2015/b7e995bbd55c89d458c5faa60819151a046cdae7/Post-Submissions.ps1
https://raw.githubusercontent.com/sillevl/dotfiles/83026d852377dd534c057e2b11674a5c817f913b/powershell/chocolatey.ps1
https://raw.githubusercontent.com/awanrky/Zoe-old/0bb246d26b1ae83ef950ec9ffec37aabd6bd2ce6/Curl/body-weight/insert.ps1
https://raw.githubusercontent.com/deevus/dotfiles/6bbbe35f58c97aeb0b2171af1e3d0b2a42fbe571/Scoop.Settings.ps1
https://raw.githubusercontent.com/aytch/PowershellScripts/da2e28283abd444d737e29e668b9538f5dc83998/http_post-powershell.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/RestoreDatabase.ps1
https://raw.githubusercontent.com/kfwls/strip-py/7115dbc96a0bef0c1353d463838421f21fefc939/test/test.ps1
https://raw.githubusercontent.com/voutasaurus/fetch/1880e6fb5869c072e0aa49247fcca4634f92a8be/Get-Shirts.ps1
https://raw.githubusercontent.com/hsachinraj/tomcatdeployment/dd2fe57d9efac5401a6171964f9d1a06d767cf6e/tomcatdeploy.ps1
https://raw.githubusercontent.com/sapito318/PSHMC_DataStage/94fdfd2f738cfbe0c40cc4319b13fd9349c209dc/PSHMC_DataStage/powershell/AMOS/amos%20contracts.ps1
https://raw.githubusercontent.com/Zimbra-Community/owncloud-zimlet/3778408e678dc95934c55f93c6a2088a5faef7cf/backup-client-windows/automatic/makebackup.ps1
https://raw.githubusercontent.com/glombard/Scripts/4abf9dddf6d84a14dc4ec1a0b4195262d3750ee4/PowerShell-Installers/Get-cURL.ps1
https://raw.githubusercontent.com/edwindj/cspa_rest/91d83ea4d78d2a6818b8fd5e2a9eedc2bbb11aeb/install/powershell/4.Run-Examples.ps1
https://raw.githubusercontent.com/espes/hoverrace/3adee6aaa49c4e8a0b68dc1352439f7dcd16648f/lib/build/curl/fetch.ps1
https://raw.githubusercontent.com/RickStrahl/MarkdownMonster/21c61a8f93465f6353544c54bfc99ff850396b81/Install/Upload.ps1
https://raw.githubusercontent.com/jfaerman/sysopsonaws-labs-windows/8139f4d4e923f0c44b0243a5dc6bb368e2bfe854/instructionsSnippets.ps1
https://raw.githubusercontent.com/ptrstpp950/vagrantDemoWin2012/a125777663c9a4f9451d842670dbb5080790d006/setup.ps1
https://raw.githubusercontent.com/hasmanytrees/literate-octo-computing-machine/1c0ff42329829efda8fc7fe73af9684fe32a8466/CURL_Script_Support/ProjectCreationScript.ps1
https://raw.githubusercontent.com/ArloL/dotfiles/355bbfd58120019c454b07d57153522e391c0175/install-win.ps1
https://raw.githubusercontent.com/tekconf/tekconf/ae16e5ae02f6143e593968138a9b82bbabfe2f5c/libs/RavenDB-Build-2330/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/puppetlabs/puppet-agent/c4e71feee303d1bd277811bb5dbcbd58cec66218/bin/windows-env.ps1
https://raw.githubusercontent.com/vicentedealencar/dotfiles/c93b6cfe11a21e772a29d954da10a500a423758d/git/download-all-github-repos.ps1
https://raw.githubusercontent.com/justinsoliz/ravendb_nancyfx_presentation/7e8d7941cdfd10255808393ba44789e0635e6abc/demos/ravendb_samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/samuelstein/FingerSpellingKinect/7753141248888650a8160c84660455abb884471c/RavenDB-Build-2700/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/samuelstein/FingerSpellingKinect/7753141248888650a8160c84660455abb884471c/RavenDB-Build-2700/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/trayburn/Presentation-YellowBeltDocDBs/786c1cb85e5e5e68b6b725b02d9e87b5ae08d9bd/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/trayburn/Presentation-YellowBeltDocDBs/786c1cb85e5e5e68b6b725b02d9e87b5ae08d9bd/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/codingteam/icfpc-2015/b7e995bbd55c89d458c5faa60819151a046cdae7/Generate-Submissions.ps1
https://raw.githubusercontent.com/slieser/sandbox2/5191ea62ccf8b9a2cb92b66a11968c71b7825ade/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_chrome.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_firefox11.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_flash4ie.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_ruby187.ps1
https://raw.githubusercontent.com/samituohino/win-setup/9b4f4d24747ec876e43e915729b7e8dcae978b88/install_dev_tools.ps1
https://raw.githubusercontent.com/opentable/PowerNagios/cba7970584c627861ba6ff2f1750c40968fdae3a/functions/nagios-commands.ps1
https://raw.githubusercontent.com/opentable/PowerNagios/cba7970584c627861ba6ff2f1750c40968fdae3a/nagios-interaction.ps1
https://raw.githubusercontent.com/tfausak/octane/332bfc714e0caa0b88fc507d58185677f1e62c05/tools/install-github-release.ps1
https://raw.githubusercontent.com/tfausak/octane/332bfc714e0caa0b88fc507d58185677f1e62c05/tools/install-stack.ps1
https://raw.githubusercontent.com/jimmyp/WindowsInstall/28b3a02c5fffe23fcf8bcbdab0df024716ecee77/Install-AllChcolateyPacakges.ps1
https://raw.githubusercontent.com/alexgit/push-notifications/901ddd4b5bdfa39b620fc50b573a53b88dbed13a/RealTime/packages/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/DevlinLiles/Herald/f0f8869892cd237184bccfcc96a6a5dc9aef2ad8/lib/RavenDB-Build-206/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/mervinyan/hockeystats/3a51f610dd0d2126a486d4b0c56acda3f1dc6ac7/myhockeyapp/load_projections.ps1
https://raw.githubusercontent.com/phillipwei/Tracking.Self/ce2115ae6fa3b8f772e07d0523cf5b7dba0a35a6/data/upload_new.ps1
https://raw.githubusercontent.com/albertjan/Domotica/4b4e5b7a26230aa4a8193d18c504dfa5c6ac2c89/Libs/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/devharis/.NET/ece6e948852c67e7949f7b47032d0f0ecbc59578/.NET%20MVC%20CHS%20AlphaTest/Databas%20-%20Starta%20f%C3%B6rst/RavenDB-Unstable-Build-2578/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/devharis/.NET/ece6e948852c67e7949f7b47032d0f0ecbc59578/.NET%20MVC%20CHS%20AlphaTest/Databas%20-%20Starta%20f%C3%B6rst/RavenDB-Unstable-Build-2578/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/glombard/Scripts/4abf9dddf6d84a14dc4ec1a0b4195262d3750ee4/AngularJS-Dev-Setup/functions/Install-ChocolateyPackages.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20A/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20B/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20A/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/myarichuk/SeminarStuff/a0f98ba3b6d26d27c3258604559f00381ba3dc82/Servers%20for%20replication/Server%20B/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/munsu/RavenSystem/eb48cf018eaaab82adac2b56592c8d32d6a5f86a/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/mervinyan/forecaster/3a62622f363fffe7f8a264dc35f3a26b35345dd2/scripts/load_projections.ps1
https://raw.githubusercontent.com/eikhorst/myposhstashes/c079a8b7b432c861d70bb32547bcb25de1c646b8/Azure/Azure-VM-NewAdminBox.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-800/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/andrewmyhre/ticketmuffin/1fd93737c5459eba4c2603eeb07e426b9edbd9f6/packages/RavenDB-Build-888/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/kkoenig/dotfiles/925060b6fb53fcbe7f5f69a08013abd9aeef2be1/test/Windows.ps1
https://raw.githubusercontent.com/CommonJobs/CommonJobs/a4fa3ad435b6d3eb5f1ed12202096c0c0e337ba0/spikes/RavenPOC1/RavenDB-Build-573/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/andrewjcarl/dev-tools/f63d8129f1038ea3556980f441f4059eaa050a9a/setup/wox.ps1
https://raw.githubusercontent.com/gartdan/Azure-CustomScriptExtensions/4da5bb97552225b48d4acc4d6bc7e4579e186f42/Install-DevTools-VSAlreadyInstalled.ps1
https://raw.githubusercontent.com/ShabeerJaleel/IFlixr/deb6c101da52eb5aa683bd285d48dae69b47827d/Lib/RavenDB/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/ShabeerJaleel/IFlixr/deb6c101da52eb5aa683bd285d48dae69b47827d/Lib/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/Tervis-Tumbler/OperationsMetrics/570f0dd337c8b4d5f50a58983477ca9c2b65aab1/load.ps1
https://raw.githubusercontent.com/AleksanderGondek/GUT_IronTester/757195f5cb7d6db2845df3bf9086b9fc4282bdbb/Dependencies/RavenDB-Build-2330/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/rtancman/docker-elk/cb51df9145eb10a67b5392e054891b5ee43920d3/elasticsearch/dashboards/beats-dashboards-1.1.0/load.ps1
https://raw.githubusercontent.com/andrewtyped/environment_cfg/c0c0a3142d4bcbc61dd94f651722404529bbc4c8/Powershell/Microsoft.Powershell_profile.ps1
https://raw.githubusercontent.com/MSAdministrator/QualysGuard-V1-API---PowerShell/9a8542febd4857f6af3c5fc25f91f16acde64318/Login-QualysV2.ps1
https://raw.githubusercontent.com/AndrewKL/EmberTinkerer/cfa3ab4f182984c21052d40d2142615a42470871/Tools/RavenDb/Samples/Raven.Sample.ShardClient/Setup%20Master%20To%20Master%20Replication.ps1
https://raw.githubusercontent.com/MSAdministrator/QualysGuard-V1-API---PowerShell/9a8542febd4857f6af3c5fc25f91f16acde64318/Login-QualysV2.ps1
https://raw.githubusercontent.com/thegpfury/PRTG-Powershell-Plugins/2728c5ebd076aad60fc4807fd5085e5e29ce4db2/get-ccstat.ps1
https://raw.githubusercontent.com/brunomlopes/netponto-ravendb/acc83434164f630016d2dc145b141145c495688e/lib/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/jalchr/RavenDb.Azure/8a49ed03c6315f20ccd1a824f401db52a5676b97/Software/RavenDb/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/aulme/windows_pc_setup/e33364801745d9c9f751c3c16f515ba13293f5a8/setup.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/windows-env.ps1
https://raw.githubusercontent.com/slieser/sandbox/3675beaa5204296144d18993cbc9570b3f12a1a6/Artikel/dotnetproDojos/RavenDB/lib/RavenDB/Samples/Raven.Samples.IndexReplication/Setup%20Index%20Replication.ps1
https://raw.githubusercontent.com/codefornamie/namie-tools/6eea73a2fb356da1f6b65131595cbd4aabf94dd3/setup_environment/scripts/ope_roles_develop.ps1
https://raw.githubusercontent.com/codefornamie/namie-tools/6eea73a2fb356da1f6b65131595cbd4aabf94dd3/setup_environment/scripts/ope_roles_product.ps1
https://raw.githubusercontent.com/ilkerde/winfiles/83c224151089e612a74c3f8427e50cd4d4e84b1f/ruby-ssl-puppet-fix.ps1
https://raw.githubusercontent.com/Bioconductor/BBS/1f711dbe8dc20bf18e5dc675b8914200d6dfc39e/utils/setup-win.ps1
https://raw.githubusercontent.com/remotex/Samples/93bde2506de72609df011fb39ed768f797e92e71/Commands/Execute-Commands.ps1
https://raw.githubusercontent.com/elastic/beats-dashboards/c7f2ce5088d3771c7a935cd3dd4730de5137b3de/load.ps1
https://raw.githubusercontent.com/buehler/twitterbeat/b13b94e959f64c79f206c13fdaf0e5e29cf88e45/kibana/load.ps1
https://raw.githubusercontent.com/elastic/beats/f80012a30e3a41d8dd6db0697f6b9a01de3c85f1/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/radoondas/logstashbeat/849249528610eeb37908f9a348a83ece504a4290/vendor/github.com/elastic/beats/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/sunnygkp10/Collect-System-Metrics/5646e9306726201278de93b4935dec7189547556/beats-dashboards/load.ps1
https://raw.githubusercontent.com/siye1982/packetbeat-finagle-thrift/e1ec02703174a33db4287d4a8e086195b1094b51/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/radoondas/apachebeat/6e127c61fa52f894c523f82bcb5ff51074906536/vendor/github.com/elastic/beats/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/opentable/PowerNagios/cba7970584c627861ba6ff2f1750c40968fdae3a/functions/nagios-commands.Tests.ps1
https://raw.githubusercontent.com/douaejeouit/Docker_metricbeat/e6c80264d3686939fc4451c358fb8ae8d973650c/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/t-mat/hatch/9fa88b307f8cb195bf3da43e99cdceb6d48c65d2/sox-14.4.1.ps1
https://raw.githubusercontent.com/jschaf/install-mozilla-certs/72766f1960d052d9275adb5d254e407f5c7216fb/install-mozilla-cert.ps1
https://raw.githubusercontent.com/UstyuzhaninAV/prtg/c10d6ecf42d8c9ded5012ec7986991eddce75278/prtg_clone_obj_git.ps1
https://raw.githubusercontent.com/Ang3lFir3/Telescope/91cca37dce1e8fb8b02a570014c56949b3217740/telescope.ps1
https://raw.githubusercontent.com/kkoenig/wimproved.vim/f824a382753716f82f4f8528494a463426126300/run-tests.ps1
https://raw.githubusercontent.com/quentinproust/PowerShell-Scripts/0f71e3d85232f14ca369c70d7bd29e58a34f1d4f/curl.ps1
https://raw.githubusercontent.com/daveyb/Boxstarter/8871e7ee6aa9503b2d1b82c3260b12a6d599b27e/tools/ChocolateyInstall.ps1
https://raw.githubusercontent.com/flofreud/env/a1c51726502adc50b90bd9f09727bab6483894e9/posh/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/Nexusger/SetupMyMachine/6590608375db567844d07f59bb19b4324088c830/chocolateyPackages.ps1
https://raw.githubusercontent.com/drewtalati/Automation/4e36b94e3c0a080987680ab966b83daeb8babed2/joinDomain.ps1
https://raw.githubusercontent.com/vejuhust/msft-scooter/d5644b4426609d551b80b1a1993697da284b7839/controller/ActOnImage.ps1
https://raw.githubusercontent.com/jordandashel/dev-jordand/2a80acd1443211ccac8f93a633fc13ed4836626b/artifactory/configure-artifactory.ps1
https://raw.githubusercontent.com/ebashmakov/Etl.SqlServer.Elasticsearch/adad6417e2853aed01c63bb8c0375a52b5695136/scripts/install-dotnet-cli.ps1
https://raw.githubusercontent.com/saikrin/MyTestRepo/c199f1402e00aa03ed54cd5e6df575160dec2763/blueprint-samples/umglogger-module/tools/Deployment/powershell%20deployment.ps1
https://raw.githubusercontent.com/mcandre/dotfiles/6d9bfa3efd8d5a2aeea5c44ee62440f3a8d643e9/profile.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/Deployment/Get-AssemblyManifest.ps1
https://raw.githubusercontent.com/brunobelarmino/aspnet-conference/3a13d7ac30f6a34a458ee2e312dffdff052b3a3f/requests.ps1
https://raw.githubusercontent.com/discoposse/VMTurbo-PowerShell-Modules/fa004969aed1d6595210d9eb1aed17a8cce1fb5f/VMTurbo/Add-BulkTargets.ps1
https://raw.githubusercontent.com/Zimbra-Community/owncloud-zimlet/3778408e678dc95934c55f93c6a2088a5faef7cf/backup-client-windows/interactive/makebackup.ps1
https://raw.githubusercontent.com/panreel/office365-management-api-test/2054a69cd20cf4d3ce4081b0287ffcf7fb493046/O365ManagementAPI.ps1
https://raw.githubusercontent.com/davecowart/mason/522485d43a89fbbfaea6c12cfc231aef65dc0fda/Bricks/github.ps1
https://raw.githubusercontent.com/volcra/rex/9447162cb2d400e8a2cdc6f09a3185aea873435a/packages/cygwin/cygwin.ps1
https://raw.githubusercontent.com/jaekschmitt/dotfiles-windows/f8f6e1fcc38d67cce44d14fd77fca22772005087/chocolatey.ps1
https://raw.githubusercontent.com/chrisgornall/DeveloperConfiguration/091c4931a9ea8956f1cf483b70fae06a87a8948e/Windows/devsetup.ps1
https://raw.githubusercontent.com/HomeServerTech/powershell/9188e072ddb85b992e04461794e5375ef26e9ec3/Code_Examples/install-cygwin.ps1
https://raw.githubusercontent.com/ninjasftw/libertyproxybeat/61312073ffeca8c0af16e871d88e8333354e5b69/vendor/github.com/elastic/beats/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/fundisoftware/fuw-kibana-dashboards/cb02572fd79c04b20fe2317dc320165209459a80/load.ps1
https://raw.githubusercontent.com/fconcklin/ec2fuzz/7e0c0b1000506b274f7337f3a04c86f386132993/powershell/bootstrapTemplate.ps1
https://raw.githubusercontent.com/LogRhythm-Labs/SRP-Fortinet/78cfd80e2b113158d658ae2cd7f4a42f13733041/fortinet.ps1
https://raw.githubusercontent.com/radoondas/jmxproxybeat/b31021eb9bb27f1cd5c801cea68c58f9eb4f1173/vendor/github.com/elastic/beats/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/radoondas/elasticbeat/78467db187e842573462d3069cfdeef21bbbd584/vendor/github.com/elastic/beats/dev-tools/import_dashboards.ps1
https://raw.githubusercontent.com/jbosstm/narayana/29270942f17cc553ad1497a41f60fce12e784fb6/scripts/hudson/download-gnuwin32-tools.ps1
https://raw.githubusercontent.com/fconcklin/ec2fuzz/7e0c0b1000506b274f7337f3a04c86f386132993/powershell/bootstrapdoze.ps1
https://raw.githubusercontent.com/danielgary/vso-hockeyapp-windows-task/c1a21e6a47974f4df5dda1d974cd96d8f54f052b/hockeyapp.ps1
https://raw.githubusercontent.com/IronFoundry/if-service-broker/fdc97f9ec8f21f5b3f820d9b03250b2c60c08f62/IronFoundry.ServiceBroker/App_Data/register.ps1
https://raw.githubusercontent.com/vmkdaily/vFlux-Stats-Kit/c036203fd3cd8196d5c42057f071834f54c3683b/vFlux-IOPS.ps1
https://raw.githubusercontent.com/aburok/mysettings/ec0bdcc930ab07042fa654a6e41095c2dad81776/PowerShell/windows-packages.ps1
https://raw.githubusercontent.com/cgerke/dotfiles-windows/8b07e405dfba17e095a6797cb5f73ef4e5428929/functions.ps1
https://raw.githubusercontent.com/NotMyself/coreapp/550235794bf70fc75e94f58f1056c6371721d2f2/script/web-test.ps1
https://raw.githubusercontent.com/fschwiet/repave/7b4021b2dd1bfda02dc3e11cb541af6991a8c33b/02%20run%20me%20after%20rebooting.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_dotnet4.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_dotnet45.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_python27.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_rubydevkit3245.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_python27.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_rubydevkit3245.ps1
https://raw.githubusercontent.com/peters/myget/5bb6a50fa2c97a659bfc0d180d29e1225a726291/tests/myget.include.tests.ps1
https://raw.githubusercontent.com/YashMaster/Path/e1868c798672316efb5934d823d6acc00e33dcfb/lift-demo.ps1
https://raw.githubusercontent.com/iLuffy/ILuffy/a1f1ee3126be8f6af4559f078144ce33793887c4/build/update-psake.ps1
https://raw.githubusercontent.com/mattmcnabb/Canvas/4fb1dbb4726d2ed090ba05017a9309ee733e2349/Functions/Public/Get-SisImportStatus.ps1
https://raw.githubusercontent.com/wiltaylor/PSJekyll/94eb40784d5ee12709dd99e07c985d050ff24b52/New-JekyllBlog.ps1
https://raw.githubusercontent.com/cdaf/windows/b5ba0c0da6072ac3adb006779bdb644c992e23c0/automation/provisioning/curl.ps1
https://raw.githubusercontent.com/saneki/vagrant-templates/7dd0a3f83136ad64f7339305187c545a3c54c527/windows/setup-packages.ps1
https://raw.githubusercontent.com/rikedje/Snippets/d1c1be313b3171bf8e6ae55c2db1be33ba1a516e/Boxstarter/MyFreshPC/tools/ChocolateyInstall.ps1
https://raw.githubusercontent.com/talapus/InstantServer/015da3847b1827e2dfc8dbbf7572bd221f86d6a3/scripts/_archive/install.ps1
https://raw.githubusercontent.com/richard-cargill/WindowsPowerShell/62403e3d4b41239f1c9d96ad5d8d2f2ca987be2a/paths.ps1
https://raw.githubusercontent.com/marcusoftnet/ScriptsAndStuff/7d7bf0e9079617154c88478223bccb508c11eb95/DevMachineInstall/devApps.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Deployments/List_Deployments.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Inputs/List_Deployment_Inputs.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Permissions/List_Permission.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Publications/List_Publications.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Publications/Show_Publications.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Security%20Groups/List_Security_Groups.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Security%20Groups/Show_Security_Group.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Security%20Groups/Show_Security_Group_Rules.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/ServerTemplates/List_ServerTemplates.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/ServerTemplates/List_ServerTemplates_and_MCI_Associations.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Server_Array/List_Server_Arrays.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Server_Array/Show_Server_Array.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Servers/List_Servers.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Servers/List_Servers_In_Deployment.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Servers/Show_Server.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Users/List_Users.ps1
https://raw.githubusercontent.com/PProvost/dotfiles/e9cf3b99b759fee039e51a513d3f585aac97171c/powershell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/praveenc/scripts/171d1821a1c575faeb6c23eeb9f524b272336acd/powershell/svn/Find-NewCheckins.ps1
https://raw.githubusercontent.com/thegpfury/PRTG-Powershell-Plugins/2728c5ebd076aad60fc4807fd5085e5e29ce4db2/get-Tuners-b.ps1
https://raw.githubusercontent.com/Zache/zacharias/59363afa9663a4c6d20816b7a68c021fb095a1c4/profile.ps1
https://raw.githubusercontent.com/thomykay/PoshConfluence/2bef8cd5052f103b2a4a5fb3d29e2943a3a85bef/Plugins/Get-CflPlugin.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/Install-Ruby.ps1
https://raw.githubusercontent.com/andygeorge/kennasecurity_file_connector/ff6c5d9b43364cca9585df22ab107dee8e35a954/kennasecurity_file_connector.ps1
https://raw.githubusercontent.com/devoncustard/Virtualbox/cfe04b64da2d6ca6232e6e08167ec0fc96d7b5ca/host_scripts/RevokeCert.ps1
https://raw.githubusercontent.com/jeffbuenting/RabbitMQ/9f991129dde9487b7d60682def575d3b1e57b1be/RawCode/Get-RBMQUser.ps1
https://raw.githubusercontent.com/jeffbuenting/RabbitMQ/9f991129dde9487b7d60682def575d3b1e57b1be/RawCode/New-RBMQUser.ps1
https://raw.githubusercontent.com/jeffbuenting/RabbitMQ/9f991129dde9487b7d60682def575d3b1e57b1be/RawCode/Set-RBMQUser.ps1
https://raw.githubusercontent.com/jeffbuenting/RabbitMQ/9f991129dde9487b7d60682def575d3b1e57b1be/RawCode/set-RBMQUserPermissions.ps1
https://raw.githubusercontent.com/Zignd/InitialMachineSetupWithChocolatey/4fd75dfc8beb0c3d2e8fe14e2bfd5a8c0469e90c/InitialMachineSetupWithChocolatey/Script.ps1
https://raw.githubusercontent.com/DataRoberts/Tableau/b9e4ed644338d2f7cbadc7723c55ff6db88edb5f/TsDiskSpace.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2008_r2_cn_openstack/scripts/livecloud.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2012_r2_cn_openstack/scripts/livecloud.ps1
https://raw.githubusercontent.com/jhochwald/NETX/9f6dac9268901aa5c7ac4a7fb529846e64b9817a/Profile/functions/ConvertFrom-CurlRequest.ps1
https://raw.githubusercontent.com/wushaobo/InitWindowsNode/df4e3c32d14ca905a3c5e0bc7cd84f603751ab77/lib/fetch-median-function.ps1
https://raw.githubusercontent.com/joshclark/dotfiles/3be48ec91cfb01fde46a834a57816bfbae27ae7a/powershell/EnvSetup/Get-Programs.ps1
https://raw.githubusercontent.com/yhnavein/dotfiles/e90f364cfd3a47e815b0afe5d97acd45b4306c0b/chocolatey.ps1
https://raw.githubusercontent.com/ismail/hacks/63a7b7e7416fdb96f94e35df55a2f2ebaaebae94/windows/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/nilminus/base_windows/e02ca20ab89cfc12b19612275efafd4e76c9cb6c/chocolatey.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/PivotalTracker/Find-TrackerStories.ps1
https://raw.githubusercontent.com/jimmyp/WindowsInstall/28b3a02c5fffe23fcf8bcbdab0df024716ecee77/Install-Applications.ps1
https://raw.githubusercontent.com/drm2/workstation-provisioners/7975781eb2acd3992c38d662db3a570bf7ae4678/windows-8.1/provision.ps1
https://raw.githubusercontent.com/yunspace/dotfiles/1280287865a1d45941219f1e7f2fcc3d803ca273/bootstrap.ps1
https://raw.githubusercontent.com/liyanh/TFS/5cd7f83df1026cf2605c068f46f89c2b64b7ef1b/KPI_Code_Auto.ps1
https://raw.githubusercontent.com/mervinyan/hockeystats/3a51f610dd0d2126a486d4b0c56acda3f1dc6ac7/myhockeyapp/load_game_sheets.ps1
https://raw.githubusercontent.com/aparson1982/PowerShell-Stuff/203279e6f1d0766e1151245e900645ba3d989747/Summon-Spider.ps1
https://raw.githubusercontent.com/crmckenzie/career/fb9d8b7131a58e7b510d417b5ddcae640121b3d9/windows-workstation/Profiles/Profile.ps1
https://raw.githubusercontent.com/friedrichg/multi-scripts/391770e4e169fba67896675bc091b2a77eb29a7a/powershell.ps1
https://raw.githubusercontent.com/deevus/dotfiles/6bbbe35f58c97aeb0b2171af1e3d0b2a42fbe571/Profile.ps1
https://raw.githubusercontent.com/CarmenAPuccio/vagrant-windows-puppet/0b62d05d8afc2b7bcacba3381db6981ef3f64a8a/shared/shell/DownloadCACertificate.ps1
https://raw.githubusercontent.com/hitsa/candibox/c738c62b88951caae011b772b9626fda906116f6/windows_dependencies.ps1
https://raw.githubusercontent.com/flofreud/env/a1c51726502adc50b90bd9f09727bab6483894e9/setup.ps1
https://raw.githubusercontent.com/vgrigoriu/scripts/6a15940e97bb03664ff3e4c46218d1fe7c84e439/DevMachineInstall/devApps.ps1
https://raw.githubusercontent.com/switchspan/chocolatey-spf13/e8cf022323de2d09c6e08f73973bbf91c3367d7a/tools/spf13-vim-windows-install.ps1
https://raw.githubusercontent.com/hyrmn/dotfiles/cd7150679ebaaa5996ea28d246723baf9151a860/WindowsPowerShell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/zolcsieles/VRTestApp/9cc5fdc27257ab8aa40bd2934de5dd0c263368fb/scripts/build.ps1
https://raw.githubusercontent.com/cd01/dotfiles/e43e590c9bacfb4ac8e5b61bd32ba62187162578/win/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/devengarch/jal-webapp/55191c43e633fb55d2b4f657d455d6b0f82c0485/tmp.ps1
https://raw.githubusercontent.com/crmckenzie/configure-win-dev-workstation/993640153c25e7deb77d4790bc21953287929c2c/Profile.ps1
https://raw.githubusercontent.com/drewburlingame/setup-windows/505b5fec397b0b89a73e10a5ad415b464800d6da/setup-archived.ps1
https://raw.githubusercontent.com/berwyn/dotfiles/b329ab1b060e17caba0b2ae02031063411f25d29/.posh/scoop.ps1
https://raw.githubusercontent.com/bbaassssiiee/buildserver/6c8faff8888df0c9ffe1fe4288f6df0781079ed2/roles/ansible-oasis/files/cygwin_packages.ps1
https://raw.githubusercontent.com/jeffbuenting/RabbitMQ/9f991129dde9487b7d60682def575d3b1e57b1be/RawCode/Get-RBMQUserPermission.ps1
https://raw.githubusercontent.com/kambui/PoshOstack/4062181f951f54f03d6f9b7b94b7e2e344ee39ee/make_connection.ps1
https://raw.githubusercontent.com/jonny-clark/dotfiles/b0acf89099aee09bf830e9cc403b6c29d36a1ff2/scoop.ps1
https://raw.githubusercontent.com/idvorkin/Settings/157e7e59ab5ade0df47b322318d519d13f97e80c/newmachine/install_packages.ps1
https://raw.githubusercontent.com/freezeeedos/mywinInstall/546f35b33af269f4f00f71508beb004bf38cfefd/choco.ps1
https://raw.githubusercontent.com/marcusoftnet/ScriptsAndStuff/7d7bf0e9079617154c88478223bccb508c11eb95/DevMachineInstall/devAppsReinstall.ps1
https://raw.githubusercontent.com/nissenjonas/Scripts/3eed44daff96cfed641414d243a6b6e217fb94c8/box_setup.ps1
https://raw.githubusercontent.com/mani0070/InstallSoftware/666364e782c524b9142712aed64d03ecfe8e52ef/surfacesetup.ps1
https://raw.githubusercontent.com/joaomoreno/Windows/65422cce2e936acbce463ee12bb4451b10c1cec7/WindowsPowerShell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Instance_Types/List_Instance_Types.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Instances/List_Inputs_Current.ps1
https://raw.githubusercontent.com/rs-services/RightScalePowerShell/fcaeaf8bd840486d373a6f2394dea477d17d0bd5/PowershellAPI/Instances/List_Inputs_Next.ps1
https://raw.githubusercontent.com/BobRoss/Lindon-Test-Framework-/76442ae3917f99c9b01f9f044a1a74a000a89d31/pangaea/ui/powershell/curl.ps1
https://raw.githubusercontent.com/solthoth/octo-chainsaw/5f32a0c99adcc0c943f674b8c906547de5f03797/choco/setup-env.ps1
https://raw.githubusercontent.com/chrisrpatterson/dotfiles/f9976246fa2d72cae47860c9b34fb1736a92f6f1/powershell/profile.ps1
https://raw.githubusercontent.com/MShawnDillon/webdev-win/d63efb96d4f10f46364d6e5454ecc713a54200d5/Get-PortableGit.ps1
https://raw.githubusercontent.com/emoshaya-cognito/ec2bootstrap/db98bd012547fa977a71a43f714aa5ccec44abb0/Bootstrap-EC2-Windows.ps1
https://raw.githubusercontent.com/adbre/psget/9b29b34d243db28fab3f7ad92a43a0df93ffbdc8/PsGet.ps1
https://raw.githubusercontent.com/Tommy00/Nusbio.Samples/3029586948a99b3efe65d100545fd0d6a0101e93/CS/MadeInTheUSB.Nusbio.PowerShell/ReplDemo.ps1
https://raw.githubusercontent.com/mediagoom/AdaptiveVideoTest/acff6f71ec6ffd01c10bf3bc9d37f5014ea89e99/AdaptiveVideoTest/LoadMediaFromWs.ps1
https://raw.githubusercontent.com/jlundstrom/Scripts/5fc086599284ef6621b9eabb19fd7b5d8d6a6f93/Powershell/SMC%20Auto%20Flash/Flash.ps1
https://raw.githubusercontent.com/jayharris/dotfiles-windows/a8ac429737c40adcbf972cc568520fec9fb7ba62/deps.ps1
https://raw.githubusercontent.com/sasawee/scenarios/067e4d1e9e0c51c58b712924706cfccbf9a03e00/Take-ScreenShot.ps1
https://raw.githubusercontent.com/snowytech/stUpDown/e25f79b1703579c48f40381b19fa7b338b1d3585/stUpDown/stUpDown.ps1
https://raw.githubusercontent.com/Darkniel/couchdb-2-fts/f974f03d1d418e30a08d53f80c0542471c8425e3/configure.ps1
https://raw.githubusercontent.com/badmishkallc/chocolatey-packages/998ffabbc06fdb1102014b0947b18a85c1ad943b/php-fpm/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/adbertram/Session-Content/66298e782ffbf8bf1ab078755d8dd6b0abea61d6/Live%20Talks/User%20Group%20Talks/PowerShell%20and%20Bash%20Sittin'%20in%20a%20Tree/demo.ps1
https://raw.githubusercontent.com/suoto/hdlcc/6a6816319df850a98b2718215e90c517a789b43a/.ci/scripts/setup_ghdl.ps1
https://raw.githubusercontent.com/pmcgrath/golang_inv/befee128ab56b544b202fabcde1011bb5f92e5e1/repomgr/stashapi.ps1
https://raw.githubusercontent.com/eidmantas/windowstarsnap/39332dc87b91470773e3e42d5829afd45684d9d0/cygsnap.ps1
https://raw.githubusercontent.com/stetsiafoulis/eLOD/f62f508a4892ff8300e8916071f03b06b15e0ae1/couchdb/configure.ps1
https://raw.githubusercontent.com/RackHD/on-http/b8e5a4d98136cdc5bab06ff76442fd3637cb8a9e/data/templates/startup.ps1
https://raw.githubusercontent.com/apache/couchdb/e4e8a7d16b1b0bf10fa3ba0fb542dedcee49d585/configure.ps1
https://raw.githubusercontent.com/cveira/social-media-scripting-framework/17fe8ad5b459288545301996f43f1c65d806b44d/PSBitLyModule.ps1
https://raw.githubusercontent.com/Laures/chocolatey-packages/210a48e1a55c4c4d97dc2c2e8d98bf17c4ac2929/spacebukkit/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/atupal/WindowsPowerShell/d3b5e87627b8374a2528c91ed7ecb8489d1034d0/Modules/ydcv/collins-cobuild.ps1
https://raw.githubusercontent.com/edwindj/cspa_rest/91d83ea4d78d2a6818b8fd5e2a9eedc2bbb11aeb/install/powershell/2.Install-Prerequisites.ps1
https://raw.githubusercontent.com/dcjulian29/choco-packages/19739c523972d12322f06fe1827df2cf08f24cce/cygwin/tools/chocolateyUninstall.ps1
https://raw.githubusercontent.com/dcjulian29/choco-packages/19739c523972d12322f06fe1827df2cf08f24cce/cygwin/tools/postInstall.ps1
https://raw.githubusercontent.com/cbadke/chocolateypackages/882fc9152d2a4e9479ba33bc711f5c43baab9dff/update-jenkins.ps1
https://raw.githubusercontent.com/aburok/mysettings/ec0bdcc930ab07042fa654a6e41095c2dad81776/PowerShell/variables.ps1
https://raw.githubusercontent.com/xpando/WindowsPowerShell/e8adfd5d2b685baabf7173b07c73e98b787c2243/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/Nibons/nibons_Jenkins/9d91183aa5f3435bb6b1dc050f394f6b3cf4ddef/create_DockerMachine.ps1
https://raw.githubusercontent.com/mpslanker/DigitalOcean-DDNS/4e7b7895b5b7b05c4893028dafc6676f37ed879b/WindowsSetup.ps1
https://raw.githubusercontent.com/stiano/Scripts/97eea45e974a92bcfe7fdb65af6dbbb9314c548b/Chocolatey/DevInstall/devApps.ps1
https://raw.githubusercontent.com/puppetlabs/puppet-agent/3faaece76ffe70caa2f00adb8667c20f6792e43e/bin/build-pxp-agent.ps1
https://raw.githubusercontent.com/mpslanker/DigitalOcean-DDNS/4e7b7895b5b7b05c4893028dafc6676f37ed879b/WindowsSetup.ps1
https://raw.githubusercontent.com/xpando/WindowsPowerShell/e8adfd5d2b685baabf7173b07c73e98b787c2243/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/velo/.files/dc59d30f703d2271c50f5edb6cf1b5c33c5e2cbc/bootstrap.ps1
https://raw.githubusercontent.com/pyFFTW/pyFFTW/e1068bba8dc21856bb4c38706631f4089ddcdd2e/appveyor/deploy.ps1
https://raw.githubusercontent.com/Iristyle/Tahiti/1c9b83011286edf490f8bd41c79bace95dca2f3c/Vanilla.ps1
https://raw.githubusercontent.com/bogdananton/Selenium-Setup-VM-Win7-IE11/fcf13b6fcd6bce166a90350f59bb5e901f1c9b86/bootstrap.ps1
https://raw.githubusercontent.com/Flyingdot/setup/11eb4f4ffe94cefaa65eed808f775a51b2b7cbb5/setup-scripts/setup_dev.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/SendTo-Campfire.ps1
https://raw.githubusercontent.com/StefanScherer/docker-windows-box/add08767c3858f29da90c7aeef9d1bbce41c8067/scripts/create-hyperv-linux-docker-machine.ps1
https://raw.githubusercontent.com/robertmeta/dotfiles/8c41a2964b4ebcef2590486323b052ffcff80d35/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/oxo42/drox/624ac8058ca9df1e8e665068cae364f4d8f6c203/ps1/Profile.ps1
https://raw.githubusercontent.com/ttamttam/unofficial-windows-ocaml-installer/bd0e05f6dcd876f1491d8c523494f61659a78aa9/vg/stock/CompileOcaml/Cygwin.ps1
https://raw.githubusercontent.com/reyerstudio/devstrap/2fc52b3871fd3e789ef14efddbe4c1ad32031a67/straps/windows/core.ps1
https://raw.githubusercontent.com/LukeBG/Powershell-Scripts-Utility/e273239ddb4007fca6d9ec4398783cf175d87bef/scripts/Send-MultiPart.ps1
https://raw.githubusercontent.com/lukesampson/pshazz/41f5c7b832acf862a12cf4630bbe88e6e12f6e6e/plugins/aliases.ps1
https://raw.githubusercontent.com/obernard/vimconfig/38ba08c72a047624daf9b8126c5c9b7d006222ea/bootstrap.ps1
https://raw.githubusercontent.com/OpenRCT2/OpenRCT2/0af21afcc81c0aa2af22511c8a30f1478f3e10a2/scripts/ps/appveyor_install.ps1
https://raw.githubusercontent.com/pomutemu/config/57cb6b14185dd4bba105139a8ef0538939a73702/init.ps1
https://raw.githubusercontent.com/midnightfreddie/theinternets/56af11ad011ed16910db5d852a6e256905753922/salesforce_elf.ps1
https://raw.githubusercontent.com/hedlund/dotfiles-windows/d0daaab243dde241c2a25228055a859e646c9396/install-choco.ps1
https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/093a002abe50e958ca72fca0fd59debb83ccf630/boxes/shared/shell/LocalDevPrep.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/build-cpp-pcp-client.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/build-leatherman.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/d9f8bbc1ea0042b1ad519b0c0017841b22bb975f/bin/build-pxp-agent.ps1
https://raw.githubusercontent.com/BobRoss/Lindon-Test-Framework-/76442ae3917f99c9b01f9f044a1a74a000a89d31/pangaea/ui/powershell/curl_old.ps1
https://raw.githubusercontent.com/hoangsoft90/hw-ngrok-tool/70e445d29831dd31de2393ec4dfd36b68dae3ffe/hw-ngrok-reset.ps1
https://raw.githubusercontent.com/nickmeldrum/ps-cloud/90b1429806370e06d2c6ab0909b56a93216ef907/preconfigured-setups.Tests.ps1
https://raw.githubusercontent.com/krlmlr/r-appveyor/df711d785383aa8788c3827a6670a1633ce8c2d8/scripts/appveyor-tool.ps1
https://raw.githubusercontent.com/pedroreys/powershell/e9650c0cc66174c1a82cf3e2d0b62a34a61f75fd/scripts/utils.ps1
https://raw.githubusercontent.com/strike/SyncADWithLK/607c30e985f895f3cfd7e57a0d7865413e3e7422/Copy-ADLoginsToLKRun.ps1
https://raw.githubusercontent.com/creg/configuration/a09fa6e3c1d59cb36ff1e73a2392e4dee432dbdb/changepoint/windows/setup.ps1
https://raw.githubusercontent.com/puppetlabs/puppet-agent/3faaece76ffe70caa2f00adb8667c20f6792e43e/bin/build-facter.ps1
https://raw.githubusercontent.com/pmana/windows-dev-setup/041c9805e3c68804d5a5765355b98cf5c93c5d27/setup.ps1
https://raw.githubusercontent.com/dachew/configuration/07da71f42221fa01d18051fc01d7a32219fb2e0d/changepoint/windows/setup.ps1
https://raw.githubusercontent.com/simonbates/gpii-automation/959715d669eea5a443db67ef7e6c9cc6673e4223/gpii-win-8.1/Make-GPIITestUser.ps1
https://raw.githubusercontent.com/asulik1988/Powershell/f6dc4a50cd5071cedffba0e5344c03995ea4b2de/Release_Promotion.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_10/scripts/livecloud.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2008_r2_cn/scripts/livecloud.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2008_r2_en/scripts/livecloud.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2012_r2_cn/scripts/livecloud.ps1
https://raw.githubusercontent.com/davidddw/imageBuilder/f2d2cb5ee72ff50076b1726091f36f5ba028c21f/windows_2012_r2_en/scripts/livecloud.ps1
https://raw.githubusercontent.com/sum-moscow/SyncADWithLK/213f686dfce33cb341d0b70c928dce863e3a180f/Copy-ADLoginsToLKRun.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/PivotalTracker/Deliver-AllFinishedStories.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/measure-webrequest.ps1
https://raw.githubusercontent.com/martel-cross/SiteOpsScripts/1df1e6a1941af2e703625248e272ee0fea40abf4/CBATLPCI/jiraquery.ps1
https://raw.githubusercontent.com/ryancalhoun/config/e7564b49fa663e4b061bd31ad9c5ba551165c9b4/win32/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/lancehunt/win-dev-setup/e76cdb3ddb078026b9800a5b7bc6827dded3f444/Setup.ps1
https://raw.githubusercontent.com/fschwiet/fschwiet-boxstarter/ae40169b2f70da6a520081c14896015209aa2838/FschwietCore/tools/ChocolateyInstall.ps1
https://raw.githubusercontent.com/stephenfowler/configuration/725528e1d9d686d0bfceb53a16d92f2f96e9c007/changepoint/windows/setup.ps1
https://raw.githubusercontent.com/acqyre/acqyre/d9bba8a34d2b3bfb30d97996e15e780c57696533/Boot.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-chocolatey-presentation/cd3fad7f4a545e7c8fece4448e91fe3ebf0cecf1/demo/shell/PreparePuppetProvisioner.ps1
https://raw.githubusercontent.com/devengarch/jal-webapp/55191c43e633fb55d2b4f657d455d6b0f82c0485/refresh-website.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-windows-presentation/18ef96fba52197dca607389c30c08b12dca09322/Demo/shell/PreparePuppetProvisioner.ps1
https://raw.githubusercontent.com/CaseyLabs/aws-ec2-ebs-automatic-snapshot-powershell/4f123269b5cd893a22054ca40dda6c8ac68e446e/3-ebs-snapshot.ps1
https://raw.githubusercontent.com/skkzsh/win_files/d6fb13517f08a04121fcea9da08bd3b55ba0836e/User/Documents/WindowsPowerShell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/docker-saigon/fundamentalsv19/fd82fde35a3b829f9bf3a8cff653b168ca80c7e4/demo/Hyper-V.ps1
https://raw.githubusercontent.com/DaveSenn/Extend/959bb3280952695387b92078150916d87791f149/.build/Build.ps1
https://raw.githubusercontent.com/asulik1988/Powershell/f6dc4a50cd5071cedffba0e5344c03995ea4b2de/NewSpreeClientWithRESTFULAPI.ps1
https://raw.githubusercontent.com/peters/abbyy.cloudocrsdk/bc45f087b35412886c60ff02d22ce43956b77b3e/myget.include.ps1
https://raw.githubusercontent.com/peters/xps2img/e879bd04644952c7d055d0bf044069ca2d8f9ccf/myget.include.ps1
https://raw.githubusercontent.com/1RedOne/PSWordPress/f6772aadea5062c9df0f0c9e8ebf5fe4d2106972/Public/New-WordPressPost.ps1
https://raw.githubusercontent.com/meungblut/jenkinsresources/5fc39c03df95ac051d60d0dd295636835111f15e/Install_Jenkins_Dependencies.ps1
https://raw.githubusercontent.com/ferventcoder/vagrant-windows-puppet/093a002abe50e958ca72fca0fd59debb83ccf630/boxes/shared/shell/PreparePuppetProvisioner.ps1
https://raw.githubusercontent.com/andymw/winps/8e0e99ead97a9ca03311b4df24309f8b3a337298/profiles/Andy_profile.ps1
https://raw.githubusercontent.com/ferventcoder/puppet-agent/030a309dc56ab541c353c51f66a841354f00ddec/bin/build-facter.ps1
https://raw.githubusercontent.com/peters/myget/92d56d8da8fb4c719db390f0752b9bc1f357bed2/myget.include.ps1
https://raw.githubusercontent.com/ys-nuem/.dotfiles/dba394f3fec4e7eb7846d33e4785059fd18bdf4b/powershell/Tools/dlang.ps1
https://raw.githubusercontent.com/OpenRCT2/Dependencies/3e84a557be6255b11f690748bad000b81719e8c4/build.ps1
https://raw.githubusercontent.com/peters/remotelens-scp/ec0821c32a991b4ad77ec27971a48401af23f67a/myget.include.ps1
https://raw.githubusercontent.com/dineshkumar1/kumardinesh/bec92b2dba041ef464a6c00344124c8b5509eb67/default.ps1
https://raw.githubusercontent.com/danrigsby/boxstarter/b7ea449d584187f2accb3e2493a533fbb038c62e/bootstrap.ps1
https://raw.githubusercontent.com/JamesWoolfenden/comics/0cf10215f3b235078c8e2d88e8dc87f708205dee/kimonolabs/midtown.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/keystore/keystore.ps1
https://raw.githubusercontent.com/MorganPersson/GurkBurk/163b70d153b2dff5583b1fc8bae56de31dfcbae6/build.ps1
https://raw.githubusercontent.com/ferventcoder/chocolatey-packages/7dd26f223ba637a283b2e005a96826749a24d631/manual/easy.install/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/losandes/Heinz95729/8c5174ef04cc7a28fb19bb83f3622700eadc725c/provision/windows/provision-1.ps1
https://raw.githubusercontent.com/GingaNinja/devInstall/b08f7eac9968bf8838c8555d050639d00313d274/testing.ps1
https://raw.githubusercontent.com/Arachni/build-scripts-windows/c45698976da54b5f121c8d34bc442a96647d08e7/build.ps1
https://raw.githubusercontent.com/Mistuke/GhcDevelChoco/733fa498181b44077e62869960fcaca002c63cdb/templates/chocolateyInstall-Template.ps1
https://raw.githubusercontent.com/losandes/Heinz95729/8c5174ef04cc7a28fb19bb83f3622700eadc725c/provision/windows/provision-1.ps1
https://raw.githubusercontent.com/mjeanrichard/OutdoorTracker/76460883e1c92152f281c92dfeda1043dfce2c98/Build/Build.ps1
https://raw.githubusercontent.com/lsinfo3/boxstarter-ls3winpc/75b05c9b8da8a18186456d27340d2779f1bc3115/boxstarter-test.ps1
https://raw.githubusercontent.com/jivkok/Chocolatey-Packages/6dfce64ded5856e3edaa9d09e122c168e8f6bcc2/jivkok.Shell/dev.boxstarter.ps1
https://raw.githubusercontent.com/swestner/profile/7b1dc2286e9f183e0af0bde3c9ffdb62d036592b/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/AutoMapper/AutoMapper/ad3b65dead9878847ca612e6fc19b4d6b0a51609/default.ps1
https://raw.githubusercontent.com/jivkok/Chocolatey-Packages/6dfce64ded5856e3edaa9d09e122c168e8f6bcc2/jivkok.Shell/dev.boxstarter.ps1
https://raw.githubusercontent.com/wikijm/PowerShell-AdminScripts/f796cb7b7145b71f4951b4c6f63a6c3e64c74b98/Security/Submit-SuspiciousFilesToMalwrCOM/Submit-SuspiciousFilesToMalwrCOM.ps1
https://raw.githubusercontent.com/anurse/Bakery/28d09cc56705059dcc24c8487dccf55db609a2b1/Boot.ps1
https://raw.githubusercontent.com/renlesterdg/machinebuilds/34fe7d3269ffcb9f976c3919d7e6ae5e7d08114d/BoxStarter-Machine-Build.ps1
https://raw.githubusercontent.com/brianschmitt/Powershell/f26603f5f6cdd53585054310358e73082da53ccb/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/Sam-Martin/aws-training/013d0a2d635a54dd7de184b1ebae9d77f5065dd0/PowerShell%20Examples/9.SysOps_AutoScaling_Windows_v1.2.ps1
https://raw.githubusercontent.com/Sam-Martin/aws-training/013d0a2d635a54dd7de184b1ebae9d77f5065dd0/powershell-examples/9.SysOps_AutoScaling_Windows_v1.2.ps1
https://raw.githubusercontent.com/pomonav/buy-books/8c5174ef04cc7a28fb19bb83f3622700eadc725c/provision/windows/provision-1.ps1
https://raw.githubusercontent.com/DataRoberts/Tableau/52a6ff909ee3275f6f82d6d32229a5fa3a26b2b4/AnalyticsEngineering/SlackTableauLogentriesPWReset.ps1
https://raw.githubusercontent.com/rgarrigue/vagrant/946f1a242c291b5a9c86cfedc221e4ff9298717e/provision/boxstarter.ps1
https://raw.githubusercontent.com/epitty1023/vagrant-Windows7Pro/779d5c540891dc8a432449480806a98e08ca16d5/scripts/Install-Chocolatey.ps1
https://raw.githubusercontent.com/strike/SyncADWithLK/607c30e985f895f3cfd7e57a0d7865413e3e7422/Sync-ADUsersWithLkRun.ps1
https://raw.githubusercontent.com/prabirshrestha/ProfilesAndSettings/343bc4e0761d479af5f4ffde1c24b0123ff67038/.profile.ps1
https://raw.githubusercontent.com/hsz-devops/boxstarter-win-dev/49a6e77e580923156fd2dce16dafff3e126fb013/boxstarter/win-dev-u3d.ps1
https://raw.githubusercontent.com/epitty1023/vagrant-win2012r2/698790d2c18cc6bd2b48cb5d928337b999f08073/scripts/Install-Chocolatey.ps1
https://raw.githubusercontent.com/adorepump/chocolatey-packages/05c3ee195aaa959ac2caba28b02d73273c62b27f/easy.install/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/GingaNinja/devInstall/b08f7eac9968bf8838c8555d050639d00313d274/setup.ps1
https://raw.githubusercontent.com/xian123/azure-linux-automation/07791fa4c046b75220a93c4ca3a8a3de5b726452/remote-scripts/INJECTION-VERIFY-ENABLE.ps1
https://raw.githubusercontent.com/sandersjds/prtg-sensors/addf3f924ddcc5154698abbc4cf504c2faeba7bd/jds-%20transmission-torrent.ps1
https://raw.githubusercontent.com/Mitrend/APISamples/80383149448850dc40271c4a69ade2f4946ae822/createAssessment.ps1
https://raw.githubusercontent.com/jivkok/Chocolatey-Packages/6dfce64ded5856e3edaa9d09e122c168e8f6bcc2/jivkok.Shell/main.boxstarter.ps1
https://raw.githubusercontent.com/staticfloat/julia-ansible-scripts/1f560b1efeaa4a1af6b01f5851a8a6101b54adee/install_cygwin_and_friends.ps1
https://raw.githubusercontent.com/phillippolster/OpenRCT2/1eb91cb21044cdd46ac957c956d2ae64255a6bfb/scripts/ps/appveyor_run.ps1
https://raw.githubusercontent.com/viscount312/vagrant-Windows7Pro/22ec9746292b49c7f60bff53823398fc06e1ca0c/scripts/Install-Chocolatey.ps1
https://raw.githubusercontent.com/shzhai/IgniteChina2015_WS2016_TP3_Demos/39c483ddc5f8474eefc5a2e4ced24c0c8af5c195/ECG%20CAT%20Airlift%20China%202016/Demo5_b_Script.ps1
https://raw.githubusercontent.com/wiltaylor/PSJekyll/94eb40784d5ee12709dd99e07c985d050ff24b52/Start-JekyllServer.ps1
https://raw.githubusercontent.com/prasannavajinepalli/Devops/3d875c8f70052bc2207c7572204695301618bfd4/test/windows/event_log/logstash_event_log_plugin_integration.ps1
https://raw.githubusercontent.com/prasannavajinepalli/Devops/3d875c8f70052bc2207c7572204695301618bfd4/test/windows/integration/logstash_simple_integration.ps1
https://raw.githubusercontent.com/Sam-Martin/aws-training/013d0a2d635a54dd7de184b1ebae9d77f5065dd0/PowerShell%20Examples/5.%20Monitoring%20Lab%20-%20Windows_v1.2.ps1
https://raw.githubusercontent.com/prasannavajinepalli/Devops/3d875c8f70052bc2207c7572204695301618bfd4/test/windows/event_log/logstash_event_log_plugin_integration.ps1
https://raw.githubusercontent.com/prasannavajinepalli/Devops/3d875c8f70052bc2207c7572204695301618bfd4/test/windows/integration/logstash_simple_integration.ps1
https://raw.githubusercontent.com/bazelbuild/continuous-integration/d127ed562c7dbec9f6d688ccee231900e0b3dda7/gce/jenkins-slave-windows.ps1
https://raw.githubusercontent.com/willprice/devbox-windows/dec0bbce178fa2402f7ffa7f672912e75bd0e49f/DevBox.boxstarter.ps1
https://raw.githubusercontent.com/Azure/azure-linux-automation/0ec627bbeb66d2ff81d17df8c12d8be8346e0662/remote-scripts/INJECTION-VERIFY-ENABLE.ps1
https://raw.githubusercontent.com/Dexteriousdevengers/Maths/07a25ba2d439eebc798075377e8ce5484ad40305/if_release-master/ironfoundry-install.ps1
https://raw.githubusercontent.com/burnsrbeef/destiny-api/932dc6e40420ee73619c8e53da112dc2140a69d2/items_needed_from_shipwright.ps1
https://raw.githubusercontent.com/myfreeweb/dotfiles/8c669f3ca34c8681f2b38650752cb6ab9a7be72c/windows/bootstrap.ps1
https://raw.githubusercontent.com/reyerstudio/devstrap/2fc52b3871fd3e789ef14efddbe4c1ad32031a67/ra/windows/lib/core.ps1
https://raw.githubusercontent.com/DataRoberts/Tableau/b9e4ed644338d2f7cbadc7723c55ff6db88edb5f/TsAutoRemoveFailedExtracts.ps1
https://raw.githubusercontent.com/OpenRCT2/OpenRCT2/8851e4336742589597ad1cd3efe32e8ec8637bc1/scripts/ps/appveyor_build.ps1
https://raw.githubusercontent.com/ChristianWeyer/myProducts-End-to-End/3e036bb9f22390441f3855c5dfbce4b03a32725d/deploy/BuildWindows8.ps1
https://raw.githubusercontent.com/elastic/logstash/d94bae6a409c7e19c75ab1ce82963a7556976de8/qa/scripts/windows/event_log/logstash_event_log_plugin_integration.ps1
https://raw.githubusercontent.com/elastic/logstash/d94bae6a409c7e19c75ab1ce82963a7556976de8/qa/scripts/windows/integration/logstash_simple_integration.ps1
https://raw.githubusercontent.com/IronFoundry/if_release/4a6c7c0166854d7254886da0d797231ba8ddadb5/ironfoundry-install.ps1
https://raw.githubusercontent.com/AdamDotCom/adamdotcom-script/ed97f0fdbf9b156e4db4e16fcf6bb19d48016728/Scripts/PowerShell/Development-Utilities.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/fba851f3e03d86a3ef8e9a7f322918c0a95fac53/install-mesos.ps1
https://raw.githubusercontent.com/sealmindset/PSTools/b94aeef8b9177a76c06b3888b126d871287006f8/discovery.ps1
https://raw.githubusercontent.com/crowbar/crowbar-core/44d0178cc2bb44b6c9c52c4facca6a439c53bcc1/chef/cookbooks/provisioner/files/default/crowbar_join.ps1
https://raw.githubusercontent.com/LukeCarrier/windows-php/dfc1d1f344d2df1d0279502a7dc5fa4e302e539c/build.ps1
https://raw.githubusercontent.com/edgewall/trac/0e99ee1a1356234f4e486f0272cfd079ac059331/contrib/appveyor.ps1
https://raw.githubusercontent.com/crowbar/barclamp-provisioner/c6c1b49905d409b5197eeb847c0760df10c6991e/chef/cookbooks/provisioner/files/default/crowbar_join.ps1
https://raw.githubusercontent.com/mmajcica/tfs-build-tasks/f82b7c1e864020d46a94a34cc122613af704aa81/NexusUpload.ps1
https://raw.githubusercontent.com/Shonallein/dev-config/47055cdbe0d8e166df4f2f9df3cfd1e72cade0f4/bootstrap.ps1
https://raw.githubusercontent.com/bdukes/Chocolatey-Packages/a06fdba725cd41f0ac17ba313d7c80164cdefcac/bdukes.boxstarter/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/melted/getghc/4c6da2e97a8e5d78b6e8aceba3ac2abdd7e8f2fd/get-ghc-win7.ps1
https://raw.githubusercontent.com/melted/getghc/4c6da2e97a8e5d78b6e8aceba3ac2abdd7e8f2fd/get-ghc.ps1
https://raw.githubusercontent.com/brtonnies/windows-toys/171a58556aa825692e66cd10b4cd2e61035e8b4d/profile.ps1
https://raw.githubusercontent.com/elovelan/Carbon/6b352bd2f883beff5dd4f39bc15ded0a80204031/Tools/Silk/Functions/Publish-BitbucketDownload.ps1
https://raw.githubusercontent.com/melted/getghc/4c6da2e97a8e5d78b6e8aceba3ac2abdd7e8f2fd/get-ghc.ps1
https://raw.githubusercontent.com/elovelan/Carbon/6b352bd2f883beff5dd4f39bc15ded0a80204031/Tools/Silk/Functions/Publish-BitbucketDownload.ps1
https://raw.githubusercontent.com/smasherprog/Libvirt_Windows_CSharpDevelopment/2b612203dc20dee5de92f2b251576806c88e5401/Libvirt_Setup.ps1
https://raw.githubusercontent.com/cam1985/chocolatey/e66809004137590d41c536e163b9894b42515b88/boxstarter_cubei7.ps1
https://raw.githubusercontent.com/Falconne/cygenv/236dba943c57befa0dfc69408368092d8261bcbd/bash_install_win.ps1
https://raw.githubusercontent.com/Kreloc/PowerShell/02c8ad87bb80aac54b2b8f8b870598260afc9d52/Modules/PsUrl/PsUrl.ps1
https://raw.githubusercontent.com/Kreloc/PowerShell/02c8ad87bb80aac54b2b8f8b870598260afc9d52/Modules/PsUrl/PsUrl.ps1.psm1
https://raw.githubusercontent.com/sum-moscow/SyncADWithLK/97ed342fc6ecce83552870df1321b7825a9178f3/Sync-ADUsersWithLkRun.ps1
https://raw.githubusercontent.com/sum-moscow/SyncADWithLK/97ed342fc6ecce83552870df1321b7825a9178f3/Sync-ADUsersWithLkRun.ps1
https://raw.githubusercontent.com/melted/get-idris/a9eafc007a85e6bb030b03b7e5b5027a73b860da/get-idris.ps1
https://raw.githubusercontent.com/shzhai/IgniteChina2015_WS2016_TP3_Demos/39c483ddc5f8474eefc5a2e4ced24c0c8af5c195/Modified%20for%20Modernize%20DC%20ITI%20Camps/Demo5_Script.ps1
https://raw.githubusercontent.com/PCFDev/i2b2-Windows-Installer/7f2e9480531dd65c12325634da2f18186db7dc84/install-prereqs.ps1
https://raw.githubusercontent.com/yethee/denv/0e1826c1b54df6c89cabe205420b43e137cc5f25/setup.ps1
https://raw.githubusercontent.com/Gilgamech/ARKScrape/a5f0b52f341a3b24ec9df4cee14cfcea4f90d9a9/arkdata.ps1
https://raw.githubusercontent.com/Gilgamech/ARKScrape/a5f0b52f341a3b24ec9df4cee14cfcea4f90d9a9/arkdata.ps1
https://raw.githubusercontent.com/globus/globus-toolkit/27139db8d6057d7ff9ea58823e6c3851baf784a2/packaging/jenkins/instance-setup.ps1
https://raw.githubusercontent.com/nickmeldrum/win-console-environment/c06b409f026b8e5f8eed3fe37899ef66f59db585/shell-commands.ps1
https://raw.githubusercontent.com/JonathanDaSilva/PowershellProfile/d22ca2f80171780ed582c421db2110664ba58235/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/mche1987/powershell_practice/9ba61a395bc409a33992e6b095c2267337add5b5/MyScripts/FileManipulationNotes.ps1
https://raw.githubusercontent.com/RivetDB/Rivet/9aa0a8fe1397a3c40d29ad8951857f0beaadf0fa/Tools/Silk/Functions/Publish-BitbucketDownload.ps1
https://raw.githubusercontent.com/pagebrooks/Boxstarter/6394c89ab608ca49daf77ea487f03c3ddfcf9d0d/Dev.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/fba851f3e03d86a3ef8e9a7f322918c0a95fac53/install-ecs.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/fba851f3e03d86a3ef8e9a7f322918c0a95fac53/install-ubuntu.ps1
https://raw.githubusercontent.com/OpenRCT2/OpenRCT2/dd63caf5aaa53780c64d9b0cffbabc2b97e8acfc/scripts/ps/publish.ps1
https://raw.githubusercontent.com/cveira/social-media-scripting-framework/17fe8ad5b459288545301996f43f1c65d806b44d/PSTwitterModule.ps1
https://raw.githubusercontent.com/jamesmanning/DevMisc/16b6667950bb84156ba73e523cb2b4750ccac05e/env-setup/setup.ps1
https://raw.githubusercontent.com/PeterXu/ansible-demo/8d66f2df100da778212bc853322cc8449201dfa5/ps_win.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/3673152406fbf44499744f3850742bd360564d49/install-dockerhost.ps1
https://raw.githubusercontent.com/nickmeldrum/win-console-environment/c06b409f026b8e5f8eed3fe37899ef66f59db585/scribestar-commands.ps1
https://raw.githubusercontent.com/mikamakusa/Powershell-Tools-Deploy/e640e12eaf8b89348faf87975e669939b1cf1492/Powershell%20Tools%20Deploy.ps1
https://raw.githubusercontent.com/tylerapplebaum/Cisco/e4ad5633c324cdf7ffe4d84fc6baae04a2e7f2e9/Connect-DMVPN-HE.ps1
https://raw.githubusercontent.com/janmaghuyop/powershell-profile/f0b74f9a18c8bd70c5a8057e6ac48ebe3d975a22/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/padisetty/Samples/095bfb87e8d76cd49081c15c70f1dffda46e5ea9/AWS/ssm/ssmcommon.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/InsertConnections.ps1
https://raw.githubusercontent.com/pseudo-hacks/w10appinst/bab3aacb477fd6fd40a6c8c7428faf6e765773c5/w10appinst.ps1
https://raw.githubusercontent.com/malika15/continuousIntegration/0e24048a8e07c7e8929fb89fad98a6df17133203/deployServicePortal.ps1
https://raw.githubusercontent.com/ak2ie/IRKitPowerShell/10c7f17bad0d91c6ce9feb91dcc8fd5d14e6447d/winter_asa_danbo.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/e62fe9bf1cbb8b0e9440de65d74ad51fa073db02/install-puppetmaster.ps1
https://raw.githubusercontent.com/bottkars/labbuildr/fba851f3e03d86a3ef8e9a7f322918c0a95fac53/install-centos.ps1
https://raw.githubusercontent.com/edhaack/PowershellScripts/267c2368835d10faa83988bb157149de12e6ff3f/REST/MultipleTests.ps1
https://raw.githubusercontent.com/supersysadmin/WindowsPowerShell/c470a2b22381e06b098b21656d62a4cd555e7f18/Scripts/Console/IIS/IISSetupWebServer.ps1
https://raw.githubusercontent.com/openAgile/psake-tools/6c1df86ae6a192f60b242e2813fba00c83e84722/psake-tools-helpers.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/InsertStopLocations.ps1
https://raw.githubusercontent.com/malika15/cip/88bca3bf36feefa999a60e81bbca22fe76c67de3/service.plm.calculateinstalmentpremium.pulse.v2/Official-Release/C24186/Release%20Artefacts/router.PLM.v2_Release_v1.1.1/MuleFunctions.ps1
https://raw.githubusercontent.com/malika15/cip/88bca3bf36feefa999a60e81bbca22fe76c67de3/service.plm.calculateinstalmentpremium.pulse.v2/Official-Release/C24186/Release%20Artefacts/service.plm.calculateinstalmentpremium.pulse.v2_Release_v1.0.6/MuleFunctions.ps1
https://raw.githubusercontent.com/mikamakusa/Linux-easy-deploy/4032b044a5aba30255cc723788d4553e49ba128c/pled.ps1
https://raw.githubusercontent.com/cehrlich/dotfiles/07f61bda4f3f7986d2026594e102322fd1245b4c/powershell/profile.ps1
https://raw.githubusercontent.com/MateuszKubuszok/CmderPackage/4b3c212ad341a8cad8add962de5d7f2db99fad8c/build_cmder.ps1
https://raw.githubusercontent.com/mszcool/devmachinesetup/213154d52a2c837068e13b12c8d551c6e5ae5227/Install-WindowsMachine.ps1
https://raw.githubusercontent.com/cveira/social-media-scripting-framework/17fe8ad5b459288545301996f43f1c65d806b44d/CoreModule.ps1
https://raw.githubusercontent.com/phrasz/A5_Installer/4397642cf1ec8e9fc0619b1fed8d8bbe6311667e/Installer.ps1
https://raw.githubusercontent.com/hsachinraj/RM-Tasks/3f6ee918c0f40a5fc6e5a82966737722dacad440/tomcatdeployment/tomcatdeploy.ps1
https://raw.githubusercontent.com/terrawheat/MyStuff/a423e54385c990f7ea5e0b4c46b9d67b5a89eac8/newbuild/windows.ps1
https://raw.githubusercontent.com/ralfkret/NodejsWebApp/f94b74d0a38bd99323371f4f4ff33483b228a328/runmongo.ps1
https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/8bf270a8b4e362127d792e472d65be5599469f6d/scripts/download_from_bitbucket.ps1
https://raw.githubusercontent.com/morphogencc/ofxWindowsSetup/8bf270a8b4e362127d792e472d65be5599469f6d/scripts/publish_to_bitbucket.ps1
https://raw.githubusercontent.com/phillipwei/Tracking.Self/ce2115ae6fa3b8f772e07d0523cf5b7dba0a35a6/data/upload.ps1
https://raw.githubusercontent.com/clintwilson/PS-CreateCSRs/a39fdfb970254f7bad54c235ba1dadb35d05ec5e/OrderCerts.ps1
https://raw.githubusercontent.com/jcgonzalezmartin/jcgonzalez/47120d60c707524a1df485490e83176479df692b/PowerShell%20Scripts/Administration/PS_Work_With_Workflows.ps1
https://raw.githubusercontent.com/jjosephy/auth_service/3724c22779ccc51455cd78e77159958229f7440a/src/test/integration_tests/getToken.ps1
https://raw.githubusercontent.com/NobilisHealth/marketo-rest-cli/d0a836b0a3fbc0b1a36e43726d11bdfb2f448feb/marketo-get-patient-data-by-email.ps1
https://raw.githubusercontent.com/NobilisHealth/marketo-rest-cli/d0a836b0a3fbc0b1a36e43726d11bdfb2f448feb/marketo-get-patient-data-by-marketo-id.ps1
https://raw.githubusercontent.com/CompartiMOSS/SharePoint-PowerShell/56b7559e47caa9000866ac1b14487f240a5ac701/SharePoint/Administration/PS_Work_With_Workflows.ps1
https://raw.githubusercontent.com/btolfa/dotfiles-windows/7f0caf414ecd1ae1282eb804fcdc2f26293b6b8b/documents/WindowsPowerShell/dotfiles/aliases.ps1
https://raw.githubusercontent.com/jayharris/dotfiles-windows/a8ac429737c40adcbf972cc568520fec9fb7ba62/aliases.ps1
https://raw.githubusercontent.com/edwindj/cspa_rest/91d83ea4d78d2a6818b8fd5e2a9eedc2bbb11aeb/install/powershell/1.Download-Prerequisites.ps1
https://raw.githubusercontent.com/marcduiker/ShipTest/32f1c5777615451e32abccaa1663bff173a4793d/scripts/publish-sitecoresite.ps1
https://raw.githubusercontent.com/tigertechdev/ds3_c_sdk/6cf9a140e78335644274427dc3a5620f1bf57741/win32/deps/run_install_dot_bat_instead.ps1
https://raw.githubusercontent.com/SpectraLogic/ds3_c_sdk/7ec31a83f40f9fd21a0e19406904a215495f0693/win32/deps/run_install_dot_bat_instead.ps1
https://raw.githubusercontent.com/SpectraLogic/ds3_c_sdk/7ec31a83f40f9fd21a0e19406904a215495f0693/win32/deps/run_install_dot_bat_instead_64.ps1
https://raw.githubusercontent.com/kristoftorfs/choco-phalcon/89745abcc66d5905aab5cecedc4add0dca4c7f23/tools/chocolateyinstall.ps1
https://raw.githubusercontent.com/KurtDeGreeff/PlayPowershell/41de33a16d49e7d2e2df802697129ffd1dc965c2/Download-WebFile.ps1
https://raw.githubusercontent.com/VTCSecureLLC/ace-windows/6e21dd882e6102c1254af2c70a9f54a5f3c74401/Setup/HockeyApp.ps1
https://raw.githubusercontent.com/brannon/windows-env/556e5fddb3135f8b3b1ee4411a1bfc474d877c2f/powershell/powershell.profile.ps1
https://raw.githubusercontent.com/sgwill/chocolately-scripts/001b55d8b9e78c6e64a7e0594a849d7dd4221426/install.ps1
https://raw.githubusercontent.com/dcjulian29/scripts-powershell/745b23f5deded7027591fc38639b18a21b6a212e/Profile.ps1
https://raw.githubusercontent.com/vim-scripts/wimproved.vim/45de6fdd5da6eb888ed5f559af396a7806062675/run-tests.ps1
https://raw.githubusercontent.com/shareefalis/ace-windows-old/bed5d5f33c50589cee8931a23fe3ff7c0e5b172c/Setup/HockeyApp.ps1
https://raw.githubusercontent.com/rahuliyer95/dotfiles/1e41432b2760c5b6433502a372c014712ad47b8a/windows/.aliases.ps1
https://raw.githubusercontent.com/versionone/jenkins-slave-updater/7aada48c7d64843acd2b66559fc00b8a8a8fd17b/jenkins-slave-updater.ps1
https://raw.githubusercontent.com/Link-Satonaka/scripts/38c39f8b6efb22801edc54c74bb7a12d2bd69100/cygupdate.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_maven304.ps1
https://raw.githubusercontent.com/xiaodao/psbuild/b556826097d2fa590c16b8b0af84f97681de3fd3/lib/softwares/install_notepadpp.ps1
https://raw.githubusercontent.com/RackHD/on-http/9d8c86c0b16c956709a042113460fc2eb1a6de8c/data/templates/post-windows-install.ps1
https://raw.githubusercontent.com/vejuhust/msft-scooter/d5644b4426609d551b80b1a1993697da284b7839/controller/ActOnImage.ps1
https://raw.githubusercontent.com/jschaf/windows-config/0531342c6d5399d95fab6b7d26076be6f08ce0da/install-mozilla-cert.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/PivotalTracker/Deliver-TrackerStory.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/PivotalTracker/Get-TrackerStory.ps1
https://raw.githubusercontent.com/remotex/Scripts/fc2219475d1f2a43726d31356e553beef5d933e9/PivotalTracker/Start-TrackerStory.ps1
https://raw.githubusercontent.com/crmckenzie/psundle-ruby/c01a03cdde06dbb61da934842324f1320452d403/Functions/Install-RubySSLSupport.ps1
https://raw.githubusercontent.com/aspnet/Performance/19458605aa1da60758ef4a7d3ba0ef0fd03f09cf/test/ColdStart/Measure.ps1
https://raw.githubusercontent.com/digidotcom/XBeeZigBeeCloudKit/823ea50be8e259c8e69b68c7d50c8934bc0a0309/make.ps1
https://raw.githubusercontent.com/nuxlli/cygwin-bootstrap/b9536a8972cf635ddc7e88dae2584abb55766144/cygwinInstall.ps1
https://raw.githubusercontent.com/Sam-Martin/aws-training/013d0a2d635a54dd7de184b1ebae9d77f5065dd0/PowerShell%20Examples/2.SysOps_EC2_Windows_v1.2.ps1
https://raw.githubusercontent.com/Sam-Martin/aws-training/013d0a2d635a54dd7de184b1ebae9d77f5065dd0/powershell-examples/2.SysOps_EC2_Windows_v1.2.ps1
https://raw.githubusercontent.com/danwoodhead/PivotalPSBackup/f936f31c97a9804bd6f81431994a3f9683734f2f/PivotalPSBackup.ps1
https://raw.githubusercontent.com/OBHITA/REM/2e3b288dcb72c931641333dccb2cacd9c2f5ad17/Tools/Scripts/RavenDB_Commands.ps1
https://raw.githubusercontent.com/OpenRCT2/Dependencies/153994f347fb9b97b59a78d512d6f19f24784ce6/createpkg.ps1
https://raw.githubusercontent.com/romy63ru/scripts/077f361b87c30dd819d50179985099b75214c2ee/Install-DevEnv.ps1
https://raw.githubusercontent.com/jblondeau2/powershell-config/60e855171c40cb221bf42059a07247a96fcea453/WindowsPowerShell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/PProvost/dotfiles/e9cf3b99b759fee039e51a513d3f585aac97171c/powershell/EnvSetup/Get-Programs.ps1
https://raw.githubusercontent.com/manekovskiy/devenv-setup-scripts/e00443ef012783953008d376207c6467bc05f5dc/run-install.ps1
https://raw.githubusercontent.com/cgerke/dotfiles-windows/8b07e405dfba17e095a6797cb5f73ef4e5428929/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/dronekit/dronekit-sitl/6dda12e829e4dcbf0e88675f42ebf3a4f5e83b2f/stage/setup-win.ps1
https://raw.githubusercontent.com/MarkJungman/dotfiles/ac1598dfbd2046500f19993c54f08e38438ce298/powershell/EnvSetup/Get-Programs.ps1
https://raw.githubusercontent.com/oneillci/dev-install/0d7fd84cf45e7487a2c0a6a8107646418990da0f/install_apps.ps1
https://raw.githubusercontent.com/onelaview/doc/1ed9a30cdefde11be4f66f7923939c381f1244a6/scripts/Azure-PutSnapshotBlob.ps1
https://raw.githubusercontent.com/Flyingdot/setup/11eb4f4ffe94cefaa65eed808f775a51b2b7cbb5/setup-scripts/setup_dev.ps1
https://raw.githubusercontent.com/weidazhao/misc/deacfafebb8c69a62cb279238a8822593abe2999/Configure-NewMachine.ps1
https://raw.githubusercontent.com/zblesk/scripts/057c9b370f96588fa34aa9f7f6a972f6646bc059/boxstart-userpc.ps1
https://raw.githubusercontent.com/zblesk/scripts/057c9b370f96588fa34aa9f7f6a972f6646bc059/boxstart-work.ps1
https://raw.githubusercontent.com/shzhai/IgniteChina2015_WS2016_TP3_Demos/39c483ddc5f8474eefc5a2e4ced24c0c8af5c195/ECG%20CAT%20Airlift%20China%202016/Demo3_a_Script.ps1
https://raw.githubusercontent.com/shzhai/IgniteChina2015_WS2016_TP3_Demos/39c483ddc5f8474eefc5a2e4ced24c0c8af5c195/Ignite_Demo3_Script.ps1
https://raw.githubusercontent.com/shzhai/IgniteChina2015_WS2016_TP3_Demos/39c483ddc5f8474eefc5a2e4ced24c0c8af5c195/Modified%20for%20Modernize%20DC%20ITI%20Camps/Demo3_Script.ps1
https://raw.githubusercontent.com/richardwilly98/es-dms/9c2b5b430f44faa200d0c92d2fbfc3ea871f6993/es-dms-rest-server/src/test/resources/test-es-dms-client.ps1
https://raw.githubusercontent.com/richardwilly98/es-dms/9c2b5b430f44faa200d0c92d2fbfc3ea871f6993/es-dms-site/src/test/resources/test-es-dms-client.ps1
https://raw.githubusercontent.com/glombard/Scripts/4abf9dddf6d84a14dc4ec1a0b4195262d3750ee4/AngularJS-Dev-Setup/functions/Install-VisualStudio.ps1
https://raw.githubusercontent.com/glombard/Scripts/4abf9dddf6d84a14dc4ec1a0b4195262d3750ee4/PowerShell-Installers/Get-Windows7HyperVImage.ps1
https://raw.githubusercontent.com/dpieski/GoogleDynamicDNS/f5151a1700ba19d1e8be04ed954af898a4b5f2f1/UpdateIP.ps1
https://raw.githubusercontent.com/pw4ever/PWDE/bdf9fb47231710601eeadaf51bfa2c045b6c3b4c/Initialize-PSEnv.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/InsertVehicleStatus.ps1
https://raw.githubusercontent.com/cybertoast/system_config/3c771a4f096e2cd699923810d4b859d30e591b61/term/.bash_files/.ps1
https://raw.githubusercontent.com/nengberg/powershell-profile/6d06305a85785214e518da2bfdfda6aa0d5a63e2/modules/scoop/apps/pshazz/0.2014.11.25/plugins/aliases.ps1
https://raw.githubusercontent.com/allchen2/windows-sensor-test/111ee04a548b232275dedf0d1b440c8e1dbc1aa6/files/fu01.ps1
https://raw.githubusercontent.com/efouarge/naf_windows_perfmon_to_influxdb/7bba3ed1a9eb42e3e9ce41c5fd8834485262f0f1/naf_windows_perfmon_to_influxdb.ps1
https://raw.githubusercontent.com/nickmeldrum/win-console-environment/a86dff9acc3322a85a0356b193586a96dc8bce2c/launch-commands.ps1
https://raw.githubusercontent.com/MarkusAmshove/PowershellProfile/ec83a78db0a6874887c7ab2fac3155e78eb207a7/Functions/Buildserver-Funktionen.ps1
https://raw.githubusercontent.com/rgarrigue/vagrant/946f1a242c291b5a9c86cfedc221e4ff9298717e/provision/boxstarter.ps1
https://raw.githubusercontent.com/LukeInkster/CSharpCorpus/919b7525a61eb6b475fbcba0d87fd3cb44ef3b38/AutoMapper/default.ps1
https://raw.githubusercontent.com/Kwull/install-dev-win/8ecb7add12f105fd9cc50bf9a9a64e855df68a10/scripts/boxstarter.ps1
https://raw.githubusercontent.com/OpenRCT2/Dependencies/3e84a557be6255b11f690748bad000b81719e8c4/build64.ps1
https://raw.githubusercontent.com/drewburlingame/setup-windows/505b5fec397b0b89a73e10a5ad415b464800d6da/changepoint/boxstarter-script.ps1
https://raw.githubusercontent.com/apetrovskiy/external_samples/dbd135d92553e92d9c596ded980b0b569a56155b/GurkBurk-master/build.ps1
https://raw.githubusercontent.com/devengarch/jal-webapp/55191c43e633fb55d2b4f657d455d6b0f82c0485/userdata.ps1
https://raw.githubusercontent.com/azweb76/desktop/a1e39d60e59ce841b94ac766da3f19ce9dbd9f8c/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/ericnelson1/powershell/e486b76a2d72fa9237ef7ee3672eb649f7f4e1f9/Scripts/NetworkingAndWeb.ps1
https://raw.githubusercontent.com/andymw/winps/8e0e99ead97a9ca03311b4df24309f8b3a337298/Check-Gmail.ps1
https://raw.githubusercontent.com/tmagnusson/powershell-example-profile/2c3da13313b86968c1544fd34692a5b2bba04f7d/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/erichiller/cmder/2a069c321bfbf7c3283e6cd9377748c7f6fd251d/scripts/profile.ps1
https://raw.githubusercontent.com/EliteAndroidApps/WhatsApp-Key-DB-Extractor/bec5dee00a370204d3bb3a3190cb77b9f040f381/WhatsAppKeyDBExtract.ps1
https://raw.githubusercontent.com/AdamDotCom/adamdotcom-script/ed97f0fdbf9b156e4db4e16fcf6bb19d48016728/Scripts/PowerShell/Automated-AntiCSRF-Authentication-Script.ps1
https://raw.githubusercontent.com/wiremoons/GenIsys-Windows/361c2dc3d71855f0437c1d21f054ea207f5fba66/assets/WindowsPowerShell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/J0hnRoger/MyWPStack.Core/b854b120419e83f95f3f2c24400fb8b39fd3b3bd/MyWpStack.ps1
https://raw.githubusercontent.com/edwindj/cspa_rest/91d83ea4d78d2a6818b8fd5e2a9eedc2bbb11aeb/install/powershell/3.Install-CSPA.ps1
https://raw.githubusercontent.com/dcjulian29/choco-packages/19739c523972d12322f06fe1827df2cf08f24cce/cygwin/tools/chocolateyInstall.ps1
https://raw.githubusercontent.com/janisozaur/rct2-debian/146dda2f3e4456e8f263f4ef5c012b4bac008cf4/scripts/ps/publish.ps1
https://raw.githubusercontent.com/bjacobowski/setup/939634a9a45ef09450ed035a36c7be343eb631f7/powershell/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/juliostanley/scoop-setup/e451570d4f209eb4bb944ac7be648c775f335d62/script/install.ps1
https://raw.githubusercontent.com/petwolfe/faceless/a16ba4321dd1ec1b3e5468d5725a15933064c096/system-metrics-gen.ps1
https://raw.githubusercontent.com/cveira/social-media-scripting-framework/17fe8ad5b459288545301996f43f1c65d806b44d/PSLinkedInModule.ps1
https://raw.githubusercontent.com/staticvoidmain/powershell/5d0b899fdfd81652fa60644fe451c58fc11b26ed/profile.ps1
https://raw.githubusercontent.com/dswisher/ps-home/002ccf8248993ed7d05c8f06e4c568daad7d6383/MyProfile.ps1
https://raw.githubusercontent.com/ericwj/PsSecDrv/8b71225d0f239b4b0eb879f632ef0ef616cfcf38/src/SECDRV/SECDRV.ps1
https://raw.githubusercontent.com/meselgroth/ChocolateyAndSetupScripts/55002e63a0f9f6f96ed902ffdee8294aa548969c/setup.ps1
https://raw.githubusercontent.com/vorou/config/e51c352332d53b2a7195c52d621c15415563a6fe/Microsoft.PowerShell_profile.ps1
https://raw.githubusercontent.com/Link-Satonaka/scripts/38c39f8b6efb22801edc54c74bb7a12d2bd69100/silentinstall.ps1
https://raw.githubusercontent.com/vonwenm/CHOCCO-LAB/3f75803d135b31ffba38d990bf6fee9e433a0739/XXX-setup.ps1
https://raw.githubusercontent.com/phillippolster/OpenRCT2/1eb91cb21044cdd46ac957c956d2ae64255a6bfb/scripts/ps/publish.ps1
https://raw.githubusercontent.com/davidpayne-au/ps-utils/34d12207a46cd8bbf670dba54842c522b904b763/Azure/Sql/Azure-DPDb.ps1
https://raw.githubusercontent.com/florisz/TravelControl/5613a93d80f71cfbe0026beccc2e59ecb488a7e4/TravelControl.Storage/CouchDBScripts/InsertTestRoutes.ps1
https://raw.githubusercontent.com/farscout/PS/357901f2bedd75704983be9af8e6aa7f5e248095/Azure/Sql/Azure-DPDb.ps1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment