How to transfare owner ship of disk folder to non domain account? - google-workspace

I would like to transfer a folder owner permission to a non domain account.
But there is an issue which doesn't allow me to do it for non-owned accounts.
How could I transfer the permission?

As per the documentation here changing ownership from a Google Workspace account to a regular non Google Workspace one is not doable and this is This is expected behavior. So the issue you are getting is normal due to security restrictions.
A workaround to this would be to download the file to your computer and share it directly with the external recipient.

Related

Creating domain Storage Buckets

message: '{"ResourceType":"storage.v1.bucket","ResourceErrorCode":"403","ResourceErrorMessage":{"code":403,"errors":[{"domain":"global","message":"The
bucket you tried to create requires domain ownership verification.","reason":"forbidden"}],"message":"The
bucket you tried to create requires domain ownership verification.","statusMessage":"Forbidden","requestPath":"https://www.googleapis.com/storage/v1/b","httpMethod":"POST","suggestion":"Consider
granting permissions to 1058303916595#cloudservices.gserviceaccount.com"}}'
Above is the message when I tried to create storagebuckets via Deployment Manager. I already tried adding 1058303916595#cloudservices.gserviceaccount.com to the Verified owners of that domain on the Google Search Console but still no luck
To create a Storage Bucket with domain name, your account should be a verified owner of the domain, not the cloudservices.gserviceaccount.com. Additional information can be found in Domain-Named Bucket Verification documentation.
You have to login to your domain name provider with the same account that you use to login to the Google Cloud Console. Then request a new domain name, go to Google Cloud Console App Engine page. Go to Settings and then click on Custom domains and then Add a custom domain. After adding the domain name there and verifying it, you will be able to create a bucket name using that domain as name. But make sure to do so with the same account that the domain was verified with.

Access to AmazonWorkspaces

I am setting up an Amazon Workspace instance, and need to provide the user with a password to log in. The invite email only contains the registration code.
How do I set up a user password to enable the user to login into Amazon workspace only (no console access)?
I am creating an AmazonWorkspace from a custom bundle, and adding a user to Simple AD.
Individual workspaces created in Amazon WorkSpaces are assigned to, and used by, individuals who are defined in a Directory.
From Manage Directories for Amazon WorkSpaces:
Amazon WorkSpaces uses a directory to store and manage information for your WorkSpaces and users. You can use one of the following options:
AD Connector — Use your existing on-premises Microsoft Active Directory. Users can sign into their WorkSpaces using their on-premises credentials and access on-premises resources from their WorkSpaces.
Microsoft AD — Create a Microsoft Active Directory hosted on AWS.
Simple AD — Create a directory that is compatible with Microsoft Active Directory, powered by Samba 4, and hosted on AWS.
Cross trust — Create a trust relationship between your Microsoft AD directory and your on-premises domain.
If you have your own Active Directory, then use it. If you do not have Active Directory, the simplest option is to choose Simple AD, which is a Active Directory-compatible Samba service. (Charges apply)
The user is selected when the WorkSpace is created. Amazon WorkSpaces will send a registration code to the end user. The end user then uses an Amazon WorkSpaces client to connect with the service. They provide the Registration Code to configure the client (once only), then login with their AD credentials.
To set the user password for AmazonWorkspace, set user password on the WorkMail application for that user. Directory service manages users for both AmazonWorkspaces and WorkMail, and the password is shared across.
The user must exist, but can be disabled. Email address can be anything, in my case users do not use AWS email.
Users defined in IAM are not visible from AmazonWorkspaces and WorkMail. If a user has console, S3, ec2, etc.. access in addition to Workspace, they would need to be defined separately in IAM and Directory.

Recreating a deleted domain-based bucket

I accidentally deleted a colleague's Google Cloud project which contained a domain-based bucket, ex. www.foo.com. My colleague ignored the warning that the project is scheduled for deletion and so the project was deleted.
We want to recreate the bucket but we get the
Another bucket is already named www.foo.com. Bucket names must be unique
across all projects in Cloud Storage. Please choose a different name and
try again.
error message.
I read Unable to create domain-based bucket even after verification and tried to reverify the domain in the hopes that it may lead to a fix.
After verification (domain is registered through Google and verification was repeated using a DNS TXT record), we are still unable to re-create the bucket.
I added a CNAME record to see if the bucket is still there and sure enough a page loaded with the 'Your Google account is not currently enabled for this operation.' pointing me to the billing page for the account.
I cannot figure out how to delete the bucket if the project it was in is deleted already.
I've double checked to ensure billing is enabled, the domain is verified, and that no project that either of us own contains the bucket name in question.
Any tips would be appreciated.
The project is most likely still pending deletion, which can take about a month to process. You could however restore the original project from the resource manager page if you’re not willing to wait that long. Select “Resources pending deletion” and you can restore the original project from a drop-down menu.

cpanel full account restoration without whm access

Is there anyway we can restore a complete (or partial, but with the email settings intact) cpanel backup to a new account without the help of WHM?.
I have two reseller accounts - shared (hostgator). Have already downloaded the entire files (/ssl, /ftp, /mail, /public_html etc. ) using FTP from account 1.
Also created an account in 2nd hosting package with the same domain, username and password. Will it work if I upload all the files to the new server?.
Please note: I dont have root access also.
Yes, You can restore your account files through "Backup Wizard" feature. With this feature you can restore your partial backup zip file(s).
Please check it : https://documentation.cpanel.net/display/ALD/Backup+Wizard#BackupWizard-PartialBackup

How do I get the subscriptions of an Azure account via PowerShell when I am logged into Windows using a different account?

When I execute Get-AzureAccount, I see the Azure account of the domain account I am logged into Windows with. So, when I run Get-AzureSubscriptions, I see the associated subscriptions. I want to get the subscriptions associated with a different account (one with which I cannot login into Windows) but I cannot figure out how this is done. Of course, Add-AzureAccount would seem to be the way to go but despite reading the TechNet help page on it, I don't see how another account can be added.
Thanks!
-Rohan.
Azure subscriptions are stored in "C:\Users\%username%\appdata\Roaming\Windows Azure Powershell" (or "%AppData%\Windows Azure Powershell) per user. The contents of that dir is an xml file containing the user's subscriptions. Each subscription is linked to a certificate that needs to reside in the same user's cert store in order to connect.
Anyways, using
Get-AzureSubscription -SubscriptionDataFile <path to the other user's xml file>
you should be able to read those subscriptions, if you have access to his/her profile folder (which would require local admin permissions on a normal system).