전체 글(271)
-
[C#.NET]여러가지 머신레벨의 시스템 정보 얻는 방법
How to find various machine-level system information with C# .NET The Environment class holds a range of properties that help you describe the system your app is running on. Here come some examples with inline comments: View all posts related to diagnostics here. dotnetcodr.com Environment 클래스에는 앱이 실행되는 시스템을 설명하는 데 도움이 되는 다양한 속성이 있습니다. 다음은 인라인 주석이 있는 몇 가지 예입니다. 내 PC는 64비트 OS이므로 true를 반환합니다. 컴퓨터 ..
2023.02.05 -
[C#.NET] 모든 WMI 클래스 속성 찾아내기
Finding all WMI class properties with .NET C# In this post we saw how to enumerate all WMI – Windows Management Intrumentation – namespaces and classes. Then in this post we saw an example of querying the system to retrieve all loc… dotnetcodr.com 이전 게시물에서 우리는 모든 WMI(Windows Management Intrumentation) 네임스페이스 및 클래스를 열거하는 방법을 살펴보았습니다. 그리고 이 게시물에서는 우리는 모든 로컬 드라이브를 검색하기 위해 시스템을 쿼리하는 예를 보았습니다: Object..
2023.02.04 -
[C#.NET] Windows performance counter 값 가져오기
Reading the value of a performance counter on Windows with C# .NET In this post we saw how to list all performance categories and the performance counters within each category. It’s equally straightforward to read the value of a performance counter. You̵… dotnetcodr.com 앞 게시물에서는 모든 성능 범주(performance category)와 각 범주 내의 performance counter를 나열하는 방법을 살펴보았습니다. performance counter의 값을 읽는 것도 똑같이 간단합니다..
2023.02.03 -
[.NET C#].NET C#에서 WMI 네임스페이스 내 모든 WMI 클래스 이름 찾기
Finding all WMI class names within a WMI namespace with .NET C# In this post we saw an example of using WMI objects such as ConnectionOptions, ObjectQuery and ManagementObjectSearcher to enumerate all local drives on a computer. Recall the SQL-like query we use… dotnetcodr.com 이 게시물에서 우리는 ConnectionOptions, ObjectQuery 및 ManagementObjectSearcher와 같은 WMI 개체를 사용하여 컴퓨터의 모든 로컬 드라이브를 열거하는 예를 보았습니다. 우..
2023.02.02 -
[C# .NET] Windows의 모든 performance counter 나열 하기
Listing all performance counters on Windows with C# .NET Performance counters in Windows can help you with finding bottlenecks in your application. There’s a long range of built-in performance counters in Windows which you can view in the Performan… dotnetcodr.com Windows의 Performance counter는 응용 프로그램의 병목 현상을 찾는 데 도움이 될 수 있습니다. Windows에는 Performance Monitor 윈도우에서 볼 수 있는 다양한 내장 Performance counte..
2023.02.01 -
IIS(인터넷 정보 서비스) 모니터링
https://www.poweradmin.com/help/pa-server-monitor-8-5/howto_monitor_iis.aspx PA Server Monitor Documentation - How to Monitor IIS This help page is for version 8.5. The latest available help is for version 9.0. How to monitor Internet Information Services (IIS) Listed below are some of the recommendations for monitoring the Internet Information Services (IIS) counters and services. I www.powerad..
2023.01.31