Script error while installing Windows/XP Embedded evaluation

  • Thread starter Thread starter Howard Weiss
  • Start date Start date
H

Howard Weiss

I am trying to install the Windows/XP evaluation from CD on my Windows/XP
system. The WIndows XP Embedded Database SP1 - Setup Wizard fails in the
Removing Repository File Share step. There is a script error. I looked at
the script error with the debugger and it appears that it at the statement
"Set oShellObject = CreateObject( g_szShellProgID )" in the following.
g_szShellProgId = "wscript.shell". How do I fix this problem?

Howard


Function RemoveRepositoryShare()
' Set the default return status code
RemoveRepositoryShare = msiDoActionStatusFailure

' Get the absolute path name to the directory where
' the repository files are located on this system.
szShareDeleteCmd = Session.Property( "CustomActionData" )

' Create a Windows Script Host 'Shell' object
' in order to spawn a separate executable to create the file share
Set oShellObject = CreateObject( g_szShellProgID )
 
Back
Top