Sorry but there are some fields that can’t be modified with the EqualLogic PowerShell CmdLets.
To view the complete list of the fields that can be changed use the following commend:
Get-Help SetEqlGroupConfiguration –detail
In this list, you can see that both the GroupTimeZone and EmailSenderName cannot be modified.
The EmailSenderName is synonymous with the GroupName, so you would need to change the GroupName value for EmailSenderName to change (if that is what you really want to do). BTW, the EmailSenderName cannot be updated using the CLI commands either.
The GroupTimeZone isn’t available for cmdlet modification at this time either, but can be changed using the CLI, with the following syntax:
grpparams timezone
Description: Sets the time zone for the group, using a country and city designation. The default is America/New_York.
Format
grpparams timezone [zone]
[zone] = Time zone. To see a list of supported time zones, use the "grpparams timezone ?" command.
Example
> grpparams timezone America/Los_Angeles
So it’s possible to write a perl script to change the timezone.
No, I'm not sure what is causing the freeze up on your system. I tested the command on a Win7 (32bit) system, and was not able to reproduce the freeze issue that you described.
I tested using all three methods, i.e., within the EqualLogic PowerShell Tool, from the native PowerShell (after importing the EqlPSTools module), and inside the powershell_ISE.
What was the system OS you ran the cmdlets from, Array Firmware, and powershell version?
Joe S586
9 Technologist
•
729 Posts
1719
0
Posted February 16th, 2012 09:00
Sorry but there are some fields that can’t be modified with the EqualLogic PowerShell CmdLets.
To view the complete list of the fields that can be changed use the following commend:
Get-Help SetEqlGroupConfiguration –detail
In this list, you can see that both the GroupTimeZone and EmailSenderName cannot be modified.
The EmailSenderName is synonymous with the GroupName, so you would need to change the GroupName value for EmailSenderName to change (if that is what you really want to do). BTW, the EmailSenderName cannot be updated using the CLI commands either.
The GroupTimeZone isn’t available for cmdlet modification at this time either, but can be changed using the CLI, with the following syntax:
grpparams timezone
Description: Sets the time zone for the group, using a country and city designation. The default is America/New_York.
Format
grpparams timezone [zone]
[zone] = Time zone. To see a list of supported time zones, use the "grpparams timezone ?" command.
Example
> grpparams timezone America/Los_Angeles
So it’s possible to write a perl script to change the timezone.
-Joe