Forum Widgets
Latest Discussions
Getting Prompted for Username and Password on Internal Web Site, HTTP Error 401.2 - Unauthorized.
I have an internal web site that uses Windows Authentication. This works perfectly on my Microsoft Windows Server 2022 Datacenter Azure Edition which is my developer server. When I tried to put this site out on our test Microsoft Windows Server 2022 Datacenter Azure Edition, with the exact same setup, I get prompted for my Username and Password. It does not matter what I have tried to enter for Username and Password, nothing is ever accepted and it I hit cancel, I get the dreaded HTTP Error 401.2 - Unauthorized. I don't understand why this would work on 1 server, but not the other server. HTTP Error 401.2 - Unauthorized You are not authorized to view this page due to invalid authentication headers.Raymond_PietrzakFeb 20, 2025Copper Contributor182Views0likes0CommentsTrouble Setting Up Windows Server on My New Aura Edition AI PC
Hey everyone, I recently got an Aura Edition https://www.lenovo.com/ca/en/lenovoauraedition/, and I’m super excited about the AI features. However, I’m running into issues trying to set up Windows Server on it. The installation isn’t going as smoothly as I expected. Also, I’m wondering if the AI hardware or features could be causing conflicts with the setup. Has anyone else set up Windows Server on a similar AI-powered PC? I’d appreciate any tips or advice on what to look out for or how to optimize the configuration. Regards, CharliecharliekatherineOct 04, 2024Copper Contributor173Views0likes0CommentsBad Request - Request Too Long HTTP Error 400. The size of the request headers is too long.
I am moving a web site from Windows Server 2012 to Windows Server 2022. When I open my web site, I receive the error message: Bad Request - Request Too Long HTTP Error 400. The size of the request headers is too long. When I inspected the headers, they were only 640 characters long. I have cleared my cache and flushed DNS to no avail. This error doesn't happen all the time, just sporadically. How do I fix this so that it doesn't happen.Raymond_PietrzakJul 25, 2024Copper Contributor323Views0likes0Commentsntel Ethernet controller(3) I 225V issue
Hello, I was having 2019 standard server, running, Added one SSD and Installed fresh new standard 2022 server. After installation, drivers are missing so exported from running 2019 server. All drivers are installed except one Network card. This card is Intel Ethernet controller(3) I 225V.. I tried all possible but did not find any luck. This 2022 server is not yet keyed, but I guess its good for next 180 days. what could be reason ? Any help ?kpiseJun 17, 2024Copper Contributor286Views0likes0CommentsMicrosoft RD client Android app url scheme is not working
I've been using a legacy URL scheme in my Android app to open the RD Client app via a deep link and initiate an automatic connection with a remote server. It used to work fine, but now it's no longer functioning. Is there a change in the URL scheme that hasn't been documented, or perhaps an update that affects this functionality? Can someone guide me on this issue?asad_baigJun 11, 2024Copper Contributor249Views0likes0CommentsAzure VM Agent Status not ready
I have created a red hat openshift private cluster but the VMS are stuck in the state of "agent status not ready." I have followed these troubleshooting steps: Linux Virtual Machine Agent Status "Not Ready" - Microsoft Community Hub However, all of them seem to point to trying to check and see what is on the VM itself. I am unable to do this because I can't SSH into the machine. Has anyone else ran into this issue and been able to resolve it? I am deploying it via CLI as I was not able to do it via GUI for some reason. This is my script: #az login az account set --name "accountnamehidden" #az provider register -n Microsoft.RedHatOpenShift --wait #az provider register -n Microsoft.Compute --wait #az provider register -n Microsoft.Storage --wait #az provider register -n Microsoft.Authorization --wait $LOCATION= "eastus" # the location of your cluster $RESOURCEGROUP= "sample-rg" # the name of the resource group where you want to create your cluster $CLUSTER= "K8sDev1test" # the name of your cluster $arovnet= "sample-vnet" $mastersubnet = "k8sDev1-master-ue-snet" $workersubnet = "k8sDev1-worker-ue-snet" az aro create --resource-group "samplerg" --vnet-resource-group "sample-vnet-rg" --name $CLUSTER --vnet $arovnet --master-subnet "k8sDev1-master-ue-snet" --worker-subnet "k8sDev1-worker-ue-snet" --apiserver-visibility Private --ingress-visibility Private --fips true --outbound-type UserDefinedRouting --client-id hidden --client-secret hiddendullinternet_1989May 06, 2024Copper Contributor500Views0likes0Comments- 405Views0likes0Comments
HLK Windows Touch Reporting Rate Test
Hello, I have a question regarding the HLK Test. I understand that in the Touch Reporting Rate Test, if the touch reporting rate is higher than the refresh rate, the test will pass. However, I recently encountered a situation where the test failed on a laptop with VRR enabled. Is it possible that the HLK Stdio is not receiving real-time refresh rate data due to the VRR feature? Should I disable VRR when conducting the Touch Reporting Rate Test?HeonLeeApr 17, 2024Copper Contributor365Views0likes0CommentsIntegrate with SharePoint online API through console application which hosted on onprem windows VM
I have the below console application which is hosted on a local windows VM, which integrates with SharePoint Online. the console application authenticates with SharePoint using ClientId, TenantID & Certificate, as follow:- using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; using PnP.Core.Auth; using PnP.Core.Model.SharePoint; using PnP.Core.Model.Teams; using PnP.Core.QueryModel; using PnP.Core.Services; using PnP.Core.Services.Builder.Configuration; using System; using System.Collections; using System.Collections.Generic; using System.Globalization; using System.Runtime.CompilerServices; using System.Security.Cryptography.X509Certificates; using static Microsoft.ApplicationInsights.MetricDimensionNames.TelemetryContext; using static System.Net.Mime.MediaTypeNames; namespace ConsoleApp4 { internal class Program { static async Task Main(string[] args) { var tenantId = "b***c"; var clientId = "7*****9"; var certificatePath = @"c:\CERT\SPDashBoardIntegration.pfx"; var certificatePassword = "***"; // Initialize a new service collection var serviceCollection = new ServiceCollection(); // Load the certificate var certificate = new X509Certificate2(certificatePath, certificatePassword, X509KeyStorageFlags.Exportable); // Configure logging serviceCollection.AddLogging(builder => { builder.AddConsole(); }); // Add and configure PnP Core SDK serviceCollection.AddPnPCore(options => { options.PnPContext.GraphFirst = true; // Set true if you prefer to use Graph over CSOM when possible // options.HttpRequests.UserAgent = "ISV|Contoso|ProductX"; options.Sites.Add("SiteToWorkWith", new PnPCoreSiteOptions { SiteUrl = "https://********.sharepoint.com/sites/********-******", AuthenticationProvider = new X509CertificateAuthenticationProvider(clientId, tenantId, certificate) }); }); Now my question is if this is a secure approach? I mean when the VM sends the ClientID, Client Secret & Certificate to SharePoint Online, will that info be secure on the network? i mean will the console application communicate with SharePoint in a secure way when it sends the credentials (ClientID, Client Secret & Certificate)? If not, then how we can secure this? Thanksjohnjohn-PeterMar 29, 2024Iron Contributor312Views0likes0Comments- gaurav90Mar 04, 2024Copper Contributor250Views0likes0Comments
Resources
Tags
- Windows Server86 Topics
- Active Directory23 Topics
- networking22 Topics
- security15 Topics
- powershell13 Topics
- storage12 Topics
- management12 Topics
- Compute7 Topics
- containers7 Topics
- Hyper-V6 Topics