Windows error 0x800704DD, -2147023651

Detailed Error Information

NOT_LOGGED_ON[1]

MessageThe operation being requested was not performed because the user has not logged on to the network. The specified service does not exist.
Declared inwinerror.h

HRESULT analysis[2]

FlagsSeverityFailure
Reserved (R)false
OriginMicrosoft
NTSTATUSfalse
Reserved (X)false
FacilityCode7 (0x007)
NameFACILITY_WIN32[2][1]
DescriptionThis region is reserved to map undecorated error codes into HRESULTs.[2][1]
Error Code1245 (0x04dd)

This is a Win32 error which has been mapped into an HRESULT. More information may be available in error 0x000004dd.

Questions

2votes
2answers

System Account Access Token missing groups

I'm experiencing a weird phenomena regarding Windows SYSTEM Account. Looking at these three different ways to start a process as SYSTEM: * Sysinternals PSExec * Task Scheduler * GPO Startup Script. Processes started with these methods result in different access token group memberships! Processes started by Task Scheduler have the [...] read more
windows
windows-10
security-groups
bits
1vote
1answer

How to properly run Powershell scripts containing BITS operations from Task Scheduler?

I am trying to perform an automatic backup of some files and folders based on a configuration. This is done using Powershell 5 which in turn relies on Background Intelligent Transfer Service (BITS). E.g.: Start-BitsTransfer $Source\* $Destination -RetryInterval 60 -RetryTimeout 600 Powershell scripts are run using a bat: powershell -ExecutionPolicy [...] read more
windows
windows-server-2016
scheduled-task
bits
powershell-v5.0
1vote
1answer

PowerShell - Transfer Files Using BITS protocol as a scheduled task - not working when logged off

I have written a PowerShell script which uses the BITS transfer protocol in order to transfer large files from Source machine to destination machine. When I run the PowerShell script manually logging into my destination remote machine (where the files need to be copied) then the files are getting copied [...] read more
powershell
scheduled-tasks
bit
1vote
0answers

How to start a BITS download as System Account? current error: "user has not logged on to the network" 0x800704DD

I'm trying to launch a BITS service download in a GPO Startup Script. Startup Scripts are started as the local SYSTEM account, which works well for background downloads as per Microsoft's documentation https://msdn.microsoft.com/en-us/library/windows/desktop/aa363152(v=vs.85).aspx Sadly when I try to start a download (disregarding valid source or destination) I get the following [...] read more
windows-10
windows-server-2012-r2
microsoft-bits
local-system-account
1vote
2answers

Running BitsTransfer from Local Service account

I am working on making some scripts to make my job a little bit easier. One of the things i need is too download some files to use. I first used powershell with the command Invoke-WebRequest. It is working really well, however it dont run on windows 7 computeres, as [...] read more
powershell
download
0votes
1answer

Windows 10 upgrade failing with "Win10UpgradeProgramInChina" events in Event Viewer

I just tried to upgrade a Windows 7 machine to Windows 10 and it failed for no apparent reason. Both Windows 10 Upgrade Assistant and Media Creation Tool fail, the former with 0xc1900200 and latter with 0x800704DD-0x90016 error code. When it happens (with Upgrade Assistant), the following three events appear [...] read more
windows-7
windows-10
windows-10-upgrade
0votes
1answer

Auto-startup for Just Gestures (run as admin)

I cannot get the program Just Gestures to start up automatically when booting up. I have made sure to select the option in the preferences: enter image description here [https://i.stack.imgur.com/ctEJM.png] I've even made a shortcut of the .exe and put it in the startup folder, but it still won't startup [...] read more
boot
administrator
0votes
1answer

Using BITS (Background Intelligent Transfer Service) from C#

I'd like to write some code that uses BITS for copying very large files between disks on the same server (the second disk being a SAN level clone\snapshot). I looked into BITS as i thought it would be a good way to get progress\percentage complete data on the transfers, as [...] read more
c#
powershell
microsoft-bits
0votes
0answers

How to download files from multi domains with Powershell

I have a script which logs into a site and navigates to a page with a bunch of PDF files, which I wish to download. A handful of the PDF URLs are from a different domain than the rest. The error I am receiving when trying to download with Start-BitsTransfer [...] read more
powershell
login
webrequest
0votes
1answer

How to create a secure automated transfer of binary files between windows servers through a firewall, using powershell?

This is my first question on SO, and I am have tried to avoid it, but am forced to ask. I can't use FTP, as that's insecure. I can't use FTPS, as I can't introduce expiring cert overhead. WEBDAV over https isn't an option. What would be ideal would be [...] read more
windows
powershell
windows-server-2012
microsoft-bits

Comments

Leave a comment

(plain text only)

Sources

  1. winerror.h from Windows SDK 10.0.14393.0
  2. https://msdn.microsoft.com/en-us/library/cc231198.aspx

User contributions licensed under CC BY-SA 3.0