How to download files from s3 service to local folder

前端 未结 3 2152
南方客
南方客 2021-02-20 16:02

I have requirement to download files from simple storage service to local folder and count the no.of files in local folder and check against simple storage service then send mai

3条回答
  •  逝去的感伤
    2021-02-20 16:30

    If you have installed the AWS PowerShell Module, you haven't correctly loaded it into your current session. We're identifying this as the issue because the error you specified means that the given cmdlet can't be found.

    Verify first that the module is installed, by any of the options below:

    Load module into an existing session: (PowerShell v3 and v4):

    From the documentation:

    In PowerShell 4.0 and later releases, Import-Module also searches the Program Files folder for installed modules, so it is not necessary to provide the full path to the module. You can run the following command to import the AWSPowerShell module. In PowerShell 3.0 and later, running a cmdlet in the module also automatically imports a module into your session.

    To verify correct installation, add the following command to the beginning of your script:

    PS C:\> Import-Module AWSPowerShell
    

    Load module into an existing session: (PowerShell v2):

    To verify correct installation, add the following command to the beginning of your script:

    PS C:\> Import-Module "C:\Program Files (x86)\AWS Tools\PowerShell\AWSPowerShell\AWSPowerShell.psd1"
    

    Open a new session with Windows PowerShell for AWS Desktop Shortcut:

    A shortcut is added to your desktop that starts PowerShell with the correct module loaded into the session. If your installation was successful, this shortcut should be present and should also correctly load the AWS PowerShell module without additional effort from you.

    From the documentation:

    The installer creates a Start Menu group called, Amazon Web Services, which contains a shortcut called Windows PowerShell for AWS. For PowerShell 2.0, this shortcut automatically imports the AWSPowerShell module and then runs the Initialize-AWSDefaults cmdlet. For PowerShell 3.0, the AWSPowerShell module is loaded automatically whenever you run an AWS cmdlet. So, for PowerShell 3.0, the shortcut created by the installer only runs the Initialize-AWSDefaults cmdlet. For more information about Initialize-AWSDefaults, see Using AWS Credentials.

    Further Reading:

    • AWS PowerShell Documentation - Download and Install the AWS Tools for Windows PowerShell
    • AWS PowerShell Documentation - Setting up the AWS Tools for Windows PowerShell

提交回复
热议问题