You can trim the $OS string or only match what you're looking for:
Trim example:
If (($OSArch -eq "64-Bit") -and ($OS.Trim() -eq "Microsoft Windows 7 Enterprise"))
Match example:
If (($OSArch -eq "64-Bit") -and ($OS -match "Microsoft Windows 7 Enterprise"))