Just a quick post to share a simple powershell script which will download all the current VMware Cloud on AWS documentation, found here, without having to click through the pages.
$url = "https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/vmc-on-aws-networking-security.pdf","https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/vmc-aws-operations.pdf", "https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/vmc-on-aws-getting-started.pdf", "https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/vmc-aws-manage-vms.pdf","https://docs.vmware.com/en/VMware-Cloud-on-AWS/services/vmc-aws-manage-data-center.pdf" $url | ForEach-Object {Invoke-WebRequest -Uri $_ -OutFile ($_ | Split-Path -Leaf)}
Now, for some offline reading!