Last active
August 29, 2015 14:24
-
-
Save zaki-yama/c32b5ee5ea4044572e34 to your computer and use it in GitHub Desktop.
[Salesforce]パスワードポリシーをForce.com Migration Toolで設定する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <Package xmlns="http://soap.sforce.com/2006/04/metadata"> | |
| <types> | |
| <members>*</members> | |
| <name>Settings</name> | |
| </types> | |
| <version>34.0</version> | |
| </Package> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <SecuritySettings xmlns="http://soap.sforce.com/2006/04/metadata"> | |
| <passwordPolicies> | |
| <!-- historyRestriction が 0 だと expiration は Never にできない --> | |
| <expiration>Never</expiration> | |
| <historyRestriction>3</historyRestriction> | |
| </passwordPolicies> | |
| </SecuritySettings> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| . | |
| ├── package.xml | |
| └── settings | |
| └── Security.settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment