Jump to content

Recommended Posts

Posted

Just got the PolicyDefinitions copied over to the server to update the store, and a virtual machine copy of Windows 10 installed.

 

Does it make any difference if I've set Windows 10 settings in the User policy that will be in the same GPO when users log on to a Windows 7 PC still, or is it recommended to create a new Policy just for the Windows 10 settings?

Posted
Personally I did a copy of our Windows 7 GPO and used WMI filters to seperate the Win7 and Win10 GPO's. I then stripped a load of old stuff out of my copied-Win10 GPO and did the customisation. I think it is a good idea to keep them seperate!
  • 2 weeks later...
Posted

I can't remember where I got them from but here are the 3 WMI queries I use:

 

Win 10 (any)

select * from Win32_OperatingSystem where (Version like "10%") and ProductType = "1"

 

Win7 32-bit

select * from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"

 

Win 7 64-bit

select * from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND OSArchitecture = "64-bit"

Posted
I can't remember where I got them from but here are the 3 WMI queries I use:

Btw, you can speed up those WMI queries quite a bit by changing the asterisk to the specific class properties you need to query.

 

http://vgy.me/hnzib3.png

 

Win 10 (any)

select [color="#FF0000"]Version,ProductType[/color] from Win32_OperatingSystem where Version like "10.%" and ProductType = "1"

 

Win7 32-bit

select [color="#FF0000"]Version,ProductType,OSArchitecture[/color] from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND NOT OSArchitecture = "64-bit"

 

Win 7 64-bit

select [color="#FF0000"]Version,ProductType,OSArchitecture[/color] from Win32_OperatingSystem WHERE Version like "6.1%" AND ProductType="1" AND OSArchitecture = "64-bit"

  • Thanks 4

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...