I want to upload my own asp.net website on IIS with IIS Manager. But when I do this, I get the following error > HTTP Error 500.19 - Internal Server Error The requested page cannot be > accessed because the related configuration data for the page is invalid > Module [...] read more
Some web projects are causing me problems while others work fine. I decided to focus on one of the problematic ones. I'm using Visual Studio 2013 on Windows 7. I think I'm running it as administrator, the window title says PROJECT NAME - Microsoft Visual Studio (Administrator). When I try [...] read more
Before everyone reads this, I just want to say that i know that there are related threads out there, but I have either tried them or do not understand. With that being said here goes nothing... I am trying to get a MVC Web App running in my IIS. Unfortunately, [...] read more
This is the error that is thrown by our automated build suite on Windows 2008, while running ICEs (after migrating from WiX 2.0 to WiX 3.0): > LGHT0217: Error executing ICE action 'ICE01'. The most common cause of this > kind of ICE failure is an incorrectly registered scripting engine. [...] read more
error [https://i.stack.imgur.com/vbZ03.png] I want to publish a sample .net core web application on my pc's IIS manager but I failed. I am using Microsoft guidance but it doesn't work for me, if you have reasonable experience to fix this problem I would be grateful to see your suggestions. read more
I cant open my SQL server configuration manager getting this error message: Cannot connect to WMI provider. You do not have permission or the server is unreachable. Note that you can only manage SQL Server 2005 and later servers with SQL Server Configuration Manager. Invalid I have searched online material [...] read more
I'm running Visual Studio 2017, version 15.0.0+26228.9 enter image description here [https://i.stack.imgur.com/y07y0.jpg] When I'm trying to create a new project via File > New > Project... in Visual Studio 2017, I'm receiving the following error message and the project is not created: > Access denied (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) [...] read more
i want to allow access to Anonymous.aspx page to all user, i have set Basic Authentication to Enabled, and Connect as to specific user. my problem is when trying to access http://MyIPAddress/MyAlias/Anonymous.aspx, authentication popup appears--ideally it shouldn't, and when i close popup, getting 401.2 Unauthorized error--it's obvious Error Summary HTTP [...] read more
I just created a simple application and hosted in IIS6.0. In code I'm just instantiating excel objects. using excel = Microsoft.Office.Interop.Excel.Application; namespace TestHosting { public partial class WebForm1 : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { excel excelObj=new Microsoft.Office.Interop.Excel.Application(); } } } Its giving me following error "Retrieving [...] read more
I have installed virtual box But when I tried to run it. It shows me an error as: enter image description here [https://i.stack.imgur.com/diYkv.png] I have been trying everything for whole day. Like there are answers related to this question as: VT-x is not available, but is enabled in BIOS VT-x [...] read more
A stale VM switch in Hyper-V is no longer used and when I try to delete it, it always fails with the following message: PS C:\> Get-VMSwitch nat Name SwitchType NetAdapterInterfaceDescription ---- ---------- ------------------------------ nat Private PS C:\> Get-VMSwitch nat | Remove-VMSwitch -Force Remove-VMSwitch : Failed while removing virtual Ethernet [...] read more
I know that there are thousands of reports of people having trouble getting Integrated Windows Authentication to work with IIS, but they all seem to lead to web pages that don't apply or solutions that I've already tried. I've deployed dozens of sites like this before, so either there's something [...] read more
After installation of visual studio 2017 getting his error for VSIX projects ... any suggestion to resolve the issue?enter image description here [https://i.stack.imgur.com/Fj5yg.png] Severity Code Description Project File Line Suppression State Error The "GetDeploymentPathFromVsixManifest" task failed unexpectedly. System.Runtime.InteropServices.COMException (0x80070005): ExternalSettingsManager::GetScopePaths failed to initialize PkgDefManager for C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\IDE\devenv.exe [...] read more
Before I dive into the question, I have found several other questions that seem similar to mine, but they have not been able to solve my problem. Here are links to them: Remotely run a script invoking "Run As Administrator" https://stackoverflow.com/questions/10724591/how-to-remote-execute-an-elevated-remote-script-in-powershell Now onto the question: I need to run a [...] read more
I'm using jQuery to send cross origin ajax requests and they're working fine in IE11, Chrome and Firefox but they fail in Edge with the following error: > SCRIPT7002: XMLHttpRequest: Network Error 0x80070005, Access is denied. What's interesting is that I used Fiddler to try to figure out what was [...] read more
I have a virtual directory in my site (test environment). It is a UNC share which is also used as a public FTP. It is configured to connect as a domain admin account and "Test settings" says everything appears to be working. However when I try to connect to it [...] read more
This error code is supposed to mean 'Access Denied', and the solution given everywhere on the net (eg. https://stackoverflow.com/questions/3808954/dllunregisterserver-failed-with-error-code-0x80070005) is to open a cmd with Administrator rights. However, in my case, the same error occurs even on a cmd opened with admin rights (tested with the answers on https://stackoverflow.com/questions/7985755/how-to-detect-if-cmd-is-running-as-administrator-has-elevated-privileges). Both [...] read more
I have a network with windows 2003, 2008 and 2008r2 servers. I have a powershell script that I wrote to patch a local machine using the "Microsoft.Update" com objects. (Similar to Windows Update PowerShell Remoting.) My script works wonderfully locally but I'd like to use it's functions remotely as I [...] read more
I'm trying to run Hyper-V on a freshly installed Windows 10 Pro (1709) on AMD FX 6350, 8 GB RAM. Hyper-V Virtual Machine Management (vmms) starts properly but Hyper-V Host Compute Service (vmcompute) crashes with the error Windows could not start the Hyper-V Host Compute Service on Local Computer. Error [...] read more
I cannot deploy a DirectX 12 universal App. My troubled evening started with signing errors, with VS20015 complaining that the automatically generated MyDx12App_TemporaryKey.pfx was not valid for signing. Error DEP0700 : Registration of the app failed. (0x80070005) MyDx12App Warning APPX0106 Loading certificate file 'MyDx12App_TemporaryKey.pfx' failed. Errore non specificato. MyDx12App C:\Program [...] read more
I've written a script to search/download/install Windows Updates on a machine using the Microsoft.Update.Session COM Object. When run locally it works just fine, however when running through a remote session or through Invoke-Command I receive an access denied (0x80070005) error on Microsoft.Update.Session.CreateUpdateDownloader() I receive the same error if I attempt [...] read more
I'm trying to install SQL Server 2017 unattended into a Windows 10 Azure virtual machine, via chocolatey using the following command on a remote powershell session: choco install sql-server-express -ia ""/IACCEPTSQLSERVERLICENSETERMS /FEATURES=SQLEngine /Q /ACTION=install /INSTANCEID=[INSTANCE_NAME] /INSTANCENAME=SQLCHEMETER /FILESTREAMLEVEL=1 /SECURITYMODE=SQL /SAPWD=[SA_PASSWORD] /UPDATEENABLED=FALSE"" -o -y" But the installation fails and the log file [...] read more
My Windows 10 LTSC 2019 installation can't seem to update Windows Defender definitions. Although there are countless discussions online about definition update failures, I've tried every solution I could find but none seem to make any difference. Here's what I've tried: * To start, here's the error shown by Windows [...] read more
When creating a System Restore point manually, I get a nondescript error message: The restore point could not be created for the following reason: Access is denied. (0x80070005) I've been troubleshooting for hours. I have... * Uninstalled my virus scanner (Microsoft Security Essentials) * Disabled System Restore and rebooted (to [...] read more
I recently moved my profile directory from C:\Users\[name] to E:\Users\[name] because I was running out of space on my drive C. I actually created a different account, completely copied everything from C:\Users\[name] to E:\Users\[name]. I logged back into the original account and everything is working but when it comes to [...] read more
I am trying to allow members of a domain security group, GlobalRDP, to RDP into certain Windows 10 PCs. I granted the GlobalRDP group the "Allow log on through Remote Desktop Services" right and that policy has been successfully deployed to the target computers. Despite this, whenever a member of [...] read more
I'm currently setting up a Jenkins server on Windows 10, in the hope of being able to make the build scripts more cross platform I was hoping to take advantage of the bash environment that is available in Windows 10. I hoped this could be done just by setting the [...] read more
For the second time in about a week I got a "Windows can't verify the publisher of this driver software" popup after entering my password on the lock screen. I had been away for 45 minutes, the system locked itself in the meantime. How can I find the driver that [...] read more
I am having a problem with Volume Shadow Copy on my Windows 7 Ultimate PC. Basically, I cannot use any program that relies on Volume Shadow Copy as they always fail (including Windows Backup) with a whole list of errors (depending on the program). For example, when I run Windows [...] read more
Currently i have a AD/Kerberos Configured on one EC2 instance(Windows 2008 R2) and created couple of users. Each of the users has administrator privileges. When We login as a non-domain Administrator, i can successfully execute the winrm commands. But when i login as the domain User (who has administrator privileges), [...] read more
I've made a GPO that make a scheduled task. This scheduled task access to a network share to execute a powershell program that will delete some mails in outlook. Script is OK. It's a User GPO. enter image description here [https://i.stack.imgur.com/J2hLH.png] When i launch a gpupdate /force, scheduled task does [...] read more
I am migrating SBS 2003 to SBS 2008. I have followed the 81 page microsoft guidelines here: http://www.microsoft.com/downloads/details.aspx?FamilyID=52b7ea63-78af-4a96-811e-284f5c1de13b&displaylang=en and have run the migration prepartion tool which completed successfully and then requested a server reboot which I did. I created the SBSAnswerFile and saved it to USB memory stick. The SBS [...] read more
I have two updates in Microsoft Update (the upgraded version of Windows Update) that constantly fail to install on one of my Windows Server 2003 servers. The error code is 0x80070005. I have tried installing them many times, also after a reboot of the server. I found a tip to [...] read more
I'm using SSAS through HTTP with MSMDPUMP.dll. I have setup the MSMDPUMP.dll web to use only Basic Authentication and then I provide the User Id and Password in the ConnectionString. Everything works but it's too slow to be usable. I have enabled Failed Request Tracing in IIS and I have [...] read more
When installing python on my system I am getting this error shown in below picture. enter image description here [https://i.stack.imgur.com/6CAYA.png] Please help how can I fix this issue? My account has admin rights on windows 10 pro 64 bit operating system. I have downloaded python setup from below link: https://www.python.org/downloads/windows/ read more
Issue: I successfully call CoSetProxyBlanket on a proxy (if that's the right term for it) and then I call QueryInterface on that same proxy, but I receive a result of 0x80070005 ("Access Denied"). However, if I first call CoInitializeSecurity (which I am trying to avoid) with that same credentials then [...] read more
I am running Windows 10 20H2 on a HP EliteBook G4. I HAVE THE FOLLOWING PROBLEM: I cannot run VMs attached to a virtual switch. * All VMs run successfully when not using a Virtual Switch ("not connected" under network adapter) * When I assign a virtual switch (any type, [...] read more
I have a problem with Windows Updates on Windows 10 machines. We use the Windows 10 Professional Version:2004 operating system. The updates handled by our WSUS server. (Windows Server 2019) The latest cumulative updates (2020-06 - KB4557957,2020-07 - KB4565503) are failed to install. In the windows eventlog there is an [...] read more
What is the workaround for WMI remote connection failure with Access Denied error when client runs with Local System account? I tried to run script under local system account on the client which connects to remote WMI (namespace: root\cimv2) using local administrator credentials of remote machine. But WMI connection failed [...] read more
Running a member server 2008R2 server. Backups have been running fine for some time but recently ceased to run. We have been using CloudBerry Lab Enterprise Backup to store backups in cloud storage. I started looking at CloudBerry logs and did not get much information. -------------------------------------------------------------------------------- 2015-06-25 08:18:54,230 [UI] [1] [...] read more
I have a three-node Hyper-V cluster running on Windows Server 2008 R2 which is working quite flawlessly: there are no errors, live migration works, all hosts can and will happily run all virtual machines, and so on. But one specific virtual machinee is trying to make me go mad: it [...] read more
I've created a powershell script that runs Chocolatey updates as well as does some logging locally and on a network share. The script itself resides on a network share, and I'm hoping to be able to have clients run it from there. The idea is that I deploy the scheduled [...] read more
I'm an admin on two servers (Win 2008 R2). I have a scheduled task that copies large files from a share on one server to another. Before I do the copy, I check that the destination disk on the other server has enough free space. I've been running these tasks [...] read more
I have created a GPO to apply several registry keys to a Windows Server 2008 R2 machine in my lab. The relevant keys are within HKEY_LOCAL_MACHINE\Software\Microsoft\Rpc\Internet and I have therefor used the Computer Configurationpart of the GPO. Unfortunately it won't apply. The machine complains with: enter image description here [https://i.stack.imgur.com/dg4qR.jpg] [...] read more
Environment: I'm running an HP DL165 G7, with Windows 2008 R2 x64. Recently, when I perform a backup with "Windows Server Backup", it will crash the system. I run the backup over the weekend. When I come in on Monday, it has the screen shows a BSOD. (I will try [...] read more
I've got 2 hard disks installed on the server, one of them is specifically for backup purpose. Everything is fine before I upgrade my OS to Windows Server 2012 R2... And the problem is that after OS upgrade, everytime I perform a full backup, it failed with errors on "C:" [...] read more
This morning VMWare web interface didn't work when I fired up my machine. After some investigation I find the following in the event log: Faulting application name: vmware-hostd.exe, version: 0.0.0.0, time stamp: 0x4ade2d25 Faulting module name: MSVCR80.dll, version: 8.0.50727.5592, time stamp: 0x4d2be7f2 Exception code: 0x40000015 Fault offset: 0x000046b4 Faulting process [...] read more
Why does this bitsadmin command fail? bitsadmin.exe /transfer myDownloadJob /download /priority normal http://mirror.anl.gov/pub/ubuntu-iso/DVDs/ubuntu/8.04/release/FOOTER.html c:\Temp It seems that it should work, but it gives me this error: BITSADMIN version 2.0 [ 6.6.2600.2180 ] BITS administration utility. (C) Copyright 2000-2004 Microsoft Corp. Unable to add file - 0x80070005 Access is denied. NOTE: [...] read more
I am running Powershell (v4) on a Windows7 box ; I was able to until yesterday (2017-04-12) to issue a 'stop-computer' command to shutdown my computer. Today: I am unable to do so; I get this response: ('zaphod' is the hostname): PS C:\Windows\system32> stop-computer stop-computer : Privilege not held. At [...] read more
I recently did a fresh install of Windows 7 Ultimate x64 on my laptop, and Windows Update successfully updated the system to SP1. Now, however, Windows Update runs forever without finding any updates. It ran for almost 24 hours the first time I ran it after installing the Service Pack, [...] read more
I seem to have come across a bug with outlook. I have an email in eml format, message.eml. In this certain scenario, I want to resend the email using the outlook action Resend This Message Resend Item Screenshot [https://i.stack.imgur.com/zUPNw.png] Note: You cannot do this if the email is a .msg, [...] read more
Any idea how to fix this? MozyHome backup is failing at the same time with a FilesystemError2. Windows 7 64-bit. Thanks! Log Name: Application Source: VSS Date: 12/18/2009 12:51:12 AM Event ID: 8194 Task Category: None Level: Error Keywords: Classic User: N/A Description: Volume Shadow Copy Service error: Unexpected error [...] read more
I have the following problem. On our Windows Server 2012 R2 is a scheduled task which calls a batch file, which in return calls vb scripts. Those scripts just download 5 pictures and stores them into a folder under a specified name. If I call the bat directly via command [...] read more
I am seeing the following errors from one of the SharePoint Web Front Ends after the SP2 upgrade. Has anyone else seen this error or a solution? Event Type: Error Event Source: Windows SharePoint Services 3 Event Category: General Event ID: 6875 Date: 2009-10-27 Time: 13:09:57 User: N/A Computer: XXXXXXX [...] read more
I have a Windows 2012 R2 server that was configured with IIS, websites, and other supporting software while not connected to a domain. After the server was joined to a domain IIS AppPools crash when the a website is requested. The problem I'm seeing is that any time I test [...] read more
When I start IIS on a site, I get a "HTTP Error 500.19" Error Code 0x80070005 Config Error Cannot read configuration file due to insufficient permissions Config File \\?\c:\somepath\web.config I think the site config file is messed up. It has '\?' in the beginning of the path of the config [...] read more
I have a configuration tool that configures IIS SSL certificate for a website. It creates a new binding in IIS configuration for "Default Web Site" and then assigns an SSL certificate to it. The tool works fine when I run it on behalf of administrative account, but fails when running [...] read more
I have a Windows 8.1 x64 image that I sysprep'd and captured onto a Windows 2008R2 WDS server. When attempting to install it on a fresh client, the first action "Copying Windows Files" happens in about 2 seconds, showing a successful green checkmark. Then the second action (Getting files ready [...] read more
I'm turning in circles and I don't know what I could od more to make this work. I have 2 hyperv 2012R2 nodes in a cluster and 3 windows server 2016 nodes in another cluster. I want to live migrate some vms from the first cluster to the second. I [...] read more
I have very strange thing I can't beat up for couple of days. I have a self-written .NET based 32-bit service (compiled with x86 flag), that has worked on Win 10 Pro 64-bit machine, which consumes DCOM component {6F17505C-4351-46AC-BC1E-CDE34BB53FAA} (OPC Server started as a Service). It worked for couple of [...] read more
I'm trying to come up with a way to push out a certificate for install on multiple machines. The method I came up with is: Invoke-Command ServerName {Import-Certificate -FilePath "path" ` CertStoreLocation Cert:\LocalMachine\Root} And I get: Access is denied. 0x80070005 (WIN32: 5 ERROR_ACCESS_DENIED) + CategoryInfo : NotSpecified (:) [Import-Certificate], Exception [...] read more
I've been trying to create a VM on my Hyper-V 2016 host from my Windows 10 workstation using module xHyper-V with not a lot of joy. My Hyper-V host is called Lithium and my DSC Script is below. Configuration EndToEndXHyperV_RunningVM { param ( [string[]]$NodeName = 'lithium', [Parameter(Mandatory)] [string]$VMName, [Parameter(Mandatory)] [string]$StartupMemory, [...] read more
I have the standalone Hyper-V Server 2012 running and I'm trying to create the first VM on it but I'm getting the following error: enter image description here [https://i.stack.imgur.com/Ivebj.png] From my research, this error comes up with something related to the Intel IPMI driver but I have an Asus motherboard [...] read more
I am getting a "500 - Internal Server Error" from the outside, the local connection gives me the 500 error as well as long with some more debugging information. The problem seems to be with FastCgiModule: HTTP Error 500.0 - Internal Server Error An unknown FastCGI error occured Module FastCgiModule [...] read more
I am running IIS 8.0 locally on my machine for testing purposes. I have installed PHP through the web platform installer and everything is working correctly. The only issue I'm running into is the first request that's sent after the web server has started generates a 500.19 error. After the [...] read more
I have two servers. Both of the servers have two different database that will be joined together using SQL Server Agent. However, during this activity SQL Server is throwing a Log In Failed Error. 1. The job failed. The job was invoked by User somedomain\someuser. The last step to run [...] read more
As a Microsoft MVP, I have access to Office 365, with a limited number of users. I'm trying to figure out how to set it up, but I'm running in to issues everywhere (I get the basics - just trying to make it all work end-to-end well). Here's my scenario: [...] read more
This question was asked by a colleague on SO here, though it was suggested that we ask it here instead - apologies for the cross posting. Server is Windows Server 2008 R2 - UAC is disabled on the server (temporarily for this testing only) - User is in the domain [...] read more
I created an ASP.net MVC developed web application and I am trying to set up IIS. The Error: Http error 500.19, error code 0x80070005, Cannot read configuration file due to insufficient permissions, config file: C:\inetpub\wwwroot\BudgetManagerMain\BudgetManager\web.config If I set the AppPool to use 'administrator' i have no problems and can access [...] read more
I have two servers running Windows Deployment Services (WDS) Servers running. This past week they both 'lost' themselves as WDS servers. What I mean by that is under the Servers group in the WDS role there are no machines listed. When I try to add localhost I get "Access is [...] read more
I started brand new Windows 2012 with IIS 8 and Webdeploy 3.0 installed. I could connect to it using VS 2012 to publish my application using Webdeploy method (test connection at VS). But, here comes a magic: whenever I try to publish my application to custom folder, located on D: [...] read more
I am using IIS 7.5 and want to change a website from using anonymous authentication to basic authentication. I access the Authentication feature, disable anonymous authentication then enable basic authentication. When I access the website I get the following error HTTP Error 401.2 - Unauthorized You are not authorized to [...] read more
When trying to request a new certificate for DomainControllerAuthentication from our DC designated as the CA, we keep receiving an access denied error. The following events are generated in the event viewer: Log Name: Application Source: Microsoft-Windows-CertificateServicesClient-CertEnroll Date: 20/02/2013 2:54:32 PM Event ID: 13 Task Category: None Level: Error Keywords: [...] read more
I have created Schedule Task in Windows 2008 Server using below C# Code.It works fine but when I Delete Task from C# Code.Its shows an error message as "Access is Denied. (Exception from HRESULT : 0X80070005 (E_ACCESSDENIED) " Please check below code and advise how to do that.. Creating Task [...] read more
I have an old application that uses Microsoft Word automation in asp.net and I need to install it on a Windows Server 2012 R2 x64 with Office 2013 Standard x86. I know that Office automation in server technologies like IIS should be avoided but I don't have the green light [...] read more
I have developed an OPC DA server which runs as a windows service. When I try to connect to it OPC client it gives me 0x80070005 (Access is denied) error. However if I run the client as administrator it connects properly. This is a problem since I cannot force clients [...] read more
I'm working on a script to deploy vendor software to a large environment. The first step is to stop the services in question. The script executes fine in our test environment, but I'm not an admin in the production environment so I'm convinced it's a permissions issue. I can't get [...] read more
I just set up a new Windows Server 2019 instance, and am trying to run tasks (C# console apps) through Windows Task Scheduler. I've set it up to log in as a certain windows user, which has "Administrators" permission. However, when I try to run the task (either on a [...] read more
I got following error message when I try to create folder/item in my web service, may I ask your advise? System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) at Microsoft.SharePoint.Utilities.SPUtility.HandleAccessDenied(Exception ex) at Microsoft.SharePoint.Library.SPRequest.AddOrUpdateItem …… (SKIP) The web service (both application pool and pass through authentication) using local administrator account [...] read more
I'm trying to use IIS 7 management API but stuck with a security issue. My application is regular ASP.NET site running on .NET 4 (integrated pipeline). The machine is Windows 7 x64 (the app pool is default, running under ApplicationPoolIdentity, x64). The site uses the following settings: <identity impersonate="true" /> [...] read more
Whenever I try to sign into Xbox Live on my Unity game (using creators program Unity plugin), both on UWP PC and Xbox One, the game throws an exception: Exception thrown at 0x00007FFAEF0AA899 in Boulder Falls.exe: Microsoft C++ exception: Platform::COMException ^ at memory location 0x000000E51B6FEC20. HRESULT:0x803E0110 The application does not [...] read more
I am using a Windows 10 machine which is unable to sync time automatically. Clicking on "Sync now" on the Date & Time Settings produces an error "Time synchronization failed". The problem has been going on for a long time, as the last successful sync is shown to have happened [...] read more
I updated my server today with all pending update and after reboot I was unable to connect to SQL server. Prior to reboot I've also enabled the firewall but now it's disabled again and server is after another reboot. When I try to connect locally using "sqlcmd -S localhost" I [...] read more
Does anyone know if remote powershell (as a server not a client) will work on windows 7 home premium? i found a post here saying home edition doesn't have the required networking bits but it doesn't go into any detail ideally i was wanting to see something from Microsoft saying [...] read more
I'm attempting to use a scheduled task to shut down my win XP PC. I get the error: Task Scheduler Error 0x80070005: Access is denied. I'm logged in with administrative privileges but am unsure why the task isn't starting or won't work. I don't know what I'm doing wrong. Can [...] read more
I have recently installed Ubuntu app on my Windows 10 (64 bit) machine (OS Build 16299.371, Version 1709). The app opens and works fine. However, when I try to Right-click>Run As Administrator, the the app gives error: Error: 0x80070005 Also, when I try to run bash from Windows CMD, I [...] read more
I get the "Your Windows version might not be genuine" warning, even though I have a legit copy of Windows 7. But I can't enter the product key for some reason (it says "Activation status not available" and "Product ID not available"). Since I don't care about the updates (they [...] read more
I have an MSI Wind U100 Netbook that I reset back to factory defaults, and I'm trying to run Windows Update. It's a completely fresh image, not a single thing was done to it besides filling out information like username, timezone, etc. When you launch IE6 and go to Tools->Windows [...] read more
I am attempting to install Microsoft Office 2016 Pro Plus (classic, not click-to-run) The installation fails, here is an excerpt from Windows Event Viewer: Fault bucket 124669380009, type 5 Event Name: OfficeClassicSetup Response: Not available Cab Id: 0 Problem signature: P1: 16.0.4266.1001 P2: OSETUP.DLL P3: 16.0.4266.1001 P4: 1603 P5: Unspecified [...] read more
This morning when I got to my Windows 10 PC, I had the banner overlay requesting me to restart because an upgrade needs to be completed. It appears this was the patch to build 10586.17. I shut down my running VM, named 'mercury' and restarted the Windows machine to apply [...] read more
I have been trying to use this IE11 installer labeled Internet Explorer 11 for IT Professionals and Developers--Windows 7 64-bit Edition and Windows Server 2008 R2 64-bit Edition (recommended), to upgrade IE9->IE11 on multiple PCs. I try with the arguments /quiet /update-no /norestart as documented here. And yet it still [...] read more
I am trying to backup a Windows 7 laptop to my file server. The error code is 0x80070005. The Event Viewer shows this: > The backup operation that started at '2011-06-06T19:56:48.283117300Z' has > failed with following error code '2147942432' (The process cannot access the > file because it is being [...] read more
A failed windows update caused my Windows Server 2012 R2 install to have a meltdown. Update package: > Microsoft-Windows-NetFx4-OC-Package~31bf3856ad364e35~amd64~~6.3.9600.16384 failed and every time the computer reboots it says "Installing Updates 35%" then reboots and says it was unable to install updates and attempts to undo changes. I also no longer [...] read more
I just installed IIS server for testing and I can't get it to work, it shows 40.3 Error. > HTTP Error 401.3 - Unauthorized You do not have permission to view this > directory or page because of the access control list (ACL) configuration or > encryption settings for this [...] read more
There is a way via a CLI or GUI application to grant Admin rights to ALL the keys/Values of an entire registry Hive (like System, SAM, ntuser.dat, etc)? The problem is that I'm using the Dism tool provided by Microsoft to service and deploy Windows, I'm trying to perform some [...] read more
After upgrading to Windows 8.1 from Windows 8, the (Windows 7 backup) which was a part of Windows 8 is no longer available in 8.1, but for some reason (I guess because the back progress was running while upgrading to Windows 8.1) the process is still running for a month [...] read more
I get this error if I try to activate my 2-month-old Windows installation. * I have tried restoring default registry permissions and other things as officially directed by Microsoft - no change. * I have tried adding Network Service permissions on the whole Registry/HKU - no change. * The computer [...] read more
we have a two-node Server 2019 Hyper-V cluster with an SSD SAN providing the shared storage. I'm in the process of trying to update the host servers with their windows updates. I planned to move all the VM's from Host-01 to Host-02 install the windows updates on Host-01, then move [...] read more
The ol' GPO not applying issue that's been seen many times before..... Since the 29th April, none of my member servers are processing any GPO's. I've had a lot of experience with managing AD and GPO's so am posting here after performing many obvious checks. This issue just seems a [...] read more
Im slowly getting my feet wet with Powershell, so I am a new beginner. Trying to have PS pull from a text file a list of PCs and let me know the status of their App Identity Service. The basic script errors out (below). I added in the $ErrorActionPreference = [...] read more
Okay so I've tried stopping/registering the win32tm service on this Windows Server 2008 Enterprise Computer. C:\Users\Administrator>net stop w32time The Windows Time service is stopping. The Windows Time service was stopped successfully. C:\Users\Administrator>w32tm /unregister The following error occurred: Access is denied. (0x80070005) C:\Users\Administrator>w32tm /unregister W32Time successfully unregistered. C:\Users\Administrator>w32tm /register W32Time successfully [...] read more
Dozens of Windows 8.1 PCs across my environment show Fatal Error: C0000022 and cannot boot any further after installing either KB4541505 or KB4541509. Automatic Repair fails; they cannot be restored with System Restore; DISM cannot roll back the update due to the image being unserviceable, and /Cleanup-Image will fail; and [...] read more
I have about 40 printers which are were deployed in old method (GPO - user - deployed printers) Each printer have a security group in Permissions tab users whom can use it. For now i have a problem that some printers appeares at workstations where user doesn't have a permissions [...] read more
I have 2 workgroup computers. I want to setup powershell-remoting between these two computers. The OS on both the computer is windows 1809. Powershell remoting is enabled in one of the computer. Other computer can't be accessed directly to enable the powershell remoting. So i am running a script on [...] read more
I have patiently and faithfully reinstalled Remote Server Administration tools (RSAT) on my Windows 10 (pro) Workstation after each feature update (and Early Release build), but now it's partially broken and I'd like to do a clean reinstall, but: * if I try to remove the existing RSAT * kb2693643 [...] read more
I can no longer remote access WMI on anything in my environment (10/8.1/XP/7 workstations). Here some specifics: 1) I am a Domain Admin and "MRT" is my user and password "mmmmn". 2) Since this happened I've been researching articles and have looked and verified the WMI and DCOM security settings [...] read more
On 2014-06-17, we had eight of our Windows Server 2008 R2 RDSH Servers (all members of the same RDSH farm {brokered}) suddenly believe Windows Activation was lost while users were logged in. If user was previously logged in they were somewhat functioning, but nobody could establish a new logon. If [...] read more
I have tried to run my project on a server provided by someone else for some time now and after going through a lot of troubleshooting documents I'm at a spot where I don't know what to try next. For debugging purposes I have created a plain, empty project (with [...] read more
One of my client has IIS with 2 web sites running, pointing to same app pool and root folder. Lets say those 2 websites as a.com and b.com, pointing to same root folders. Now that b.com works well, but a.com throws 500 internal server error. Browsing within the server gives [...] read more
I have taken over administration of a 2008 r2 domain where there were two group policies for creating network printer shares on domain user logon: GPO1 to map network printers: GPO > User Configuration > Policies > Windows Settings > Deployed Printers GPO2 to set default based on security group: [...] read more
I have the need to send email as a different user. My main email is user@domain.com, however I need to send email as user@domain1.com I have incoming email working...if I send to user@domain.com or user@domain1.com, the email shows up in Outlook and all is well (Outlook 2016) However, if I [...] read more
This question has been asked in various forms but none of the solutions worked for me. I am trying to run icinga from a linux box and one the plugins uses WMI queries. It's failing, so I decided to run simple wmic queries to find the issue. I use the [...] read more
In my event log (Windows Server 2012) I see this error every three hours, going back a very long time: > Volume Shadow Copy Service error: Unexpected error querying for the > IVssWriterCallback interface. hr = 0x80070005, Access is denied. . This is > often caused by incorrect security settings [...] read more
We noticed that DTC service stopped working properly. Log from ASP.NET application: System.UnauthorizedAccessException: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) at System.Transactions.Oletx.IDtcProxyShimFactory.ConnectToProxy(String nodeName, Guid resourceManagerIdentifier, IntPtr managedIdentifier, Boolean& nodeNameMatches, UInt32& whereaboutsSize, CoTaskMemHandle& whereaboutsBuffer, IResourceManagerShim& resourceManagerShim) at System.Transactions.Oletx.DtcTransactionManager.Initialize() at System.Transactions.Oletx.DtcTransactionManager.get_ProxyShimFactory() DTC cannot be restarted while in this state. We noticed [...] read more
I'm trying to achieve the following: I would like to run a remote powershell script on a computer that is not in a domain. I've researched a lot and set up already all permissions/firewall rules etc that brings me to the following result. When I try to run the following: [...] read more
I'm trying to convert a fully patched, Windows Server2008 R2 system disk into a VHD by using disk2vhd from Microsoft Sysinternals. Every time, the conversion fails with error during copy. The error could not be performed due to an I/O error, regardless of whether I sue the vhd or vhdx [...] read more
I'm issuing this command on the Hyper-V host SERVER2: Clear; Get-VM | ForEach { Write-Host "Migrating: "$_.Name; Move-VMStorage ` -VM $_ ` -DestinationStoragePath "\\SERVER1\D$"; } Both servers are domain-joined, non-clustered. This is the result I'm getting: > Move-VMStorage : Storage migration for virtual machine 'ADMIN' > (4F452569-7DB9-4606-9371-A905267A7B0F) failed with error [...] read more
I set up work folders in my organization and that was fine until last week. now I have some issue. One of my clients' works fine but mine and the others' can't access to work folders. I have admin access on the work folder server but I can't using work [...] read more
I've got IIS 8.5 running on a couple of servers with BITS uploads enabled on a virtual directory. Looking through the logs, I see several different sorts of errors where it says (bits_error:{GUID},500,0x80070070) or some other error code. I'm able to match these to Error Descriptions on the client side [...] read more
I'm working on a PS script that will give users a GUI & a few buttons to click to do some basic tasks such as unlocking an account, enabling/disabling, changing passwords and killing processes / logging user off. The parts that do NOT work are : enable/disable users and change [...] read more
IIS 7.5 is running in this server. I have configured IIS Manager User "someuser". On virtual directory "virtdir", which is also an IIS7.5 "app" I have set user "someuser" to allowed (in IIS Manager Permissions" (and yes, I selected the "virtdir" and switched to "Features View" first.) Also with "virtdir" [...] read more
I installed and configure a Samba 4 as AD and I shared Homes. I can log in the Samba server and a Windows 2008 server with my users. However, on Windows, when I type "\IPSambaServer\user1" when logged with user1, I get access denied with error code : 0x80070005. Of course [...] read more
let me explain our setup first! We have 2 site location with Cyberoam CR50ING Firewall, IPSec between the 2 Subnet. Cyberoam firewall has an AD authentication with their software linked to the appliance, to detect live and logoff user. Site A is working #1. Site B, was under a different [...] read more
I created Windows 7 Pro 64 images and all are getting this error. I configured them to use virtio disk and network adapter using the 1-74 drivers. They work fine locally (kvm on ubuntu 13, qcow2 drive, virtio nic and disk), but when I upload them to my org's OpenStack [...] read more
I just deployed an ASP.NET MVC3 site to a new hoster. It is using the Plesk Control panel. The site is using Sql Server Compact 4.0 and EricEJ's Sql Server Compact Membership and Role provider. When trying to access the site, I'm getting an access is denied error on the [...] read more
I joined two hyper-v servers to a domain and added shared storage to both of them. From what I read I should be able to run the test-cluster cmdlet at this point for it to check the configuration, but when I run it, it throws an access denied error. I'm [...] read more
I'm trying to use Windows Server Backup on my Windows Server 2012 box to backup my Hyper-V VMs. I created a backup job but each job ends with some "Access is denied" errors. enter image description here [https://i.stack.imgur.com/9C3e9.png] One of my VMs (Linux Server) is backed up properly. All others [...] read more
I have a SSIS package which is used to exported SQL Server data to an Excel file through Interop. When I executed the package from stored procedure, the execution failed and showed following error. > Retrieving the COM class factory for component with CLSID > {00024500-0000-0000-C000-000000000046} failed due to the [...] read more
I have a .NET 5 Console Application for which I used following the documentation the '.NET 5: Use the Target Framework Moniker option'. This means my project file looks like this at the moment: <Project Sdk="Microsoft.NET.Sdk"> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net5.0-windows10.0.18362</TargetFramework> </PropertyGroup> </Project> I then tried access the Location Api using new [...] read more
Can any one help me into this error!!! Following are the versions installed on my machines: * Vagrant 2.2.0 * VirtualBox: 5.0.16r105871 * Gem: 2.7.5 * Chef Development Kit Version: 2.0.28 PS C:\nginx\html\cereved\dev-environment> vagrant up ==> frontend: Box 'mvbcoding/awslinux' could not be found. Attempting to find and install... frontend: Box [...] read more
I am currently trying to setup monitoring of windows scheduled tasks in Zabbix. It seemed easy enough to just monitor the Microsoft-Windows-TaskScheduler/Operational event log filtered by 201 events and regexing on the return code, but when I started simulating errors to test the monitoring, nothing happened. It turns out that [...] read more
I created Excel VBA code to send emails on a loop through Outlook. This works with my primary email address. When I change which email address it is sent from to my secondary email address, which is mapped over from Gmail, I receive an error message > This message could [...] read more
I have an SQL Agent Job called: Agent1. It calls an SSIS package: C:\SSISPackage\ssispackage.dtsx The error I get is below: > Error 0x80070005 Access is denied. The Windows user that executes the package obviously does not have access to: C:\SSISPackage\ssispackage.dtsx How do I find out what Windows user is running [...] read more
I want to invoke a shutdown if label1.text == label2.text but an error appears when Windows.System.ShutdownManager.BeginShutdown(Windows.System.ShutdownKind.Shutdown, TimeSpan.FromSeconds(1)); is called. The error: > System.UnauthorizedAccessException : 'Accès refusé. (Exception from HRESULT: > 0x80070005 (E_ACCESSDENIED))' read more
I want to deploy Updates to Windows Servers in Our Domain. To achieve this i want to use the Module "PSWindowsUpdate" Here is the Official Release. I use this Module in combination with PSSessions and import it locally on all Servers outside of the default Module Path. It should accept [...] read more
I'm trying to use Entity Framework Core 3.1.7 (code first) with SQL Server Express. add-migration works well but when I try to migrate to the database I System.TypeInitializationException: The type initializer for 'Microsoft.Data.SqlClient.TdsParser' threw an exception. ---> System.TypeInitializationException: The type initializer for 'Microsoft.Data.SqlClient.SNILoadHandle' threw an exception. ---> System.DllNotFoundException: Unable to [...] read more
The problem is that after some period of time VirtualBox Manager wouldn't display information about any guest virtual machines. All the sections of details screen contain the same text: "Information Inaccessible". Like this: enter image description here [https://i.stack.imgur.com/SmGbB.png] If I close this window and start the Manager again - everything [...] read more
I tried to activate my office with a persnoak working kms of mine. c:\Program Files\Microsoft Office\Office16>cscript ospp.vbs /act Microsoft (R) Windows Script Host Version 5.812 Copyright (C) Microsoft Corporation. All rights reserved. ---Processing-------------------------- --------------------------------------- Installed product key detected - attempting to activate the following product: SKU ID: 85dd8b5f-eaa4-4af3-a628-cce9e77c9a03 LICENSE NAME: [...] read more
I am using Windows 10, and today (2021-01-28) I got a BSoD, the computer then rebooted automatically, and after reboot, sound, microphone and camera weren't working on the system; Windows Defender disappeared, and I couldn't run cmd as admin (my account is the only account and it's an administrator account). [...] read more
As it currently stands there are five UWP apps that won't install for me. * Windows Terminal Preview * Slack * Xbox * Xbox Game Bar * Skype I've used WSReset.exe and that didn't help, I tried to install Windows Terminal using the .msixbundle file that Microsoft provides on Github, [...] read more
I like to be able to code on both my laptop and desktop (both with Win 10), therefore I have Google Drive to sync my files between the two. My first issue was that the user folder on both computers was different, but I've changed them so they'd effectively have [...] read more
Would like to seek for advice for an issue regarding Windows 10's new OpenSSH feature. Firstly, I have installed the "ubuntu" from Windows Store following the support of Windows Subsystem for Linux. It functioned properly, ubuntu could by launched successfully from either cmd or powershell sessions locally (just type "ubuntu"). [...] read more
I am having a problem with System Restore on Windows 7 Home Premium 64-bit. I can make restore points easily, but if I try to go back to one, I get this: System Restore did not complete successfully. Your computer's system files and settings were not changed. Details: Access is [...] read more
I tried to restore my Windows 10 Computer to a checkpoint but it failed. Screenshot of error [https://i.stack.imgur.com/3Z0co.png] The event log has the following Event ID 8210 > An unspecified error occurred during System Restore: (Scheduled Checkpoint). > Additional information: 0x80070005. Other questions about this error were either related to [...] read more
Since yesterday I am facing an issue on my computer, that occured after I needed to force reboot because of a graphic card crash. When starting up my session, the sound service is not started, and my antivirus (Avast) is not starting as well. I am not able to start [...] read more
We are using the wonderful NTBackupScript on a Windows 2003 server to automate our backups with the built-in NTBackup. I've used this successfully in the past to run totally automated and bombproof backups, but we're rebuilding our backup server and have run into some snags when trying to create and [...] read more
I'm unable to install any apps from the Windows Store. When installing apps I am just presented with the following error: Code: 0x80070005 enter image description here [https://i.stack.imgur.com/iEopq.png] I so far have tried all the fixes listed in the link below to no avail: https://www.windowscentral.com/fix-pending-apps-windows-10-store I am using Windows 10 [...] read more
I'm trying to get a vagrant box for ubuntu and running on my windows machine, and every time I type in "vagrant up" I get a BSOD. I've turned off Hyper-V in windows as this was the suggested fix. The issue is still there. The error code I see in [...] read more
Any hints on where else too look pls? I am searching for this still but have not found anything that has helped. Thank you -------------------------------------------------------------------------------- I just updated Win 10 to Fall Creator's Update. My Virtualbox environment stopped working and would require the PC to be cold booted. I just [...] read more
For several Months now my WIN-10 computer has not been able to update itself from Version 1511 to version 1607. It makes the attempt each and every day, but fails with error code 0x800700005 and rolls back to version 1511. SFC and Registry Cleanup and rebuilds offer no solution. I [...] read more
I'm on Windows 10 and I wanted to read a MacOS external drive so I searched and found that bootcamp drivers issue. Downloaded them, and placed the AppleMNT.sys and AppleHFS.sys into C:\Windows\System32\drivers, replacing an older pair of drivers that were there. After restarting the computer, BSOD and whatever key I [...] read more
I've tried several times now to migrate Program Files, Program Files (x86), and AppData to my second HD with various degrees of success. (I have already migrated my User directories to the second HD with the "Location" tab in their Properties.) For the most part, everything is fine, except for [...] read more
I have a problem with my ASUS laptop (Windows 7 x64 Home Premium), where whenever I try to start any program (cmd.exe, explorer.exe, and various tools in control panel still work, but any 3rd party .exe files, iexplore.exe, MS Office apps - don't) - it crashes instantly with the following [...] read more
First off, I'm having a very similar issue to this StackOverflow post here: https://stackoverflow.com/questions/31681386/sql-server-configuration-manager-wont-start-wmi-returns-error# Installing SQL Server 2008 Express fails with an MOF Syntax error. After running mofcomp on the sql files I get this: Microsoft (R) MOF Compiler Version 6.1.7600.16385 Copyright (c) Microsoft Corp. 1997-2006. All rights reserved. Parsing [...] read more
I've had this issue for a very long time and I often search google for solutions and try whatever I find but nothing works and then I give up, only to repeat the same process a few weeks later. this time I decided to ask for assistance here. here's what [...] read more
My laptop (Acer Aspire M5-581TG, Windows 8.1 x64) had some bad sectors which I recovered by doing chkdsk /R. This showed that C:\Windows\system32\d3d11.dll had the bad sectors in it, so I renamed that file (while in the recovery console's command prompt) to avoid Windows trying to load it. However, now [...] read more
I'm working on a solution, where I want to rejoin a computer remotely to the domain if the domain trust is lost or for any other reason. In order to achieve this, I need to let WMI through the Firewall and set the needed security permissions for DCOM. The firewall [...] read more
Whenever I run the following command in an elevated command prompt, I get the 0x80070005 Access Denied error code. I'm assuming it's a permissions error for the child shell. I'm running the command in an elevated prompt on Winddows 7 Pro SP1. > FORFILES /P %WINDIR%\servicing\Packages /M > Microsoft-Windows-InternetExplorer-* 9.*.mum [...] read more
> Possible Duplicate: > Windows 7 Backup Fails Possible duplicate of Windows 7 Backup Fails I use inbuilt Windows 7 backup functionality to create and store system image on my network store. Until recently it worked like a charm. Each time I press "Back up now", it immediately fails with [...] read more
I am experiencing significant certificate generation issues in Windows 8. The first issue I encoutered was with Hyper-V being unable to generate a certificate. See this question for more detail: Hyper-V not working on Windows 8. Since then, I've tried to deploy a self-signed application through click-once. When clicking Create [...] read more
When I try to add a task I get error: Error 0X80070005: Access Is Denied Windows XP Pro Service Pack 3. 1 administrator account with no password! I don't want to set password for the account because I want auto login when i start computer without entering any passwords. read more
Windows XP SP3 I use utorrent. Occasionally, in the logger I will get this message: "Error opening Windows firewall: 0x80070005 Access is denied". It is not always there, it is intermittent. 1. Can I change this without opening myself to viruses, loggers, etc.? 2. Should I change the firewall to [...] read more
I've had this problem when installing several different programs (iTunes, Adobe Acrobat Reader just to name two). Regardless of what the program is, the install usually gets at least 90% through the process and then just hangs. I don't see anything bad in the event log besides the following (and [...] read more
I have a Vista machine with Outlook 2007. When Send/Receive is clicked, on of the email accounts gives an error. 0x80070005 You don't have appropriate permissions to perform this operation. The other email account in Outlook does not have this problem. We've talked to the ISP, and it's not a [...] read more
I am trying to run a script to rename remote computers via PowerShell. The problem I'm running into is that I'm getting the following error: Rename-Computer : Cannot establish the WMI connection to the computer 'computername' with the following error Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)). At C:\temp\scripts\rename_script\new_rename.ps1:8 [...] read more
I'm trying to create a new GPO, configure some settings, and after that link it to an OU using PowerShell. My script looks like this: New-GPO -Name $GPOname -Comment "My new GPO" Set-GPRegistryValue -Name $GPOname -Key "HKCU\Software\Microsoft\Windows\CurrentVersion\Policies\System" -ValueName DisableRegistryTools -Type DWORD -Value 1 # many Set-GPRegistryValues more New-GPLink -Name $GPOname [...] read more
I am getting this error when attempting to execute a DTSX package from the Windows command line when logged in as a service account inside a domain. Code: 0xC0011002 Source: {6DB934F3-5312-4C7C-9E59-D8CF30910966} Description: Failed to open package \\some_server\some_export_folder\some_export_ssis_package.dtsx Access denied due to error 0x80070005. This occurs when loading a package and [...] read more
Here's my situation. Our main domain is example.com setup on G-Suite. We also have a secondary domain example.org setup on Office365. When someone emails user@example.com, it gets forwarded to user@example.org so they can open the emails in Outlook & use the Exchange features. I'd like for when the user replies [...] read more
I've created a small cluster of 2 win servers in a domain and another for the remote executions. I am able to run Get-NlbClusterNode locally on each of the servers. I can establish remote session with the 2 nodes and have all the permissions in place. I can run Get-NlbClusterNode [...] read more
I have a script where part of it looks for pending updates on workstations in the domain. It iterates the following code over all computer members. $Command = (((New-Object -ComObject Microsoft.Update.Session).CreateupdateSearcher()).Search("IsInstalled=0")).updates $Updates = Invoke-Command -ComputerName $Com -Credential $Cred -ScriptBlock {$Command} But when I run the code (on the DC server [...] read more
I need to send a Mail from one of our distribution group. I setup the permissions for my personal account, so I can send "as" and send in the name of that mail account. Theres also an SMTP address configured for it. But when I actually try and send the [...] read more
We've been running into this error across our network: The user 'NameOfPrinter' preference item in the 'NameOfGroupPolicy' Group Policy Object did not apply because it failed with error code '0x80070005 Access is denied.' This error was suppressed. The printers will still map but we keep getting this error every time [...] read more
I marked myself Full Access and Send On Behalf shared mailbox permissions. Then in the from field do not appear shared mailbox so i type manually in other email address: example@domain.com and click ok. Then once i try to send i receive error: Your message did not reach some or [...] read more
I set AD group policy to copy some .LNK shortcut files from a network share to users' individual desktops, with a user-level group policy setting. Errors 0x80070005 were produced by each copy, as seen in gpresult. I did research, and gave read-only access for the whole network share, to Authenticated [...] read more
On a Windows 10 computer, the SQL 17.5 SSMS installation fails. From the logs, it appears that the error is in the VSTA 2015 installation. Running that (vsta_setup.exe) directly fails with the following error in the log file (named dd_vsta_setup_(var.MajorVersion)_20180322092420.log): [3F28:3D20][2018-03-22T09:26:37]i301: Applying execute package: vsta_hostingcore_x86, action: Install, path: C:\ProgramData\Package Cache\{11A9EF3E-6616-31B1-82BC-1080366FA34D} [...] read more
We are running an Exchange 2013 Server with Outlook 2013 as Clients. On some accounts we need multiple E-Mail-Addresses. We configured them in ECP and gave the users Send as and Full Access permissions for their Mailbox, just in case. They receive E-Mails on these addresses, however, we want them [...] read more
Exchange 2016 using Outlook 2016 client Created a new Public Folder titled Mail-enabled the public folder: Enable-MailPublicFolder -Identity "\PublicFolder" Added Send As permissions. Add-ADPermission PublicFolder -User domain\jsmith -Extendedrights "Send As" Added permissions to receive mail. Add-PublicFolderClientPermission -identity "\PublicFolder" -User Anonymous -AccessRights CreateItems Set Hidden from address lists false: Enable-MailPublicFolder -Identity [...] read more
Shared drive is being set as the following \\SERVER\SHARE using drive N All drives have no change Show hidden drives no change Titled: "Share" Reconnect: unchecked Set as Update/Create/Replace (all have not worked) Set to apply "Run in logged on users's account context". I am able to get to this [...] read more
How do I restore WinRM on a Windows 2008 R2 machine back to it's 'out-of-the-box' state? Or alternatively, how do I get WinRM to start talking to me again? I'm logged in as administrator via RDP. Any attempt to access or configure winrm is met with Access is Denied. I [...] read more
How to resolve the error during installation of System Center Configuration Manager 2012 with a external MSSQL 2012 Database? Error Log 2/12/2016 7:33:26 AM: ConfigMgrSetupWizard Information: 1 : Reading wmi to get Clustered SQL information on server [SRV-DB-06.******.local]. 2/12/2016 7:33:26 AM: ConfigMgrSetupWizard Error: 1 : Exception message: [Access is denied. [...] read more
I'm having trouble with VSS based backups of my Exchange server. I'm getting the following error on the start of the backup: Volume Shadow Copy Service error: Unexpected error querying for the IVssWriterCallback interface. hr = 0x80070005, Access is denied. . This is often caused by incorrect security settings in [...] read more
Okay this is kind of a rehash of a prior post. (https://serverfault.com/questions/479617/clustered-storage-error-there-are-currently-no-logon-servers-available-to-servi) due to my belief that it is unrelated to the cluster based on new information. So you don't have to read it, the issue I'm having is that after a period of time I start getting the error [...] read more
I'm trying to create a VM on Hyper-V 2012 R2 server and I'm getting this error: The server encountered an error while creating VMNAME The Operation failed Failed to create external configuration store at "\\SMB\Server\Path": General access denied error. (0x80070005) This is a brand new cluster, using SMB share to [...] read more
A failed windows update caused my Windows Server 2012 R2 install to have a meltdown. Update package: > Microsoft-Windows-NetFx4-OC-Package~31bf3856ad364e35~amd64~~6.3.9600.16384 failed and every time the computer reboots it says "Installing Updates 35%" then reboots and says it was unable to install updates and attempts to undo changes. I also no longer [...] read more
SharePoint Foundation 2010 SP1 on Windows Server 2008 R2 Std SP1 (Domain Controller) in a simple farm with a single SQL Server 2008 SP1/Windows Server 2008 Std SP2 backend I realise installing SP on a DC is not advised but I've no alternative. Trying to run Get-SPWeb -site [site path] [...] read more
If I use VMware converter it throws > Volume Shadow Copy Service error: Unexpected error calling routine > CoCreateInstance. hr = 0x80040154, Class not registered . > > Operation: Instantiating VSS server If I use Disk2vhd it throws > Volume Shadow Copy Service error: Unexpected error querying for the > [...] read more
We recently installed MS Windows Server 2008 R2 EE on two physical IBM System x3550 M4 server and this cluster hosts Biztalk resources on it. MSDTC was configured prior to Biztalk resource were added and after Windows Cluster was setup. Cluster validation reports no issues. But, if we try to [...] read more
I've looked on some of the same questions around here but couldn't find what i need. I think i messed up my IIS 7.5 ( and i don't even know how - only thing that comes to my mind is that maybe i uninstalled something but i don't remember ). [...] read more
I'd like to create a volume shadow copy (vshadow 2.2) from within Cygwin over ssh: $ ./vshadow.exe -p -nw C: (...) - Setting the VSS context to: 0x00000019 Creating shadow set {a5e0883e-9485-4243-8276-1ac7c569ab6a} ... - Adding volume \\?\Volume{218a908d-1e3f-11df-a215-806e6f6e6963}\ [C:\] to the shadow set... Creating the shadow (DoSnapshotSet) ... ERROR: COM call [...] read more
I log on CruiseControl.net service with user in one domain (DOMAINNAME\user). and I want to use nant script to stop application pool on other server. and I got this error Failed stopping application pool '***********' on '172.16.0.62'. Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) I can stop it if [...] read more
I have two PCs that are both running Windows XP SP3, referred to as PC1 and PC2. They are connected to each other through cross-over ethernet cable. PC1 has the static IP address 10.0.0.1 and PC2 has the static IP address 10.0.0.2. I want to invoke a commandline executable on [...] read more
I have two very similar ASP Classic apps that both use Windows Authentication and run on the same development PC (Windows 7/IIS 7.5). They've been around for years, and have 'travelled' with me as I've upgraded PCs through the years. One works fine, but the other doesn't - I can't [...] read more
When I run my application via ISS Express, everything is okay. When I publish it and try to log in, the following error occurs: Unable to load DLL 'sni.dll' or one of its dependencies: Access is denied. (0x80070005 (E_ACCESSDENIED)) I have tried to install the NuGet package sqlclient. Both, System [...] read more
I'm trying to test ability to have two dynamic link libraries for Windows and macOS in one app so it can choose required by DLLImport. I'm testing on Azure Pipeline which has following tasks: enter image description here [https://i.stack.imgur.com/YttYm.png] So dll and dylib downloaded first from separate pipelines artifacts, then [...] read more
I am trying to write a windows forms app that will write logs to a .txt file in: Documents/subfolder/name.txt I am able to create a the subfolder directory using string documentsPath = Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments); string dirPath = Path.Combine(documentsPath, appFolderName, logFolderSubpath); if (!Directory.Exists(dirPath)) { Directory.CreateDirectory(dirPath); } string fileName = "log" + DateTime.Now.ToString("_yyyy-MM-dd_hh-mm-ss") [...] read more
I am trying to show images from my NAS on my website that is running on an IIS server. I have made a virtual directory and i have successfully linked my nas to the server. Now everytime i try to load an image onto my html page i get the [...] read more
I am using docker to deploy an linux sql-server to azure. And I cannot get the Sql-Server agent to run on a container instance on Ubuntu in azure. The Sql-Server starts fine but not the Sql-Agent. I have tried with different versions of SQL-Server. Locally it works fine with this [...] read more
I'm trying to enable MSMQ on my development computer (running Windows 7). I go to turn windows features on or off -> Microsoft Message Queue (MSMQ) Server Core -> Check MSMQ Active Directory Domain Services Integration AND MSMQ HTTP Support. When I click OK, I get the error "An Error [...] read more
I'm using a loop to loop through a search engine page to gather data, and for some reason when I navigate to the second page of results my HtmlElementCollection and Regex.Match functions poop out with this error: Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) Here's a copy of my [...] read more
Can anyone help, I have a SQL table built in my database that feeds from an excel file that will be regularly updated. I got it working fine, but I need the data in SSMS to be updated upon refresh (ie: fetch the latest from the excel file). ScreenshotSSMS [https://i.stack.imgur.com/d2CdK.png] [...] read more
Exchange 2016 using Outlook 2016 client Created a new Public Folder titled Mail-enabled the public folder: Enable-MailPublicFolder -Identity "\PublicFolder" Added Send As permissions. Add-ADPermission PublicFolder -User domain\jsmith -Extendedrights "Send As" Added permissions to receive mail. Add-PublicFolderClientPermission -identity "\PublicFolder" -User Anonymous -AccessRights CreateItems Set Hidden from address lists false: Enable-MailPublicFolder -Identity [...] read more
I've been trying to publish a C# ClickOnce application for a school project, but after clearing up all the dependency issues with libraries, the application will install and run once but refuse to run afterwards! I get a dialogue saying > Cannot Start Application, Contact Developer for Assistance error dialog [...] read more
I've tried the following code import os os.system('w32tm /resync') But the result was The following error occurred: The service has not been started. (0x80070426) I'm pretty sure the time service was started on a prior run by itself so this was odd - maybe it doesn't automatically run in-between restarts [...] read more
This is on Synapse Analytics Server less Pool >> Every day morning gives problem in reading data from External Table. I have a external table created on Synapse Analytics Pool and every day morning - for the first time , when I do a select * from external table - [...] read more
I need to update Azure CLI on a machine I don't administer but where I can run scripts remotely and thus I basically have CLI access. When using the recommended PowerShell script to install Azure CLI, modified so that is does not hang inside Invoke-WebRequest and so that it logs [...] read more
Web site had been running normally on Windows IIS 10 and .net 3.5 until the web site root directory was shared and was then mounted on Ubuntu via: $ sudo mount -t cifs -o username=,password= //IP/fis /mnt/share Error Code: 0x80070005 Config Error: Cannot read configuration file due to insufficient permissions [...] read more
This is my first time trying to connect an application to an Active Directory. I want to add a user to Active Directory from my C# console application, however I am getting an HResult=0x80070005 Access Denied error which I believe is because I need to pass in the Domain Admin [...] read more
When opening a WPF window with a WebView2 component from a COM Office addin the following error occurs during a call to EnsureCoreWebView2Async(null). The Office application window is set as owner of the new WPF window. System.UnauthorizedAccessException: 'Access denied (Exception HRESULT: 0x80070005(E_ACCESSDENIED))' Interestingly, when calling the same window from a [...] read more
I am trying to Install windows security patches on a remote machine using powershell remoting. This is the function i am using to Update windows <# .SYNOPSIS This functiion will automatically install all avaialable windows updates on a device and will automatically reboot if needed, after reboot, windows updates will [...] read more
I have UWP application running at kiosk mode in Tablet with Window 10. I would like to restart Tablet from my app. My installed UWP SDK version is - 10.0.18362.0. So I added into manifest: <Package xmlns="http://schemas.microsoft.com/appx/manifest/foundation/windows10" xmlns:mp="http://schemas.microsoft.com/appx/2014/phone/manifest" xmlns:uap="http://schemas.microsoft.com/appx/manifest/uap/windows10" xmlns:iot="http://schemas.microsoft.com/appx/manifest/iot/windows10" IgnorableNamespaces="uap mp iot"> <Capabilities> <Capability Name="internetClient" /> <!-- Add the [...] read more
When using following powershell script which creates a scheduled task to delete another scheduled task, I am confronted with an error (access denied: 0x80070005). When I manually define the task and execute it, it works fine. # Prep task 2 for taskscheduler > delete task 1 after reboot if not [...] read more
I created a REST application to IIS in C# which is using an application as a reference (COM+). This application is running in administrator privilage (run as administrator) and my REST application is running on IIS. If I try to use the REST application I always get an error message: [...] read more
I'm getting above error when trying to reset password of some users. This error does not happen for all users but only for some users. Code snippet PrincipalContext principalContext = null; try { principalContext = new PrincipalContext(ContextType.Domain, DomainName, ServiceAC, ServicePWD); } catch (Exception e) { **code omitted** } UserPrincipal usr [...] read more
I want to run a query (for example CIM_Memory) on a remote computer, in that case it's a virtual machine. I use this code in Powershell: Get-WmiObject CIM_Memory -ComputerName IPADDRESS -Credential USERNAME Of course with an actual IP and Username. RemoteAdmin is enabled on both OS (both Win7). I'm getting [...] read more
I am creating a Windows 10 application that works with files. For the GUI I am using UWP (C#) and for the file processing I want to use the C language (Visual Studio 2019). I have tried these solutions (none of them worked): 1. C program created with Windows Desktop [...] read more
I am attempting to create and use an oracle DB. Was able to create the DB using sql plus however when I attempt to connect to it via sqldeveloper I get the following error Status : Failure -Test failed: IO Error: The Network Adapter could not establish the connection When [...] read more
After a recent Windows update, we are unable to access our SQL report server (http://localhost/reports or http://machine-name/reportserver). We are getting internal server error 500. I went through the logs and this is the error being given: Exception: System.Web.HttpException Message: Could not load file or assembly 'App_global.asax.9ksvxw40, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null' or [...] read more
I have simple custom timer job that add item to simple list (only Title column) , when debugging OWSTIMER ,I got this error [ Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) ] when I was trying to access any thing from SPWeb object I spent approx. 3 days googling [...] read more
error 0x80070005 "Access is denied.". This occurs when loading a package and the file cannot be opened or loaded correctly into the XML document. This can be the result of specifying an incorrect file name when calling LoadPackage or the specified XML file has an incorrect format. End Error Could [...] read more
I have to deploy flask app on IIS server. configured the handler settings and also configured the fastcgi module settings for IIS server as given in the following tutorial https://medium.com/@rajesh.r6r/deploying-a-python-flask-rest-api-on-iis-d8d9ebf886e9 and https://medium.com/@bilalbayasut/deploying-python-web-app-flask-in-windows-server-iis-using-fastcgi-6c1873ae0ad8 I configured all the settings except url rewrite settings. I don't know how to configure it. When I [...] read more
I am trying to use Windows.UI.Composition API out of a WPF project. This seems to be working in https://github.com/microsoft/Windows.UI.Composition-Win32-Samples/tree/master/dotnet/WPF/ScreenCapture However using it in a fresh project throws exception: System.UnauthorizedAccessException HResult=0x80070005 Message=Access is denied. Access is denied. Source=Windows.UI StackTrace: at Windows.UI.Composition.Compositor..ctor() at CaptureMonkey.MainWindow.MainWindow_Loaded(Object sender, RoutedEventArgs e) in C:\Users\max\source\repos\CaptureMonkey\CaptureMonkey\MainWindow.xaml.cs:line 79 at System.Windows.RoutedEventHandlerInfo.InvokeHandler(Object [...] read more
I've been search on this question for hours and I've come up against a brick wall ... I have an application up and running on my localhost on a VM and actually, it's working but when I try and log in to the application I get the following server error [...] read more
I'm trying to capture all HTML elements that match a specific string to run through a foreach loop. The first iteration works as intended, but when it hits the foreach the second time I get an access denied error (0x80070005). When I output the variable, its a System._ComObject, but each [...] read more
I want to make an MVC API application that can add / delete rules in the server's firewall. The written code is functional (I use NetFwTypeLib) - I tested it in a winform application launched as an administrator. If I try to do a GET to the API that creates [...] read more
Environment: IIS, .net CORE ASP.net web API, ProvideX.Script COM object (Sage 100/ MAS90 2018 v4.5), Server 2012 R2. Starting with the workaround first: so far my workaround has been to allow my IIS identity pool ID full access to the DCOM computer properties. This is not a good long term [...] read more
I try to run a Job in Jenkins that executes a Python script that lists and exports my VirtualBox virtual machines, using the command-line tool vboxmanage, into a Windows machine. So, I created a Jenkins agent, and installed it as Windows service and changed the service logon credentials to be [...] read more
I've been trying to write this speech recognition app for a college project. I am learning C# on my self and I'm pretty new to it. I got this error when i tried to build the application, I got the following error: > System.UnauthorizedAccessException HResult=0x80070005 > Message=Access is denied. (Exception [...] read more
I have a problem with simple code as below. I have a loop through span tag on page xxx.pl. During search through second loop i have to navigate to another url in third loop (on same server and same catalog) xxx.pl/yyy and back to previous url xxx.pl. After that i [...] read more
In windows I have created task scheduler with trigger "At system startup". Now I'm trying to update the taskDefinition using task.RegisterChanges(); It's giving me this exception Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) The scheduler was created using Admin account and I'm using the same account to update the [...] read more
I am making a custom SaveFileDialog. Here is a directory: C:\Windows\System32\0409 It is readable but unwritable. I usually use this way to get to know whether it is readable: foreach (string i in Directory.GetDirectories(@"C:\Windows\System32\", "*", new EnumerationOptions { IgnoreInaccessible = true })) { //// } However, this way can't get [...] read more
Using 'Windows Kits' 'Inspect.exe' I am trying to inspect the WPF application but I am unable to find the controls, I am getting message like: "Cannot get object from point: [Error: FromPoint: hr=0x80070005 - Access is denied.]" read more
My Audio Service refuses to function properly. I have tried so many different solutions I can't even recall all of them. Here's how it started; I got home from work one day to see my computer has no video signal but is turned on and receiving input from my mouse/keyboard. [...] read more
Is there any way I can connect to sharepoint list for sharepoint online site? It shows bellow error while connecting. enter image description here [https://i.stack.imgur.com/lFBkh.png] read more
I am able to call an exe when using FileKey and ExeCommand in my tag but when I use WixQuietExec64 it fails with an error that is symptomatic of not calling the exe with elevated privileges MSI (s) (DC:34) [14:40:06:767]: Executing op: ActionStart(Name=InstallDebian,,) MSI (s) (DC:34) [14:40:06:830]: Executing op: CustomActionSchedule(Action=InstallDebian,ActionType=3073,Source=BinaryData,Target=WixQuietExec64,CustomActionData="C:\Program [...] read more
I'm attempting to run a package from command line with plans to schedule the run via batch. I enter the following dtexec /Project "C:\Users\XXXXXX\Documents\Batch\ScheduleRun\ScheduledRun\ScheduledRun" /Package "batchrun.dtsx" generates this error Started: 11:18:01 AM Could not load project "C:\Users\XXXXXX\Documents\Batch\ScheduleRun\ScheduledRun\ScheduledRun" because of error 0x80070005. Description: Access to the path 'C:\Users\XXXXXX\Documents\Batch\ScheduleRun\ScheduledRun\ScheduledRun' is denied. Source: [...] read more
I have a script that goes though a list of servers and checks to see if the DNS entries are set to a specific value. I am set an environment variable when I make the WMI call to catch any errors and both write them to screen and to a [...] read more
After attempting to configure IIS as a replacement for IIS Express, both stopped working and delivered the above error on deploying the .NET Core project in VS2019. According to IIS anonymous authentication is enabled, I also entered explicit user name and password as well as giving my user all rights [...] read more
I want to create a Task via Powershell, but i get this Error: Register-ScheduledTask : Access Denied In C:\Users\4TL4S\Documents\Coding\Bot_Dev\juri_exc\ui\setup_bot_task.ps1:8 Zeichen:1 * Register-ScheduledTask "Bot_Activation" -InputObject $Task * * CategoryInfo : PermissionDenied: (PS_ScheduledTask:Root/Microsoft/...S_ScheduledTask) [Register-ScheduledTask], CimException * FullyQualifiedErrorId : HRESULT 0x80070005,Register-ScheduledTask I think it has todo with that "Administrator" hasnt got enough rights...How [...] read more
When I try to install Python 3.8 in a Windows Server, I receive this error message: enter image description here [https://i.stack.imgur.com/6dIXv.png] The logs below say something related to key registry, I not sure but it's about permission to write in key registry. How can I solve it? Maybe changing Python [...] read more
I know it might be a duplicate question but I tried almost all the steps that were discussed earlier, but no luck. I have also tried this link which is similar to my case and completed all the instruction, but again failed to resolve the error : Retrieving the COM [...] read more
I need to be able to re name and then join a domain, multiple PC's from a CSV file. Content of CSV is for example :- oldpcname1,newpcname1 oldpcname2,newpcname2 etc.. The code is as follows :- $File = "C:\computer_names.csv" $domain = "MBTEST.LOCAL" $password = "password" | ConvertTo-SecureString -asPlainText -Force $username = [...] read more
AN ERROR ABOUT APP DATA ACCESS FAILED I used Unity3d(2017.4.1 f1) to export my app to VS2017,but I found that a .xml document(in the directory /Asset/.xml) wasn't exported.So I copied the xml document to /app/data.Then I debugged again,the error happened,it told me I didn't have a authorization to access the [...] read more
I'm trying to deploy an Azure Function app (.NET Core, functions v3) with MSDeploy using an ARM template, and I keep getting this error almost every time. This only succeeds occasionally. My function app has 5 functions that are timer-based, running every second. I'm currently using deployment slots, and I [...] read more
I've set up a pretty basic API with .NET Entity framwework (basic weather forecast template). At the beginning everything was fine, the IIS server starts fine, but once I change the applicationUrl in the Json startup file, I get Failed to register URL "http://mywebsite:49892/" for site "API" application "/". Error [...] read more
I have a Web API that runs in an IIS application pool with elevated service account. This service account has privileges to set or change user passwords within specific OUs in Active Directory. The API service account is able to set user passwords in OU1 but is not able to [...] read more
I am working in a Visual Studio Extension that take the project in the Solution that the user have clicked, I can take the project, add files from strings in this project, but when the DTE finishes to adding the files and all work is finished and the user try [...] read more
While trying to run Azure Pipeline for Loadrunner Professional Tests, got below error Retrieving the COM class factory for component with CLSID {E933439A-81A1-11D4-8EEE-0050DA6171E8} failed due to the following error:80070005 Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)). 1. Somehow figured out that this CLSID is associated with wlrun.LrEngine, but i [...] read more
Opposing to previous assumptions our partner still uses opc da on a Siemens S7-319F 3PN/DP Now I'm trying to connect to said opc da server on a remote machine. If I use OPC Scout V10 everything looks fine - but when I try to connect using Siemens' COMDA client or [...] read more
In our software, we listen to windows defender events and shoot off software specific alerts based on them. We expected to always see 1000-1001 pairings 1000: scan started 1001: scan completed What they've done for one test is they have a virus on a cd to trigger the scan to [...] read more
We are trying to add a host to SCVMM 2012. But the scvmm server can't access the Admin$ share of the host. And it throws the following error and warning: Error (415) Agent installation failed copying C:\Program Files\Microsoft System Center 2012\Virtual Machine Manager\agents\I386\3.0.6005.0\msiInstaller.exe to \Host.FQDN\ADMIN$\msiInstaller.exe. The network path was not [...] read more
I'm working on a messaging extension and am trying to get the email address of the user who is using the app. This app is being used internally and I'm using the email address to query Active Directory for the user's username. When attempting to use the GetConversationMembersAsync method I [...] read more
I'm currently receiving a permissions error when exporting a HyperV VM to an SMB share that is hosted on FreeNAS. This piece of Microsoft documentation explains that: > When you export a virtual machine in Hyper-V manager, it is the System account > of the Hyper-V host that executes the [...] read more
We have a group policy set up, it's a computer policy that moves a file from a network location to the standard Windows wallpaper location C:\Windows\Web\wallpaper. A user policy then sets the desktop background to that file. It works for all but 1 computer, which is getting a black background [...] read more
I own an external HDD on which I installed a game from the Windows App store. My laptop got reset at some point and now the Windows App store wont recognize that it is installed there. I have tried to Manually Register the package via an administrator Powershell prompt, but [...] read more
I've tried to update Win10 many times but it keeps failing. I've run the manual install and it gives me a message that the update was not installed but no reason. I've run windows update and rebooted many times. I have plenty of disk space and have run sfc, dism. [...] read more
I've been trying to activate my office 2013 via my kms server manually and I get: C:\Program Files\Microsoft Office\Office15>cscript OSPP.VBS /act Microsoft (R) Windows Script Host Version 5.812 Copyright (C) Microsoft Corporation. All rights reserved. ---Processing-------------------------- --------------------------------------- Installed product key detected - attempting to activate the following product: SKU ID: [...] read more
I'm not able to open an appliance I have imported to Virtual Box. I'm getting this error: > enter image description here [https://i.stack.imgur.com/3SqvR.png] I already tried: * Disable HyperV * Disable Windows Defender Extension Pack installed What else could I try? -------------------------------------------------------------------------------- Here are the logs 00:00:39.975743 VirtualBox VM 6.1.12 [...] read more
problem: I am running ilasm /dll /key="C:\m\mykey.snk" "C:\m\myapp.il" /output="C:\m\myapp.dll" as normal user (called user) on my machine and it results in Could not create output file, error code=0x80070005. Even if it should not be required i have executed the command from the folder C:\m. If i run this command in [...] read more
I am switching to VirtualBox from VMware Player because I want more network options. VMware_Player has been working fine with my 64bit isos. I uninstalled VMware Player. The 64bit options show up in VirtualBox when I boot into safe mode but don't show up when I boot normally. When I [...] read more
My W10 computer is unable to sync time (sync failed). I found that the time service is not running. When I try to start it, I get "Access is denied" - even in an Administrator shell: C:\WINDOWS\system32>net start w32time System error 5 has occurred. Access is denied. There are many [...] read more
On my server I can start the .exe and see my WebSite from localhost:5000 whitout any problem. But it's not the case from the internet. When i check server log I see this : Application '/LM/W3SVC/10/ROOT' with physical root 'C:\inetpub\wwwroot...\httpdocs\' failed to start process with commandline 'C:\inetpub\wwwroot...\httpdocs\MyAppli.exe ' at stage [...] read more
I unhide AppData folder and change ownership settings and Windows fail in install/update apps from Store. Error: 0x80070005 I can't install programs from EXE MSI setup because they cant create shortcut in start menu. And Windows Update fails most of times. How to fix these changes? Version 1903 Build 18362.267 read more
Recently, we've tried to add a library PDFJS to our Microsoft Office Add-in. There are files included pdf.js and pdf.worker.js into Scripts/PDFjs folder. // Home.html ... <script src="Scripts/PDFjs/pdf.js" type="text/javascript"></script> ... -------------------------------------------------------------------------------- // Home.js Office.initialize = function (reason) { $(document).ready(function () { pdfjsLib.workerSrc = './pdf.worker.js'; }); } Visual Studio shows an [...] read more
After upgrading to Windows 10 from Windows 8.1, I keep getting error 0x80070005 whenever I try to apply an update or add a Windows feature, which is E_ACCESSDENIED. When I try to monitor with Process Monitor, I see FSCTL_SET_EXTERNAL_BACKING on some files in \Windows\Servicing\Sessions\*.xml is failing with STATUS_ACCESS_DENIED, which is [...] read more
I am using windows 8.1.I have quick heal antivirus pro Installed. MY ProblemWhen i try to install Free Download Maneger(FDM) I have the error like following. First Error IPresistFile:Save Failed Code 0x80070005 appears During the installation This is not real screenshot i have taken it from the Internet,But error words [...] read more
Magicka started crashing on startup. While trying to fix this, I decided to update DirectX. When I run dxwebsetup, it identifies missing "DirectX Runtime Optional Components" and attempts to install, but errors and tells me to check two log files. Any help would be appreciated. Error: > An internal system [...] read more
When using sfc /scannow on my Windows 10 Pro 64bit system I am geting error "windows resource protection could not run the requested operation" This is from the CBS log: > 2017-02-01 10:29:29, Info CBS TiWorker: Client requests SFP repair object. > 2017-02-01 10:29:29, Info > CSI 00000002@2017/2/1:09:29:29.390 WcpInitialize (wcp.dll [...] read more
Malwarebytes Antivirus was added to the computer and it detected a problem. I rebooted using the Windows button rather than thru Malwarebytes. Windows rebooted to Windows Defender which runs, gives an error Stopcode 0xc000021a and then reboots and repeats the cycle over and over. I used Dell Windows 10 disk [...] read more
The error log generated after the installation when i try to open the application reads : PLATFORM VERSION INFO Windows : 6.1.7601.65536 (Win32NT) Common Language Runtime : 4.0.30319.17929 System.Deployment.dll : 4.0.30319.17929 built by: FX45RTMREL clr.dll : 4.0.30319.17929 built by: FX45RTMREL dfdll.dll : 4.0.30319.17929 built by: FX45RTMREL dfshim.dll : 4.0.41209.0 (Main.041209-0000) [...] read more
Installing OpenOffice 4.1.2 raises the error 1935. (Visual C++ 2008 redistributable failed to install). However, the installation completes and OpenOffice works normally. Nonetheless, I decided to investigate launching vcredist_x86.exe manually. Installation log reports these lines: > MSI (s) (80:E0) [18:34:33:070]: Executing op: > SetTargetFolder(Folder=c:\Windows\winsxs\x86_microsoft.vc90.atl_1fc8b3b9a1e18e3b_9.0.30729.4148_none_51ca66a2bbe76806) > MSI (s) (80:E0) [18:34:33:070]: Executing [...] read more
I've searched for so many hours for a solution to this problem but haven't found a working answer. The errors I get are 0x800705b4 and 0x80070005 I recently deleted some old system files from an earlier Windows version (windows.old and another folder) and since doing so have noticed that Windows [...] read more
Really need some advice, as I don't know what to do now! I was using my computer as normal and had an Avast Anti Virus message pop up along the lines of, "Avast update restart computer?" I clicked on yes. On start up it showed a blue screen and the [...] read more
I am running an Ubuntu VM guest OS in headless mode on a Windows 7 host. I wrote a batch script which uses VBoxManage to start or save the state of the VM based on the passed in argument. I can start the VM just fine by putting a shortcut [...] read more
There are many people with this problem on a MS website. In my case and in many other cases it is not solvable by the normal techniques for resolving windows update and setup issues. I'll post the link to the MS website discussion in my next post. If possible I [...] read more
I have a webserver on localhost, which I use for issue tracking, testing, etc... It has an error now (after many years of proper working) HTTP-hiba: 500.19 - Internal Server Error A kért laphoz való hozzáférés sikertelen, mert a laphoz tartozó konfigurációs adatok érvénytelenek. Részletes hibaadatok Modul IIS Web Core [...] read more
I have a 64-bit version of windows 8.1 pro running on a modern machine. virtualization is enable is BIOS. I cannot install Hyper-V. Windows goes through the well-know routine of 1)"adding features"; 2)"cannot add features" 3)"undoing changes". This seems like a common problem, but since its a Windows system issue, [...] read more
I have been using Google Chrome for some time. It usually updates to the latest version when any new update is released by Google. But now I am getting the following error: enter image description here [https://i.stack.imgur.com/16SoK.png] And I am regularly getting error popup saying that: enter image description here [...] read more
The following oddity has just occurred: one of our users has worked for many hours on a Word document, saving continuously. The document was open all the time, and she didn't close it until it was done. This morning when she opened it, it only had the first few changes [...] read more
I just tried upgrading VirtualBox from 3.1.something to 4.0.6 on my Windows Vista (ultimate, 64-bit) host. I did the installation under an Administrator account. Now I'm trying to use it from a different account, and I get: > Failed to create the VirtualBox COM object. The application will now > [...] read more
I've written a really simple Command Line app to check a private server for updated files. The app works fine, it's suposed to write a list of out-of-date files from the local installation and then download the updated ones via FTP. As I said, it works fine UNTIL it has [...] read more
THIS IS THE QUESTION AND SOLUTION.... The problem is that i can't install an app, each time i try, i get the error 0x80070005 Searching an answer in "windows answers" is like cut your head if you have a broken finger. So i have found a solution, it is a [...] read more
When I try this with messages that are opened from a .msg file on disk and contain attachments, IMAPIProp::CopyTo returns 0x80070005 (MAPI_E_NO_ACCESS). read more
A Windows SyncToy logfile contains several thousand lines of the form: xxx ... C:\zzz. xxx ... and xxx ... zzz\. xxx ... where xxx can be a string including any printable character including spaces and/or whitespace and zzz can be a string including any printable character including spaces, backslashes, numerics, [...] read more
I am using a SCCM 2012 task sequence to deploy Windows 7 for Dell Precision T5810. Using the "Apply Driver" step in WinPE (64bit): with WMI filtering for model filtering to install a driver package. Currently failing to apply drivers - I'm not sure where to go from the DISM [...] read more
There were problems installing some updates, but we'll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: Feature update to Windows 10, version 1607 - Error 0x80070005 NVIDIA - Display - 12/29/2016 12:00:00 AM - 21.21.13.7653 - [...] read more
Executed as user: NT Service\SQLSERVERAGENT. Microsoft (R) SQL Server Execute Package Utility Version 11.0.2100.60 for 64-bit Copyright (C) Microsoft Corporation. All rights reserved. Started: 16:34:44 Error: 2015-10-15 16:34:45.04 Code: 0xC0011007 Source: {068F0DFC-339B-4E9B-BFC8-EA73BF6AE23B} Description: Unable to load the package as XML because of package does not have a valid XML format. [...] read more