public PsHost SetGlobalVariable(string name, string value)
 {
     Shell.AddScript(String.Format("New-Variable -name {0} -Scope Global -Visibility Public -Value {1} -Force", name,
                                   value)
                     );
     Shell.Invoke();
     return(this);
 }