Jump to content

Forced down the 64bit route...any tips or gotchas to look out for?


Recommended Posts

Posted

Having been told to purchase the Adobe Master Collection CS6 as it was a requirement for teaching IT and Art we've now of course discovered that several of the applications no longer run on 32bit Windows 7.

 

We've been running 32bit Windows 7 for over a year now and everything is bedded in well, full lock-down policies for students via GPO, DC's are all running Windows Server 2008 R2.

 

We are using WDS to roll out Windows 7 to our existing XP estate and I have an apprentice on this job full time and its running smoothly.

 

I am about to start on a standard "image" for a base 64bit install and wondered what things I should be looking out for?

 

1. Should I create a new WMI filter in Group Policy Management and then duplicate all my policies so I can test each one for compatibility with 64bit or should all the general polices such as lock-down, redirecting desktops and start-menu, setting IE proxy, setting power management, software restiction, wsus settings ALL just work?

 

2. I've read a bit about printer driver support being a pain. Our current print server is only running Server 2003 R2 service pack 2 - it's also our WSUS server....

 

Any help appreciated...

Posted

Software will be your biggest caveat. GPOs should just work.

 

We pushed 64bit out to everything that would take it here in the summer and we didn't change anything on our network at all... we just said this software doesn't work anymore and people were happy with that...but we're lucky in that we don't have shelves of software written by monkeys for use in schools.

 

Printer drivers can be a problem, but it depends on your printers... most printers are fine we've found, only stuff like LaserJet 1000s cause trouble with 64bit OSes. As long as you install the 32 and 64bit drivers it'll just pull down the correct driver when it's installed.

Posted
If you're already on 7 you're almost done. Check for any dirty old 16bit software that could cause hickups and add 64bit drivers to your printserver. If you use redirected start menus etc. you'll need to look at those as above but you should be good to go for almost everything.
Posted
As people have mentioned above, the only things you really need to keep an eye out for are printer drivers and any software shortcuts that may be affected by the "Program Files (x86)" folder change -- watch out for this same issue in any scripts you may have that point specifically to the program files folder!
Posted

Thanks everyone:

 

I've shoehorned this on to another thread in the windows section but it might be better to put it here too:

 

I have the following working WMI filters:

 

Select * from Win32_OperatingSystem Where Version like "5.1%" and ProductType = "1"

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1"

 

So I can target XP and Win7 seperately.

 

I know want to add Win7 64bit in to the fray as a new WMI filter

 

Anything existing can be filetered as is I reckon, so I just need a new WMI filter so I can target specific policies to 64 bit windows 7.

 

Would this work for the new WMI filter?

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1" and AddressWidth="64"

 

I am also wondering if I should edit my existing WMI filter for Windows 7 so that it applies only to 32 bit.

 

Or would three WMI filters for Windows 7 give me most flexibility.

One for all flavours, one for 32 bit and one fore 64 bit

 

Does anyone else do it that way?

 

So I am guessing I would have:

 

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1" and AddressWidth="64"

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1" and AddressWidth="32"

SELECT * FROM Win32_OperatingSystem WHERE Version = '6.1%' AND ProductType = '1' AND ( OSArchitecture="32-bit" OR OSArchitecture="64-bit" )

 

Comments appreciated.

Posted

win7 32bit

 

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

 

win 7 64bit

 

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

 

target any 32bit os

 

SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth ='32'

 

target any 64Bit os

 

SELECT AddressWidth FROM Win32_Processor WHERE AddressWidth ='64

  • Thanks 1
Posted

Thanks rslulz....

 

So I should be able to edit my existing WMI filter for windows 7 which currently reads:

 

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1"

 

and edit it to:

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

 

and it wont break anything on my network as all my existing windows 7 PC's were installed from the 32bit iso....

 

?

Posted
We ran into a lot of problems with a mixed set of 64-bit/32-bit Epson drivers. Just running one or the other worked but the 64-bit server was not happy about pushing out 32-bit drivers.
Posted
We ran into a lot of problems with a mixed set of 64-bit/32-bit Epson drivers. Just running one or the other worked but the 64-bit server was not happy about pushing out 32-bit drivers.

 

Did you filter them with gpo?

Posted

I think you may need to add some brackets in there...

 

SELECT * FROM Win32_OperatingSystem WHERE Version LIKE "6.1%" AND ProductType="1" AND (NOT OSArchitecture = "64-bit")

 

Is there any reason why you are using NOT OSArchitecture = "64-bit" instead of OSArchitecture = "32-bit"? :confused:

 

SELECT * FROM Win32_OperatingSystem WHERE Version LIKE "6.1%" AND ProductType = "1" AND OSArchitecture = "32-bit"

Posted

My filter for windows 7 64 bit failed :(

 

Select * from Win32_OperatingSystem Where Version like "6.1%" and ProductType = "1" and AddressWidth="64"

 

Can anyone see why?

 

Checked creating a new desktop policy for admins and ran the group policy results wizard to find out why the right desktop did nt apply and it says WMI failed.

 

WMI Filters

Name Value Reference GPO(s)

W7 True 7-Default Domain Policy, 7-Desktop and Start Menu Sadmins, 7-Internet Explorer Settings Sadmins, 7-Office 2010, 7-reg-MSS

 

Win764bit False 7-Desktop and Start Menu Sadmins 64

 

XP False Copy of Desktop Redirection IE settings Sadmin, Default Domain Policy, Office 2003 Policy, Office2010

Posted
One thing that would make life easier is on the 32 bit machines put a junction point to "Program Files (X86)" to Program Files - this saves hassle when deploying shortcuts to the network as you can send out with Program Files (x86) in the path and they will work cross platform.
Posted

Success:

 

W7 True 7-Default Domain Policy, 7-Desktop and Start Menu Sadmins, 7-Internet Explorer Settings Sadmins, 7-Office 2010, 7-reg-MSS

Win764bit True 7-Desktop and Start Menu Sadmins 64

XP False Copy of Desktop Redirection IE settings Sadmin, Default Domain Policy, Office 2003 Policy, Office2010

 

In the link order for the group policies I've put my 64bit desktop redirect ABOVE my original windows 7 desktop redirect as the WMI filter for that is my existing one which does nt test for OS Architecture.....seems to work....

I've put my desktop redirect

Posted
One thing that would make life easier is on the 32 bit machines put a junction point to "Program Files (X86)" to Program Files - this saves hassle when deploying shortcuts to the network as you can send out with Program Files (x86) in the path and they will work cross platform.

 

Lost me a bit - what's a "junction point" please?

 

I know it's a pain with duplication but I was just going to have two desktops for each of staff and pupils; one desktop for 32 bit and one for 64 bit shortcuts...most shortcut icons being the same.....

Posted
I've got staff that needs to use an old version of Borland DB to access SIS records from an old system. The installer will through a fit and exit if you try and run it on a 64bit machine. So I packaged it into an MSI on a 32bit OS and ran the MSI on the 64bit machine to bypass the check in the original installer and it worked. I would imagine this process would work for other pieces of software if the need arises.

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...