vote up 2 vote down star
1

There's an in-house program we use and it's stored on a UNC share so that updates are transparent. I'd like to supply it some command line parameters like so:

\\server\share\in_house_thingy.exe myusername mypassword

But I can't seem to get it to work in either CMD or PowerShell or via a shortcut.

Anyone got any ideas?

flag

Could you clarify what exactly you mean by "can't get it to work"? It doesn't start, it's unable to parse its command line, it runs over your dog, etc, etc? The current description is much too vague. – Mihai Limbasan Nov 19 '08 at 16:01

4 Answers

vote up 3 vote down check

For a shortcut, change the target to be like:

"\\server\share\in_house_thingy.exe" myusername mypassword

unless you really do want to have to use powershell to make this work.

link|flag
That would work in PowerShell too. There are added benefits to using the Process object. – Steven Murawski Nov 20 '08 at 18:55
vote up 1 vote down

use %~dp0 in a batchfile for the current (unc) path including the trailing \

in a powershell script use this for the current (unc) path without trailing \

$0 = $myInvocation.MyCommand.Definition

$dp0 = [System.IO.Path]::GetDirectoryName($0)

link|flag
vote up 6 vote down

You could use:

$app = '\\server\share\in_house_thingy.exe'
$arguments = 'myusername mypassword'
$process = [System.Diagnostics.Process]::Start($app, $arguments)

The $process object will give you a live process object if you want to get an exit code or other information from that process.

link|flag
this was exactly the trick i needed; thanks! – David Alpert Dec 8 '08 at 15:41
Glad to have helped! – Steven Murawski Dec 8 '08 at 22:51
vote up 0 vote down

I just noticed that there's a .CMD file that's copying the file from the share to the temp directory and running it locally.

If y'all could just vote this answer up if there's no better solution, that'll work.

link|flag
this is no answer but a workaround. That's why nobody up voted this answer I guess. I would suggest accepting the other example which does show how to invoke an application on a UNC path. – Davy Landman May 6 at 14:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.