Aussie owned and operated, with 23+ years of industry experience, Gold Coast InfoTech is delighted to support all of your business technology requirements.

Gallery

Contacts

success@goldcoastinfotech.com.au

1800 291 071

KBArticles Scripts, Commands, Registry

Troubleshooting AWS Transform Collector WinRM

During the addition of discovery for windows servers youmight find that WinRM is failing to connect via HTTPS. you might see errors in teh collector console for these windows devices like Temporary WorkAround (powershell script) # 1. Create self-signed certificate $cert = New-SelfSignedCertificate -DnsName “W2012-1.66n.local” -CertStoreLocation “cert:\LocalMachine\My” # 2. Create HTTPS listener winrm create winrm/config/Listener?Address=*+Transport=HTTPS […]

KBArticles

IAM policy for user access to specific S3 Bucket

This policy will assign a specific user access to a specific bucket in s3 { “Version”: “2012-10-17”, “Statement”: [ { “Effect”: “Allow”, “Action”: [ “s3:GetBucketLocation”, “s3:ListAllMyBuckets” ], “Resource”: “arn:aws:s3:::*” }, { “Effect”: “Allow”, “Action”: “s3:*”, “Resource”: [ “arn:aws:s3:::mybucketname”, “arn:aws:s3:::mybucketname/*” ] } ] }  

KBArticles

AWS Workspaces Error – This OS/platform is not authorized to access your Workspace

Situation Recently a customer received the following message ‘this OS/platform is not authorized to access your Workspace’ when connecting to newly built AWS Workspace instance whilst attempting to connect via ‘Web Access’ https://clients.amazonworkspaces.com/ In more recent WorkSpace Updates (Jan 2019) if you dont explicitly have Web Access enabled you will receive a ERR_CM_REQUEST_FAILED message This OS/platform […]