I'm trying to use Task Scheduler to run a Ruby script every night. When I try to run the script, I get error 0x8007010B which seems to be Directory Name Invalid. The directory I'm starting in is a mapped network drive. Performing the equivalent action from the command line works [...] read more
I'm running IIS7 on Windows Server 2008 with Plesk 10. I have website under plesk and a site not under plesk and only on IIS. The website under plesk successfully runs php files but the other website gives error: > HTTP Error 500.0 - Internal Server > Error An unknown [...] read more
In the following period I have to migrate the AD over to 2008 schema level. I currently have a x64 Windows 2008 R2 domain controller and one x32 Windows Server 2003 domain controller. The x32 server is a old machine which doesn't even support the upgrade to 2008. I have [...] read more
My build server suddenly stopped working. After I examined log files I found monster error message: error MSB4018: The "ResolveComReference" task failed unexpectedly. error MSB4018: System.ApplicationException: The directory name is invalid. (Exception from HRESULT: 0x8007010B) error MSB4018: error MSB4018: Server stack trace: error MSB4018: at System.Reflection.Assembly.nDefineVersionInfoResource(String filename, String title, String [...] read more
I have a Windows 7 laptop. I downloaded PHP 5.2.8. I downloaded Apache 2.2. I ran the MSI for PHP install, which i know is not recommended but I tried multiple times the normal route without success. I have apache running and it shows "Running all apache services". When i [...] read more
I've tried to install anything past .NET Framework 4.5 on a Windows 8.1 desktop, and can't seem to succeed. The first attempt was through Windows Update, and it's pushed every update through except for KB3045563 with failure code 0x8007010B (it's the .NET Framework update) I've tried repairing the current 4.5.2 [...] read more
For the last long while Windows Update has been failing on 99% of updates and (certain) software won't install. I have seen the error 0x8007010B in both cases. Why is this happening? How can it be fixed? I've searched all over for answers but I haven't gotten anywhere. I am [...] read more
I'm logged in via Remote Desktop Connection as a domain user on a Windows Server 2019 (OS Build 17763.1432). I tried to install an .exe file but directly getting the error: "0x8007010b - GetTempFileNameW: The directory name is invalid." Running the .exe as administrator doesn't help. The .exe is also [...] read more
I have a Windows Server 2012 R2 server running a scheduled task with three actions, each running PowerShell scripts: actions [https://i.stack.imgur.com/DDgQR.png] Each of these actions "starts in" the relevant (and correct) directory: single action [https://i.stack.imgur.com/8nXVh.png] Originally, the third action - ApplyABPs - was set up in exactly the same way [...] read more
I try to get a Flask application running on an IIS on windows. The reason is to get single-sign-on with windows authentication done using the IIS mechanisms. I got it running on my development machine. But it doesn't work in the actual production environment. I get a error 500 for [...] read more
I am trying to deploy Flask app in IIS. But I get the 500 FastCGI error. error code:"0x8007010b" Here are the steps I've taken: OS:windows10 Python version:3.6.5 1.install url rewrite2.0 2.pip install wfastcgi 3.Enable wfastcgi 4.create HelloAPI.py 5.create web.config HelloAPI.py from flask import Flask app=Flask(__name__) @app.route('/',methods=['GET']) def index(): return "Hello [...] read more
Just deploy to IIS server my .NET Core 2.1 webapi. Got error 502.5 HTTP Error 502.5 - Process Failure from the URL http://localhost/api. Open the Event Viewer, it is IIS AspNetCore Module eror. Application 'MACHINE/WEBROOT/APPHOST/DEFAULT WEB SITE/API' with physical root 'C:\apps\api\' failed to start process with commandline 'dotnet .\Webapi.dll', ErrorCode [...] read more
Problem: I want to get file size, but file does not have extension example testfile.txt is normal file, here is example(without quotes) "testfile", also I have files which dont have extension but have spaces in name example(without quotes) "my test file", using File.Exist it reads as Folder, current function I [...] read more
I have a folder named 'prn' that was created on Windows via a cloud sync service. I'm no longer a subscriber to the service and have tried to remove the folder. The name is probably clashing with a Windows reserved term, I guess for the print queue. A command prompt [...] read more
I'm relatively new when it comes to network administration, but I have put in many hours of research and effort before asking this question. I know my question is similar to many others, but I don't believe it is a duplicate. My apologies if I'm mistaken. Basic setup/problem: I'm trying [...] read more
I have a few applications that I am trying to deploy with SCCM 2012 but the installations are failing through the application catalog. So what I have for the deployment type is a script installer. I have "cmd.exe" (Without quotations) in the Installation program field and "Installer.bat" in the installation [...] read more
I'm facing an issue with my Django Application Deployment. I have followed several tutorials ( lastly this one : https://www.youtube.com/watch?v=APCQ15YqqQ0) to help me deploy my application, I don't understand why my Handler is not working. Here is my web.config file : <?xml version="1.0" encoding="utf-8"?> <configuration> <system.webServer> <handlers> <add name="Python FastCGI" [...] read more
My script is fairly simple. Just clearing out some AD group. Get-ADGroupMember "ADGroup1" | ForEach-Object {Remove-ADGroupMember "ADGroup1" $_ -Confirm:$false} Get-ADGroupMember "ADGroup2" | ForEach-Object {Remove-ADGroupMember "ADGroup2" $_ -Confirm:$false} Get-ADGroupMember "ADGroup3" | ForEach-Object {Remove-ADGroupMember "ADGroup3" $_ -Confirm:$false} My Actions are also pretty straight forward. And I do have run with highest privileges [...] 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'm trying to write a command that allows me to open a new Git Bash instance at the current working directory in Windows Terminal Preview. So far I've tried the following keybind in my settings.json: // Press Ctrl+Shift+N to open a new tab on current working directory { "command": { [...] read more
I'm posting this at the risk of being down voted... but I really need help on this. I've been scouring SO and R-Bloggers trying to find out why I can't get Task Scheduler to execute my R Script. I've looked at Scheduling R Script as well as How to run [...] read more
The webpage Im trying to download is located at: bit.ly/nlhtml I want to download the above webpage using an in-built function in cmd; i.e, no wget or curl etc... The code I tried is: bitsadmin /transfer debjob /download /priority normal "bit.ly/nlhtml" "C:\bit\nl.html" The above webpage should be saved in html [...] read more
I want to disable auto-updating on Windows 10. I found out that disabling the service "WINDOWS UPDATE" will do this. It did for some time, but when ever i restart my system it enables itself again and again. So I created batch file that disables it. @echo off NET stop [...] read more
I have a (VB) web site application that calls an ASMX service via an AJAX control (using AjaxControlToolkit) to pre-fill a name search. However, that call always returns an internal server error 500.19 with the error "There is a problem with the resource you are looking for, and it cannot [...] read more
I am trying to install wordpress on IIS but I cant seem to make it work. I keep receiving the following error: Error Summary > HTTP Error 500.0 - Internal Server Error > > An unknown FastCGI error occured > > Detailed Error Information > > Module: FastCgiModule > > [...] read more
The Goal I would like only a certain group of users (who are in an Active Directory group composed of users from two domains) to be able to execute a web script, in http://www.site.org/protected, after being challenged for authentication. The Setup Windows 2008, IIS 7. User Account Access has been [...] read more