powershell - Are the properties in Power Shell FTP module(WebAdministration) Case-Sensitive? -


powershell case insensitive language , modules webadministration expected be.

this doesn't work:

ps iis:\apppools> set-itemproperty .\defaultapppool -name enable32bitapponwin64 -value $true 

whereas works:

ps iis:\apppools> set-itemproperty .\defaultapppool -name enable32bitapponwin64 -value $true 

difference in capital , small letter 'e' in property name. moreover, first command doesn't throw error.

can explain behaviour?

this bug since behaviour differs different windows versions (e. g. windows 10, first letter must lowercase whereas windows 7 not).

there related question on so.


Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -