I am not native English Speaker . I hope you understand what i mean. A bit Powershell code that i wrote
Show Descriptions of Counters and Category
$n=@( ("Memory","Available MBytes"),
("Memory","Free System Page Table Entries"),
)
$ppt = New-Object System.Diagnostics.PerformanceCounter
$ppt2 = New-OBject System.Diagnostics.PerformanceCounterCategory
foreach( $it in $n){
$ppt.categoryName=$it[0]
$ppt.counterName=$it[1]
$ppt2.categoryName =$it[0]
$var = $ppt2.categoryName
$var2 = $ppt.counterName
$ppt.instanceName =
echo "CategoryName : $var "
echo ( "Category Help : " + $ppt2.CategoryHelp)
echo "CounterName : $var2"
echo ("CounterHelp : " + $ppt.counterHelp)
echo ""
}
This gives me in CounterHelp and Category Help in English Description. How to get a German Description of that Counter or Category even i use English Windows. I have tried on a German Windows but it didn t work. If it is not possible on English windows. What did i wrong on German Windows? Thx