The Wyse WY-700 is a CGA-compatible video adapter from the 1980s. Wherethe CGA's maximum pixel resolution is 640 × 200, the WY-700 can go upto 1280 × 800.

Rather than the CGA's 16 colours, the WY-700 displays four shades of grey.
Wyse Management Suite simplifies the IT effort for thin client configuration, deployment and management both on-premises and from the cloud. Plus, with ProSupport for Software, you get 24x7 support, a single point of contact for assistance and comprehensive troubleshooting. The Workgroup edition is the free version of WDM utilized for managing Wyse thin-clients. The Enterprise edition is a paid edition which offers additional deployment options and features. The Workgroup edition installs all the components on a single installation. In our setup we will utilize a Windows Server 2008 R2. Driver version = 19.10.21.1 for Windows 7 for 18265, 8265, 3168, 18260, 8260, 17265, 7265 (Rev. Note: This Software Release version does not include new drivers for the Intel® Wireless 7265 Family (Rev.C), Intel® Dual Band Wireless-AC 3160 and Intel® Wireless 7260 Family adapters.
Windows 10 64 bit, Windows 10, Windows 8.1 64 bit, Windows 8.1, Windows 8 64 bit, Windows 8, Windows 7 64 bit, Windows 7, Windows Vista 64 bit, Windows Vista, Windows XP Feb 3rd 2018, 09:15 GMT download. Wyse free download - Wyse Report 2, Dell Wyse Management Suite, TelStar, and many more programs.
The Hardware
Physically, the adapter is composed of two full-length ISA cards boltedtogether. The bottom card contains the MC6845 CRTC, and an MC68705P3 microcontroller. The top card has two jumpers marked 'COLOR' and 'MONO', and two EPROMs containing the font.
The 'COLOR' and 'MONO' jumpers are used to allow the card to be used alongside a CGA or MDA card (or a motherboard video chipset compatible withthese). If the card is installed on its own, both jumpers should be turned on.To install alongside an MDA, switch off 'MONO', and to install alongside a CGA, switch off 'COLOR'.
The card contains two 16×16 pixel fonts. The 'Left' character ROMcontains the left-hand 8 pixels for all 512 characters, and the 'Right' character ROM contains their right-hand 8 pixels. The default fonts are:
Supported modes
According to its manual, the modes supported by the card are:
Text/Graphics | Resolution | Mono/Greyscale | Character size (pixels) | Notes |
---|---|---|---|---|
Text | 80×25 | mono | 16×32 | Compatible with MDA mono (mode 7) |
Text | 80×25 | 4 greys | 16×32 | Compatible with CGA greyscale (mode 2) |
Text | 40×25 | 4 greys | 32×32 | Compatible with CGA greyscale (mode 0) |
Text | 80×50 | 4 greys | 16×16 | |
Text | 160×25 | mono | 8×32 | |
Text | 160×50 | mono | 8×16 | |
Graphics | 320×200 | 4 greys | Compatible with CGA greyscale (mode 5) | |
Graphics | 640×200 | mono | Compatible with CGA mono (mode 6) | |
Graphics | 320×400 | 4 greys | ||
Graphics | 640×400 | 4 greys | ||
Graphics | 1280×400 | mono | ||
Graphics | 1280×800 | mono |
Without seeing SCREEN.EXE I can't be sure, but my suspicion is that thehigh-resolution text modes (80×50, 160×25, 160×50) are notprovided in hardware by the card. It's my guess that they're implemented in software by SCREEN.EXE on top of the corresponding graphics mode.
Screen Attributes
If the 'character height' 6845 register is set to 1 or 14, screen attributes will emulate the MDA:
- Bit 1: Underline
- Bit 3: High intensity
- Bit 7: Blink (if bit 5 of port 03B8h is reset).
If blink is enabled, attributes 80-FF are the same as 00-7F, but blinking.
If the 'character height' register is set to any other value, screen attributes emulate the CGA:
Again, if blink is enabled, attributes 80-FF are the same as 00-7F, but blinking.
In the CGA-compatible 4-colour modes (modes 4 and 5), the colour mapping is straightforward: 00 => black, 01 => dark grey, 02 => light grey, and 03 => white. The 2-colour mode displays foreground as light grey, background as black; in both cases, the CGA colour register (0x3D9) has noeffect.
Provided Utilities
Four utilities were supplied with the card:
- CLEAR.EXE
- Clear the screen in 160-column or 50-line text modes, replacing CLS.
- FONT.EXE
- Switch between the two fonts supported by the card.
- SAVER.EXE
- A TSR screensaver utility.
- SCREEN.EXE
- Select one of the standard or extended text modes, replacing MODE. This is also a TSR, since it hooks the INT 10hmode set.
Memory Map
The following memory ranges are used:
According to the programmer's manual, the same physical memory is used for all video modes, so you shouldn't access the CGA/MDA framebuffers while inhigh-resolution mode.
Register I/O
The registers are a superset of those used by the CGA and MDA. CGA and MDA registers (3B0h-3BFh and 3D0h-3DCh) are read/write, rather than write-only as on real IBM hardware. This is also the case for the CRTC registers (accessed through ports 3B4h-3B5h / 3D4h-3D5h).
The 'CRTC' presented to the PC is not the physical CRTC on the card. Thiscannot be accessed directly from the PC; the 68705 microcontroller programs it according to the currently-selected video mode.
In addition to the standard CGA/MDA registers, there are three write-only registers to control the extra features:
When the hardware is in one of the high-resolution graphics modes, a write to the CGA/MDA control register or any access to the CRTC registers (for example, to set the cursor position) will switch back to the appropriateCGA-compatible or MDA-compatible mode.
This register also behaves as a command register when the values 01-07 arewritten to it:
The programmer's manual does not describe how SCREEN.EXE provides itsextended text modes, or how FONT.EXE switches between fonts. In the case of FONT.EXE, it probably just writes commands 02 / 03 to the video card.
In the 800-line modes, only half the framebuffer can be visible in theA0000-AFFFF range at one time, so the bottom two bits of this port select which half is mapped there. The 400-line modes have a straightforward linear framebuffer, rather than CGA-esque interleaving.
In the 640×400 mode and 320×400 modes, a screen occupies 32k, and so two video pages can be fitted in the framebuffer at A0000. Toswitch between them, the start address (ports 3DDh / 3DEh) can be set to 0000h for the first page, or 2000h for the second page.
The programmer's manual describes how to calculate the top scanline address. In 400-line modes, it's the offset of the scanline in video RAM,divided by 4. In 800-line modes, it's the offset divided by 4 and then multiplied by 40 — suggesting that the maximum offset supported is6552.
Drivers
SCREEN.EXE, when resident, provides the following additional modes to INT 10h / AH = 0:
WY-700 drivers were provided with GEM 3.0 and 3.1. An updated version ofthis driver, with codepage support, can be found in the FreeGEM driver packs.

A WY-700 driver existed for Windows 3.0 (wyse700.zip) and for WordPerfect6 for DOS (wys700.exe -> wys700.vrs).
This list of 5.25' discs includesmentions of what may be WY-700 drivers for AutoCAD (DSWY700.DRV), Orcad II (WYSE700A.DRV / WYSE700B.DRV / WYSE700C.DRV), Windows/286 (WYSE700.DRV),Word 5 for DOS (WYSE700.CSD / WYSE700.GSD), and Bitstream fonts 2.05 (WYSE700.DDF).
Emulation
PCE has partial emulation of this card, enough to support the GEM and Windows drivers.
John Elliott28 May 2014
Purpose
Intel® PROSet/Wireless WiFi Software is recommended for end users, including home users and business customers who do not need advanced IT administrator tools.
Software and drivers
Intel PROSet/Wireless WiFi Software (includes drivers) for Windows 7*:
- WiFi_21.40.5_PROSet32_Win7.exe (32-bit)
- WiFi_21.40.5_PROSet64_Win7.exe (64-bit)
Intel PROSet/Wireless WiFi Software version = 21.40.5
- Driver version = 19.10.21.1 for Windows 7 for 18265, 8265, 3168, 18260, 8260, 17265, 7265 (Rev. D), and 3165.
- Note: This Software Release version does not include new drivers for the Intel® Wireless 7265 Family (Rev.C), Intel® Dual Band Wireless-AC 3160 and Intel® Wireless 7260 Family adapters. Please refer to the following link for latest available drivers here.
Note:
When you update the software package, it might not update the wireless adapter driver if it includes the same driver as the previous release.
Some software features are not installed by default. For more information, visit: Learn about Intel® PROSet/Wireless Software.
Not sure what to download?
- Confirm you have the Windows 7* operating system before installing.Check if your operating system is 32-bit or 64-bit.
- Determine which file type to download for your wireless adapter.
- Intel® Wireless Adapter driver versions of some products may not update. Ensure this download supports your wireless adapter.
To determine which wireless adapter is installed in your computer system:
- Automatically detectand update your drivers and software with the Intel® Driver & Support Assistant.
- Manually identifyyour Intel Wireless Adapter and driver version number.
How to install
Wyse Driver Download For Windows 10
- Download the file to a folder on your PC.
- Double click on the file to launch installation.
Wyse Windows Embedded
Looking for drivers only
Wyse Software Download
- Visit the IT Administrator Link for Intel PROset/Wireless software and drivers for IT Admins.
- Go to the 'download link'.
- Search for the appropriate Operating System.
- Download, unzip and install the correct driver.
What's new
See the release notes for supported hardware, what is new, bug fixes, and known issues.
About Intel® drivers
The driver or software for your Intel® component might have been changed or replaced by the computer manufacturer. We recommend you work with your computer manufacturer before installing our driver so you don’t lose features or customizations.
See list of manufacturers’ Support websites.