Tagged Questions
The invoke-command tag has no wiki summary.
6
votes
4answers
3k views
Invoke Command When “ENTER” Key Is Pressed In XAML
I want to invoke a command when ENTER is pressed in a TextBox. Consider the following XAML:
<UserControl
...
...
5
votes
3answers
682 views
Get script directory in PowerShell when script is invoked with Invoke-Command
I have a set of PowerShell scripts that include a "common" script, located in the same folder, like this:
# some-script.ps1
$scriptDir = Split-Path -Parent $myinvocation.mycommand.path
. ...
3
votes
2answers
144 views
Using Powershell's Invoke-Command to call a batch file with arguments
I want to use Powershell in order to call a batch file on remote machines. This batch file has arguments. Here's what I have so far:
$script = "\\fileshare\script.cmd"
$server = $args[0]
$args ...
3
votes
1answer
2k views
How do I pass named parameters with Invoke-Command?
I have a script that I can run remotely via Invoke-Command
Invoke-Command -ComputerName (Get-Content C:\Scripts\Servers.txt) -FilePath C:\Scripts\ArchiveEventLogs\ver5\ArchiveEventLogs.ps1
As long ...
3
votes
2answers
672 views
How can I get 7za.exe to run via Powershell Remoting?
I've tried a number of different ways to do this, they all result in the same error.
Here is one set of commands:
$s = New-PSsession -ComputerName ServerA
$job = Invoke-Command -Session $s ...
3
votes
4answers
8k views
Run Command as administrator in PowerShell script. UAC
OK here is my issue:
I am trying to run a script remotely on a server.
I am an administrator on both boxes, firewall exceptions are in place, remote admin is enabled, and everything else looks ...
3
votes
1answer
2k views
Start-job vs. Invoke-command -asjob
I'm trying to do basic background jobs in PowerShell 2.0, and I'm seeing different things with start-job and invoke-command -asjob.
If I do this:
start-job -scriptblock {get-process}
I get a job ...
2
votes
3answers
214 views
How to prevent InvokeCommandAction from propagating event to parent elements?
I realised that when using an InvokeCommandAcction associated to an EventTrigger, the original event was still routing up to the parent elements until it is handled. Well, I guess it is an expected ...
1
vote
2answers
73 views
powershell: script to start a program with parameters?
When i run the Powershell script below i receive the error below. How do i run programs through powershell with parameters? The script will be a group policy logon.
Invoke-Expression : A ...
1
vote
1answer
106 views
How to execute script block on remote machine that uses local variable as an argument
I would like to run an application passing it arguments from a remote machine. I've got the following to work on the remote machine by running it locally:
foreach ($a in $args){
&"c:\Program ...
1
vote
1answer
212 views
Remotely zipping files with PowerShell start-process and invoke-command
I want to be able to remote into a system and zip or unzip files there and have the process signal when it is complete. Start-process works with the -wait parameter to run 7z.exe synchronously from ...
1
vote
1answer
118 views
Can we execute rightclick without using pCmdInfo->lpVerb
I am not agnaist using pCmdInfo->lpVerb but my problem is how will we handle the situation when we create the rightclick submenus dynamically. For example, I have the following scenario:
...
1
vote
3answers
359 views
remove-item network location using invoke-command on remote computer fails
Running the following powershell command
invoke-computer -computer computer -scriptblock{remove-item -force \\otherpc\backup_dump\TEST\*}
I receive the error
An object at the specified path
...
0
votes
1answer
151 views
How to capture the Return Value of a ScriptBlock invoked with Powershell's Invoke-Command
My question is very similar to this one, except I'm trying to capture the return code of a ScriptBlock using Invoke-Command (so I can't use the -FilePath option). Here's my code:
Invoke-Command ...
0
votes
2answers
73 views
kill remote job initiated by invoke-command
what is the easy way to kill remote job initiated by invoke-command with background processes?
I kick remote PS script to run legacy exe file and need a way to kill that process.
I was going to use ...
0
votes
1answer
195 views
Pass variables to the remotely imported powershell module
I am trying to create new PSSession, import ActiveDirectory module on the remote machine and then import-pssession to my local workstation - this works fine. The code looks like:
$rs = New-PSSession ...
0
votes
1answer
713 views
InvokeCommandAction won't work when used in an EventTrigger?
this is my first question on stack-overflow so please be gentle :-)
In one of my WPF windows I have a listbox whose items are templated with the following data template:
<ListBox.ItemTemplate>
...
0
votes
1answer
307 views
Process list of commands on remote machine with Invoke-Command
I'm trying to write a powershell script that will take a list of commands and then run them on a remote machine, I have the following code:
foreach($command in $commands)
{
Invoke-Command -computer ...