I tried something like this:
In VBS:
strA = "some value"
Set objShell = WScript.CreateObject("WScript.Shell")
objshell.Run ("powershell Start-Process powershell -Verb runAs ABC.ps1" & strA)
In PS:
$strB = strA
But obviously it didn't work...any idea is very much appreciated. Thank you.