You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is a test to see if powershell has syntax highlighting
$update=@{
item=@{
description="hello"
}
}
$update = @{
item = @{
description = "hello"
}
}
$update = @{
item = @{
description = "hello"
}
}
# Create the update object, with an item property with is also a hashtable
PS >$update=@{ item=@{ } }
# Set the name property value
PS >$update.item.name="ZN3-Setpt"# Set the description property value
PS >$update.item.description="Temperature Set Point"# Use a nested hashtable to define conectedTo# Notice the prompt is >> as PowerShell is waiting for more input
PS >$update.item.connectedTo=@{
>>objectReference="welchoas:welchoas/AV2";
>>attribute="attributeEnumSet.presentValue">> }