Tuesday 4 December 2018

Apply Startup script locally on windows machines

Or, How to apply/execute logon script locally for a single user in Windows Machine?

Simply, Go to the start-up folder of the specified user’s profile and past your created script file there. Once the specified user will login next time, the script will be executed.

Go to the below-given folder path:-

C:\Users\%username%\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup

Past your script file here that you want to be executed at start-up.


Hope it helps, write me back if you have any query or feedback on this.

Tuesday 20 November 2018

How to export all groups list in GSuite to a CSV file?

Or, Exporting GSuite Groups Name, and Email address to CSV file

Descriptions: GSuite is not having any feasibility on web GUI to export groups list into a CSV file. To achieve this, you may think of trying GAM tool available GitHub.
If you already have GAM tool installed on your machines, you may try the command given below to export all groups in a CSV file with the name and email addresses.

Steps: Exporting groups list into CSV file

Open CMD and Locate to the directory where GAM tool is installed










Type the command given below and hit enter

gam print groups name > D:\temp\GroupsList.CSV







You can change the destination directory to your own convenient path. In my case it's D:\temp

Cheers, write me back if you have any query or feedback on this.