mirror of
https://github.com/github/codeql.git
synced 2026-05-30 19:11:23 +02:00
19 lines
412 B
PowerShell
19 lines
412 B
PowerShell
Function Invoke-MyRemoteCommand ()
|
|
{
|
|
Invoke-Command -Port 343 -ComputerName hardcoderemotehostname
|
|
}
|
|
|
|
Function Invoke-MyCommand ($ComputerName)
|
|
{
|
|
Invoke-Command -Port 343 -ComputerName $ComputerName
|
|
}
|
|
|
|
Function Invoke-MyLocalCommand ()
|
|
{
|
|
Invoke-Command -Port 343 -ComputerName hardcodelocalhostname
|
|
}
|
|
|
|
Function Invoke-MyLocalCommand ()
|
|
{
|
|
Invoke-Command -Port 343 -ComputerName $env:COMPUTERNAME
|
|
} |