2013年11月18日 星期一

如何Configure the Firewall _Windows Embedded Standard 7 Service Pack 1


有以下二種方式做設定和修改:

1、使用netsh command

2、使用answer file


一、To configure the Firewall interactively

1.      At a Standard 7 command prompt on the device, type the following:

Netsh

The Netsh tool starts.

At the Netsh prompt you can run any firewall command interactively. For more information about the firewall commands and settings available in the Netsh tool, at a Standard 7 command prompt, type Netsh firewall /?.

2.      At the Netsh prompt, do any of the following:

    • Add a new incoming firewall rule to enable Windows Messenger

netsh advfirewall firewall add rule name="allow messenger" dir=in program="C:\Program Files\Messenger\Msmsgs.exe" action=allow

    • Add a new outgoing firewall rule to block port 80

netsh advfirewall firewall add rule name="allow80" protocol=TCP
dir=out localport=80 action=block

    • Turn the firewall off when the domain profile is active

netsh advfirewall domainprofile state off

    • Enable an existing rule

netsh advfirewall firewall set rule group="Remote Desktop" new enable=yes

    • Log dropped connections on the public profile

netsh advfirewall set publicprofile logging droppedconnections enable

    • Change the maximum log file size to 16 MB on the private profile

netsh advfirewall set privateprofile logging maxfilesize 16384

WES2009無法安裝VGA driver:import Intel Graphics Media Accelerator Driver(igxp32.inf ;VGA DRIVER for Intel Atom D400、D500、N400 series)。



情境:WES2009使用component designerimport Intel Graphics Media Accelerator Driver(igxp32.inf VGA DRIVER for Intel Atom D400D500N400 series)
問題:會出現以下錯誤訊息。


2013年11月15日 星期五

如何在WES2009移除MSN Messenger


可以參考以下的作法:


1Remove Internet Explorer Components

Internet Explorer dedicates a percentage of your available disk space for temporary Internet files. This cache is typically around 10 percent of your total available disk space and is not reflected in footprint size estimates. This can lead to a full disk situation on an embedded system that is in use. The new re-factoring changes give you options to address this problem.

Many features in Windows Embedded Standard used to depend on Internet Explorer. These features include:

  • .NET Framework 1.1
  • Help and Support Services
  • HTML Rendering Engine
  • IMAPI - CD Burning
  • Internet Connection Wizard
  • Microsoft Vector Graphics Rendering (VML)
  • Outlook Express
  • Shell Namespace Extensions
  • Soap Client Runtime
  • Windows .Net Messenger
  • Windows Media Player 10.0

Windows Movie Maker



在WES8的ICE如何設定Shell Launcher


Step 1Add Features to Your OS Image

In ICE, in the Catalog pane, expand Features, Right-click Shell Launcher, and select Add to Configuration file.


Step 2To set the setting of module

l   To create an administrator account

In ICE, in the Configuration File pane, expand the Product node, expand the Embedded Core node, and then do one of the following:

    • For 32-bit architecture, click Shell-Setup x86.
    • For 64-bit architecture, click Shell-Setup x64.

1.   In the Settings and Properties pane, in the Filter view by drop-down list, select 7 OOBE System.

2.      In the Settings pane, expand UserAccounts.

3.      Right-click LocalAccounts, and select Insert New LocalAccount.


如何得到Windows Embedded 8 Standard toolkit的永久Product key和WES8 Image量產的PID(以及Windows Embedded 8.1 Industry 量產的PID)



一、如何得到Windows Embedded 8 Standard toolkit的永久Product key

如果已經有拿到Windows Embedded 8 Standard tools(免費的),安裝好後如何去得到toolkitproduct key

請到以下的網址去註冊,就可以得到該Toolkit的永久Product key


https://www.microsoft.com/windowsembedded/en-us/downloads.aspx


To fully license the Windows Embedded 8 Standard tools, you will need the toolkit product key. The tools have a 30 day evaluation period from installation.

To evaluate images created with the Windows Embedded 8 Standard tools, you will need the 180 day evaluation key.

If you installed Windows Embedded 8 Standard from a DVD, register to get the product keys.




2013年11月12日 星期二

如何建置COM Port on Windows Compact 7




如何建置COM Port on Windows Compact 7


一、IRQIO Port設定

1、BIOSIRQIO Port需先設定好

2、修改OALIntrInit

找到相關cpu chipinin.c, 修改OALIntrInit function,使用OALIntrStaticTranslate(UINT32 sysIntr, UINT32 irq)設定。該IRQtBIOSIRQ相對應。

:

OALIntrStaticTranslate(SYSINTR_FIRMWARE +4, 4)

3、修改platform.reg

COM Portregistry section設定IRQIO PortSysIntr圍上一步驟

OALIntrStaticTranslate裡的sysIntr+10IoBase對應到BIOSIO Port

:

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Serial1]

"SysIntr"=dword:14   

"IoBase"=dword:03F8


二、設定COM Port的屬性(BaudRateParity…)修改platform.reg

:

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\Serial1\Unimodem]

"BaudRate"=dword:9600


2013年11月6日 星期三

如何在WES8下正常運行USB3,需加入甚麼component





請將以下的component加入,就可以正常運行USB3

INF-nulhpoprINF-nulhprs8INF-prnhpnul

INF-usbINF-usbcirINF-usbhub3

INF-usbprintINF-usbxhciINF-v-mscdsc

INF-wmbclass-wmc-unionINF-winusb


INF-hidservINF-mtconfigINF-hidbth

INF-bthaudhid



可以參考以下資料: