What is the translation of " INVOKE-COMMAND " in German?

Examples of using Invoke-command in English and their translations into German

{-}
  • Colloquial category close
  • Official category close
  • Ecclesiastic category close
  • Medicine category close
  • Financial category close
  • Ecclesiastic category close
  • Political category close
  • Computer category close
  • Programming category close
  • Official/political category close
  • Political category close
Or Invoke-Command cmdlets to connect remotely.
Oder"Invoke-Command" zum Herstellen einer Remoteverbindung.
The following command uses the AsJob parameter of Invoke-Command to start.
Im folgenden Befehl wird der AsJob-Parameter von Invoke-Command.
The Invoke-Command command is considered to be complete when.
Befehl"Invoke-Command" als abgeschlossen betrachtet, wenn das.
Runs commands on local and remote computers. Invoke-Command.
Führt Befehle auf lokalen Computern und auf Remotecomputern aus. Invoke-Command.
For more information about the Invoke-Command cmdlet, see Invoke-Command.
Weitere Informationen zum Cmdlet"Invoke-Command" finden Sie unter Invoke-Command.
To run any command on one or many remote computers, use the Invoke-Command cmdlet.
Zum Ausführen von Befehlen auf einem oder mehreren Remotecomputern verwenden Sie das Cmdlet Invoke-Command.
STEP 2: INVOKE-COMMAND GET-JOB To manage a remote background job, use the Job cmdlets.
STEP 2: INVOKE-COMMAND GET-JOB Um einen Remotehintergrundauftrag zu verwalten, verwenden Sie die Job-Cmdlets.
Errors that result from the command that Invoke-Command runs are included in the command results.
Fehler, die aus dem Befehl resultieren, der von Invoke-Command ausgeführt wird, sind in den Befehlsergebnissen enthalten.
Invoke-command-computername S1, S2, S3-scriptblock{get-culture} You can also run a command in multiple PSSessions.
Invoke-command -computername S1, S2, S3 -scriptblock{get-culture} Sie können auch einen Befehl in mehreren PSSessions ausführen.
Ps1 script from the Server01 remote computer to the local computer: invoke-command-computername Server01'{get-content c:\ps-test\test. ps1} set-location c:\ps-test\test.
Ps1" vom Remotecomputer"Server01" auf den lokalen Computer kopiert: invoke-command -computername Server01'{get-content c: \ps-test\test. ps1} set-location c: \ps-test\test.
STEP 1: INVOKE-COMMAND START-JOB Use the Invoke-Command cmdlet to run a Start-Job command on a remote computer.
STEP 1: INVOKE-COMMAND START-JOB Verwenden Sie das Cmdlet"Invoke-Command", um einen Start-Job-Befehl auf einem Remotecomputer auszuführen.
As a result, if the remote computer specified by the ConnectionURI parameter returns a redirection message, Windows PowerShell will redirect the connection, but if the new destinationreturns another redirection message, the redirection count value of 1 is exceeded, and Invoke-Command returns a non-terminating error.
Wenn der vom ConnectionURI-Parameter angegebene Remotecomputer eine Umleitungsmeldung zurÃ1⁄4ckgibt, wird die Verbindung von Windows PowerShell daraufhin umgeleitet. Wenn das neue Ziel jedoch erneut eine Umleitungsmeldung zurÃ1⁄4ckgibt,wird der Anzahlwert fÃ1⁄4r die Umleitung von 1 Ã1⁄4berschritten, und von Invoke-Command wird ein Fehler ohne Abbruch zurÃ1⁄4ckgegeben.
The first command uses the Invoke-Command cmdlet to start a background job that runs a Get-Service command on three remote computers.
Im ersten Befehl wird ein Hintergrundauftrag, der auf drei Remotecomputern den Befehl"Get-Service" ausführt, mit dem Cmdlet"Invoke-Command" gestartet.
Invoke-command-computername Server01-scriptblock{get-eventlog system}-asjob The results of the command resemble the following sample output.
Invoke-command -computername Server01 -scriptblock{get-eventlog system} -asjob Die Ergebnisse des Befehls entsprechen in etwa der folgenden Beispielausgabe.
Because the job was started by using the AsJob parameter of Invoke-Command, the job object is located on the local computer, even though the job runs on the remote computer.
Da der Auftrag mit dem AsJob-Parameter von Invoke-Command gestartet wurde, befindet sich das Auftragsobjekt auf dem lokalen Computer, obwohl der Auftrag auf dem Remotecomputer ausgeführt wird.
Invoke-command-session$s-scriptblock{$p get-process} Because the PSSession uses a persistent connection, you can run another command in the same PSSession that uses the$p variable.
Invoke-command -session $s -scriptblock{$p get-process} Da die PSSession eine dauerhafte Verbindung verwendet, können Sie einen anderen Befehl in der gleichen PSSession ausführen, die die Variable"$p" verwendet.
C:\PS>$s new-pssession-computername server02-credential domain01\user01 C:\PS> invoke-command-session$s-scriptblock{get-culture} This example runs the same"Get-Culture" command in a session(a persistent connection) on the Server02 remote computer.
C: \PS> $s new-pssession -computername server02 -credential domain01\user01 C: \PS> invoke-command -session $s -scriptblock{get-culture} Beschreibung In diesem Beispiel wird der gleiche Befehl"Get-Culture" in einer Sitzung(einer dauerhaften Verbindung) auf dem Remotecomputer"Server02" ausgeführt.
Invoke-command-computername Server01-scriptblock{get-culture} The ComputerName parameter is designed for situation in which you run a single command or several unrelated commands on one or many computers.
Invoke-command -computername Server01 -scriptblock{get-culture} Der ComputerName-Parameter ist für die Ausführung einzelner Befehle oder einer Reihe nicht verknüpfter Befehle auf einem oder mehreren Computern vorgesehen.
You can use the variable with a cmdlet such as Invoke-Command, as shown in the following example: C:\PS> invoke-command-scriptblock$a-args"Other value" Other value assigned.
Sie können die Variable mit einem Cmdlet wie"Invoke-Command" verwenden, wie im folgenden Beispiel dargestellt: C: \PS> invoke-command -scriptblock $a -args"Anderer Wert" Anderer Wert zugewiesen.
C:\PS> invoke-command-ComputerName S1, S2, S3-scriptblock{get-culture} out-gridview This example shows the correct format for sending data collected from remote computers to the Out-GridView cmdlet.
C: \PS> invoke-command -ComputerName S1, S2, S3 -scriptblock{get-culture} out-gridview Beschreibung In diesem Beispiel wird das richtige Format veranschaulicht, um die von Remotecomputern gesammelten Daten an das Cmdlet"Out-GridView" zu senden.
The following example uses the Args parameter of the Invoke-Command cmdlet to assign a different value to the parameter: C:\PS> invoke-command-scriptblock{param($uu"Parameter"); "$uu assigned.
Im folgenden Beispiel wird dem Parameter mithilfe des Args-Parameters des Cmdlets"Invoke-Command" ein anderer Wert zugewiesen: C: \PS> invoke-command -scriptblock{param($uu"Parameter");"$uu assigned.
When using the Invoke-Command cmdlet to run a Get-PfxCertificate command remotely, and the. pfx certificate file is not password protected, the value of the Authentication parameter of Invoke-Command must be"CredSSP.
Wenn der Befehl"Get-PfxCertificate" mit dem Cmdlet"Invoke-Command" remote ausgeführt wird und die PFX-Zertifikatsdatei nicht kennwortgeschützt ist, muss der Wert des Authentication-Parameters von Invoke-Command gleich"CredSSP" sein.
S new-pssession-computername S1, S2, S3 invoke-command-session$s -scriptblock{get-culture} To include the local computer list of computers, type the name of the local computer, type a dot.
S new-pssession -computername S1, S2, S3 invoke-command -session $s -scriptblock{get-culture} Um die Liste der Computer für den lokalen Computer einzuschließen, geben Sie den Namen des lokalen Computers und anschließend einen Punkt.
C:\PS> invoke-command-computername Server01-scriptblock{get-executionpolicy} set-executionpolicy-force This command gets the execution policy from a remote computer and applies that execution policy to the local computer.
C: \PS> invoke-command -computername Server01 -scriptblock{get-executionpolicy} set-executionpolicy -force Beschreibung In diesem Befehl wird die Ausführungsrichtlinie von einem Remotecomputer abgerufen und auf den lokalen Computer angewendet.
The fourth command uses Invoke-Command to run a Receive-Job command in each of the PSSessions in$s and save the results in the$results variable.
Der vierte Befehl verwendet Invoke-Command, um einen Receive-Job-Befehl in jeder der PSSessions in $s auszuführen und die Ergebnisse in der Variablen"$results" zu speichern.
C:\PS>$j invoke-command-computername Server01-scriptblock{get-process}-asJob C:\PS>$j remove-job This example shows how to use the Remove-Job cmdlet to remove a job that was started on a remote computer by using the AsJob parameter of the Invoke-Command cmdlet.
C: \PS> $j invoke-command -computername Server01 -scriptblock{get-process} -asJob C: \PS> $j remove-job Beschreibung In diesem Beispiel wird gezeigt, wie mit dem Cmdlet"Remove-Job" ein Auftrag entfernt wird, der mit dem AsJob-Parameter des Cmdlet"Invoke-Command" auf einem Remotecomputer gestartet wurde.
When you use the AsJob parameter of Invoke-Command to start a job on one or more computers, the job consists of an executive parent job and a child job for each job run on each computer.
Wenn Sie einen Auftrag auf einem oder mehreren Computern mit dem AsJob-Parameter von Invoke-Command starten, besteht der Auftrag aus einem übergeordneten Ausführungsauftrag und jeweils einem untergeordneten Auftrag pro Auftrag und Computer.
Results: 27, Time: 0.0263

Top dictionary queries

English - German