I was wondering is it possible to pass a tiny script into the ScriptBlock parameter but do it all in one line?
For instance, I want to run the following 2 commands:
import-module lync get-csuser
I can do this if I have a powershell script file and call that file explicitly. The contents of the script look like this
invoke-command -ComputerName mycomputer.mylab.com -ScriptBlock {
import-module lync
get-csuser
}
I want to be able to do the above without putting this into a temporary script file and do it on one lime. Is this possible?
Thanks