When i run commands from google sdk Shell, i got no error :
# login
gcloud auth login
# upload files to bucket : google cloud storage
gsutil cp "My_File_Path" gs://"My_Bucket_Name
When i run the same commands from windows cmd, i got error : AccessDeniedException: 403 Insufficient Permission
I'm willing to run the commands from windows cmd so i can automate it easily on my python script using :
import os
os.system("gcloud auth login")
os.system("gsutil cp 'Path_To_File' gs://'Bucket_Name'")
On windows cmd : os.system("gcloud auth login") runs without errors, second command get the error : AccessDeniedException: 403 Insufficient Permission