function pshell{
    param(
        [Parameter(Mandatory)]
        [String] $instruction   
    )

    powershell.exe -C $instruction

}
