Launching PS in background on a target host

I have a PowerShell script that issues a command like:

$my_exit = invoke-Command -Session $my_session -ScriptBlock { ... } -Args

to execute a long script on a target server.
If the calling script terminates for any reason (maybe, the PC is powered off due to a power failure) the script on the target host terminates as well.
How can I launch a script on a target host so that it continues even if the calling script closes?
I made a test adding the -asjob qualifier with no success.
Regards
marius

Try this:

Run the remote scripts on a remote computer with a persistent session

 
$session = New-PSSession -computername "FQDN" -credential Get-Credential
Invoke-Command -session $session -ScriptBlock {E:\Testing.ps1 "param1"}

To add to the answer, you could try this:

$session = New-PSSession -computername "FQDN" -credential Get-Credential
Invoke-Command -session $session -ScriptBlock {start cmd.exe  "/k powershell.exe ./DoThis.ps1"}