Official Link –
http://sdk-for-net.amazonwebservices.com/latest/AWSToolsAndSDKForNet.msi
Download and install.
create your key credentials for enabling the login from PS ,follow this official document –
http://docs.aws.amazon.com/powershell/latest/userguide/pstools-appendix-sign-up.html
remember to save your credentials on a safe path !
Set up your login profile –
To add a new profile to the AWS SDK store, call Set-AWSCredentials
as follows:
example –
1 |
Set-AWSCredentials -AccessKey {AKIAIOSFODNN7EXAMPLE} -SecretKey {wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY} -StoreAs {MyProfileName} |
example –
1 2 3 4 5 6 7 |
$SAK = 'Twt2D1vC26kQ7f3YyRqWdwsxqNxVYsH+aiQpzNs2V9SM' $AID = 'AKUIAIHEOSS6LB3NJB7BTA' # Set Default AWS Credentials (ignore this if default credentials are already setup.) $LoginAWS = Set-AWSCredentials -AccessKey $AID -SecretKey $SAK -StoreAs 'yourprofileName' -Verbose |
(Visited 694 times, 1 visits today)