We have powershell script that is run from Java service (that is run under some domain user account (Domain\user2) that is member of Local admin group) on Win2008 and it tries to Download a file from remote HTTP server using Basic auth and Login-Passw pair (via PSCredential object):

$source_uri, $target_file_path # some path to files
$pass_sec = ConvertTo-SecureString -Force -AsPlainText -String 'pass1'
$creds = New-Object -TypeName 'System.Management.Automation.PSCredential' -ArgumentList 'user1', $pass_sec
# Start Bits Transfer
Start-Bitstransfer -Credential $creds -Authentication Basic -Source $source_uri -Destination $target_file_path -erroraction stop

When powershell is run separately (without java service) - it downloads without problems.

But when it started from Java service ( that have Logon account = same user account ) - it fails with error:

Start-BitsTransfer : The operation being requested was not performed because the user has not logged on to the network.

 The specified service does not exist. (Exception from HRESULT: 0x800704DD)

I've provide some research for this problem: see Bits issues but I can't understand what could help: SENS service is run, BITS - also.

What could be a problem?

link|improve this question

79% accept rate
I won't post this as an answer, because it's only a suggestion, but it might be good to disable UAC for a second and try it without... if that resolves you'll at least know you're looking at permissions (obviously re-enable immediately) – Chris N Aug 8 '11 at 18:48
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.