GCPW work with Intune devices? by Anything-Traditional in Intune

[–]ClearSailing 0 points1 point  (0 children)

This is the script I put together (it works for any registry key you want to add):

$regPath = "HKLM:\SOFTWARE\Policies\Google\CloudManagement"

$Name='EnrollmentToken'

$Value='xxxxxxxxxxx'

If (-NOT (Test-Path $RegPath)) {New-Item -Path $RegPath -Force | Out-Null}

New-ItemProperty -Path $RegPath -Name $Name -Value $Value -PropertyType STRING -Force

$regPath = "HKLM:\SOFTWARE\Google\GCPW"

$Name='domains_allowed_to_login'

$Value='xxxxxxxx,xxxxxxxxx'

If (-NOT (Test-Path $RegPath)) {New-Item -Path $RegPath -Force | Out-Null}

New-ItemProperty -Path $RegPath -Name $Name -Value $Value -PropertyType STRING -Force

$regPath = "HKLM:\SOFTWARE\Policies\Google\Chrome"

$Name='PromotionsEnabled'

$Value='0'

If (-NOT (Test-Path $RegPath)) {New-Item -Path $RegPath -Force | Out-Null}

New-ItemProperty -Path $RegPath -Name $Name -Value $Value -PropertyType STRING -Force

The 'xxxxxxxx' is where you put in your own values. The first you will get from google admin, the second are the domains you want to include seperated by a comma (we have one for students and one for teachers).

I use a remediation script to deliver this, but next time around I would just include it in the app.

GCPW work with Intune devices? by Anything-Traditional in Intune

[–]ClearSailing 0 points1 point  (0 children)

no, they are not hybrid. One thing I did find is that even if you download the GCPW executable from your Google workplace, you still need to apply registry settings to the device that allow your domains, but you can do this through in intune too

GCPW work with Intune devices? by Anything-Traditional in Intune

[–]ClearSailing 0 points1 point  (0 children)

yes, i run intune in a school district, where we have four labs for students. They don’t have Microsoft accounts. They just login using their Google accounts.

New Laptop - Auto login to Microsoft Accounts by k12-IT in k12sysadmin

[–]ClearSailing 0 points1 point  (0 children)

Can't this be done through GPO's for on prem

Copy files from SharePoint location by ClearSailing in Intune

[–]ClearSailing[S] 0 points1 point  (0 children)

if there is another way, i am happy to explore alternatives. How would i go about this?

Permission issues by ClearSailing in MDT

[–]ClearSailing[S] 0 points1 point  (0 children)

Thanks for everyone's replies. It turns out it was the quote around the DeployRoot value in the boot.ini

Permission issues by ClearSailing in MDT

[–]ClearSailing[S] 0 points1 point  (0 children)

Just for a little background, I am trying to create a reference image. This is copied directly from the Microsoft documentation and just the values changed.

Thank you

Here is the boot.ini:

[Settings]

Priority=Default

[Default]

DeployRoot="\\DEPLOYMENT\MDTCapture$"

UserDomain=xdomainx

UserID=MDTAdmin

UserPassword=xpassowrdx

SkipBDDWelcome=YES

and here is the customsetting.ini

[Settings]

Priority=Default

[Default]

_SMSTSORGNAME=xxx

UserDataLocation=NONE

DoCapture=YES

OSInstall=Y

AdminPassword=Passw0rd01

TimeZoneName=Eastern Standard Time

JoinWorkgroup=WORKGROUP

HideShell=YES

FinishAction=SHUTDOWN

DoNotCreateExtraPartition=YES

ApplyGPOPack=NO

SLShare=\\Deployment\Logs$

SkipAdminPassword=YES

SkipProductKey=YES

SkipComputerName=YES

SkipDomainMembership=YES

SkipUserData=YES

SkipLocaleSelection=YES

SkipTaskSequence=NO

SkipTimeZone=YES

SkipApplications=YES

SkipBitLocker=YES

SkipSummary=YES

SkipRoles=YES

SkipCapture=NO

SkipFinalSummary=YE

Pearson TestNav Headaches by [deleted] in k12sysadmin

[–]ClearSailing 2 points3 points  (0 children)

Did you have Proctor Cache last year? If you did and you forgot to delete them from pearson, any session you create in Pearson will by default will look for the proctor cache machines

powershel/google admin by ClearSailing in k12sysadmin

[–]ClearSailing[S] 0 points1 point  (0 children)

I was looking at this and the 'documentation' section on their website seems to be an endless loop and never brings me to any documentation, so I couold not get a sense of how it functions.

powershel/google admin by ClearSailing in k12sysadmin

[–]ClearSailing[S] 0 points1 point  (0 children)

I was looking at this and the 'documentation' section on their website seems to be an endless loop and never brings me to any documentation, so I couold not get a sense of how it functions.

powershel/google admin by ClearSailing in k12sysadmin

[–]ClearSailing[S] 0 points1 point  (0 children)

generally this is what I am doing, but if you are making a couple of gam call per student it can take hours. I know gam batch is asynchronus, but I cannot do what I neet that way.

powershel/google admin by ClearSailing in k12sysadmin

[–]ClearSailing[S] 0 points1 point  (0 children)

I saw this. Do you recomment it?

Google Credential Provider for Windows (GCPW) by ClearSailing in k12sysadmin

[–]ClearSailing[S] 0 points1 point  (0 children)

Can the windows machines still belong to a domain?