I am looking for information about running MSDE on top of
Windows XP Embedded. Would anybody kindly send
me some hints about this? Is there any possibility that
MSDE (or SQL Server) becomes one of the standard
components in XP Embedded (as SQL Server for
Windows CE does)? Any response is appreciated.
Charles
Andy
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"Charles Tsai" <cha...@easyuse.com.tw> wrote in message
news:u81xVTBnCHA.2316@TK2MSFTNGP12...
"Andy Allred [MS]" <andya...@online.microsoft.com> wrote in message
news:OuDEIsHnCHA.1392@TK2MSFTNGP10...
I'm longing to have this component working. How many days do you need
to publish it ?
Thanks and happy christmas to XP Embedded team.
Andy
--
This posting is provided "AS IS" with no warranties, and confers no rights.
"jpv" <jpvasi...@infomil.com> wrote in message
news:9844c614.02122...@posting.google.com...
"Andy Allred [MS]" <andya...@online.microsoft.com> a écrit dans le message
de news: uOuwai2qCHA.2256@TK2MSFTNGP12...
BTW, guys, you can use Windows Script Host and install MSDE during the first
startup after FBA.It's not a nice solution, but it works. I configure for
instance NetMeeting in such a way.
With WSH you can start app, and send keyboard commands to it.
--
WBR,
Nikolai Vorontsov
Quadrox NV
"micro" <ma...@infomil.com> wrote in message
news:uYtG8q6wCHA.1900@TK2MSFTNGP11...
Hi, Nikolai,
Would you please kindly tell me which components do I need
to do so? And what is the size impact on the footprint
for such installation? Thanks.
Regards,
Charles
"Nikolai Vorontsov" <nic...@mail.ru> wrote in message
news:#zWKIv6wCHA.2556@TK2MSFTNGP10...
It's not a component. It's more - it's idea! :-)
Well, you need to create a component which contains:
1. MSDE installation file (if many - many files) let say in c:\temp\MSDE
directory.
2. InstallMSDE.vbs file (in the same directory).
3. Short-cut or any other mean to start InstallMSDE.vbs once after FBA.
Personally I add short-cut and after Reseal image phase manually move this
short-cut to the c:\D&S\All Users\Start Menu\Programs\Startup.
The idea is to run MSDE installation after FBA and control it automatically.
Then you have to install MSDE manually once and write down all keys you
entered.
InstallMSDE.vbs should be like this (it's mine for NetMeeting setup, I
removed all error checking for simplicity)
option explicit
dim objWsh, objFSO
set objWsh = CreateObject("WScript.Shell")
set objFSO = CreateObject("Scripting.FileSystemObject")
const CMD_DELAY = 300
const MAIN_DELAY = 3000
const RUN_DELAY = 15000
dim objExec
set objExec = objWsh.Exec("C:\Program Files\NetMeeting\Conf.exe")
WScript.Sleep MAIN_DELAY
objWsh.AppActivate "NetMeeting"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "WEBCCTV{TAB}Quadrox NV{TAB}in...@quadrox.be{TAB}WebCCTV
site{TAB}"
objWsh.SendKeys "Video surveillance system{TAB}{TAB}{ENTER}"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%L%I%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%L%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%Q%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%N{ENTER}"
WScript.Sleep RUN_DELAY
objWsh.SendKeys "%TO+{TAB}{RIGHT}%I%P{TAB}{TAB}{TAB}{ENTER}"
WScript.Sleep MAIN_DELAY
objWsh.SendKeys "%TR%N%N%O%N{ENTER}"
WScript.Sleep CMD_DELAY
objWsh.SendKeys "%CA"
to run script use something like cscript.exe InstallMSDE.vbs
This will take time each time you create a new device (during first
startup), but later device will work with MSDE.
--
WBR,
Nikolai Vorontsov
Quadrox NV
"Charles Tsai" <cha...@easyuse.com.tw> wrote in message
news:#MOYwZ7wCHA.2028@TK2MSFTNGP11...