Catatan

Menunjukkan catatan yang berlabel Windows Server

IIS and SQL Server CPU Spike

Imej
A sudden power loss is a "brute force" shutdown. It often causes high CPU and memory spikes upon reboot because the system is struggling to recover from an unclean state . Why this happened (and how to prevent it) The image above illustrates how the Web Server and Database compete for the same system resources. Based on your screenshot, here is what likely triggered the spike: The "Cold Start" Problem: When you start IIS, the AIMTEAM pool likely tries to load a massive amount of data into that 4.8 GB memory space. Database Stress: SQL Server hits 95% CPU because it is frantically trying to serve all those initial data requests to IIS at once. Refined Execution Plan Stop Services (The Correct Order): First: Stop IIS Worker Process (or iisreset /stop in Command Prompt). This cuts off the traffic. Second: Stop your PIS Services (the application layer). Third: Stop SQL Server . Stopping SQL last ensures that any pending transactions from the web server have a c...

The program can't start because api-ms-win-crt-multibyte-l1-1-0.dll missing from your computer. Try reinstalling the program to fix this program

Imej
the program can't start because api-ms-win-crt-multibyte-l1-1-0.dll missing from your computer. Try reinstalling the program to fix this program Reference solution :  https://www.youtube.com/watch?v=tlg62wnKo_k Website:  https://www.sts-tutorial.com/download/api-ms-win-crt-multibyte-l1-1-0

How to Create a CHM or Compiled HTML Help (.CHM) File

Imej
 Ref: https://learn.microsoft.com/en-us/previous-versions/windows/desktop/htmlhelp/create-a-help-project

Install SFTP in Windows Server and Connect using C# .NET

Imej
Install & Setup SFTP Server  Video reference For Windows 11, refer link below; https://medium.com/@imtejassingh/setup-sftp-in-windows-11-8191e7c6b2b2 Connect using C# .NET Install library using NuGet -  https://github.com/sshnet/SSH.NET/ f f f f f f f f f f Video Reference

Troubleshooting root\cimv2 enabled, but DCOM not allow access denied

Imej
1) To check if WMI is enabled using Windows Management Instrumentation Tester ( wbemtest   ) Reference link :  The Solution :  201 Access denied when connecting - Namespace = root\cimv2 In order to simulate WMI response from probe to target device, run the  wbemtest  tool on probe. Remote to the probe and perform following steps: From the Windows Start menu, click  Start  >  Run . Type  wbemtest  and click  OK . Click  Connect . Type  \\TARGETIP\root\cimv2  in the  Namespace  field (where target IP of the device you are trying to add in  N-able N-central  on the probe's network). Enter the user domain\user and password. Click  Connect . The error you will get should be corrected before you can run discovery jobs. You will want to ensure that: The probe is in the same domain. The probe has admin credentials. DCOM permissions are enabled as per the  Service Displays a 205 or 201 WMI Erro...

Troubleshoot C# Error WMI

Other Alternative https://wiki.idera.com/plugins/servlet/mobile?contentId=2338650487#content/view/2338650487 Please refer this link from Chatgpt https://chat.openai.com/share/5f03de60-fe58-4d7a-b6c1-bad689fa1472

Delete service Windows 10

Imej
  Command to type : > sc delete ServiceName Refer - https://www.howtogeek.com/1294/how-to-delete-a-windows-service/#:~:text=To%20delete%20a%20service%20on,ServiceName%22%20to%20delete%20the%20service.

WMI Control Configuration for Err: Access Denied

Imej
 Cannot connect to the ManagementScope via C#. Access denied Solution from ChatGpt If you're encountering an "Access Denied" error while trying to connect to a `ManagementScope` in C#, it's likely a permissions issue. Here are some steps you can take to troubleshoot and resolve the problem: 1. **Run as Administrator:**    Ensure that your C# application is running with administrative privileges. Right-click on your executable and choose "Run as Administrator." 2. **Check User Permissions:**    Verify that the user running the C# application has the necessary permissions to access the WMI (Windows Management Instrumentation) resources on the target machine. The user might need administrative privileges or specific WMI permissions. 3. **Firewall and Antivirus:**    Disable your firewall or antivirus temporarily to see if they are causing the issue. Sometimes, security software can block WMI connections. 4. **DCOM Configuration:**    Check the D...

Can't open IIS Manager even the service is running perfectly

Imej
 Change Run Setting to Maximized Open IIS as Administrator. On the taskbar, right-click and open Properties. Go to tab Shortcut, change Run to Maximized . Apply the setting.   Done Reference :  https://serverfault.com/a/1001197 How to Move a Lost, Off-Screen Window Back to Your Desktop

Windows 10 shows Security Tab

Imej
  The Problem: The Solutions: Reference: Windows 10 Security Tab missing from file properties -  https://superuser.com/a/1522619

Cannot connect to the ManagementScope via C#. Access denied

  Rujukan https://stackoverflow.com/a/6348152 Access Denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED)) Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED) Docs Microsoft Connecting to WMI on a Remote Computer Connecting to WMI Remotely with C# Securing a Remote WMI Connection Setting up a Remote WMI Connection Troubleshooting a Remote WMI Connection

Windows Server : Install PHP and mysql

Rujukan :  A Complete Guide to Installing MySQL and PHP with IIS How to Host PHP on Windows With IIS