ITGURU Posted September 5, 2015 Posted September 5, 2015 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?
timtom Posted September 9, 2015 Posted September 9, 2015 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!
ColinP Posted September 18, 2015 Posted September 18, 2015 Hi How did you set the WMI Filter for windows 10 only, I had problems I think due to version numbers?
timtom Posted September 18, 2015 Posted September 18, 2015 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"
ColinP Posted September 18, 2015 Posted September 18, 2015 Ah that's interesting I had mine set to "10.%"
Arthur Posted September 18, 2015 Posted September 18, 2015 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" 4
Arthur Posted September 18, 2015 Posted September 18, 2015 Ah that's interesting I had mine set to "10.%" That's what it should be.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now