WelcomeWiz_Choice.xml -- Add button for executable
-
Wednesday, December 05, 2012 7:35 PM
Is it possible to edit the WelcomeWiz_Choice.xml in order to add a button for launching an executable?
All Replies
-
Thursday, December 06, 2012 10:00 AM
Hi,
Shure you can, the MDT wizzard is made of HTML and VBS.
You can find the HTML code in the XML file. Is you have some vbs code to add you can add it in WelcomeWiz_Choice.vbs
- Marked As Answer by lunarpowered Monday, December 10, 2012 8:57 PM
-
Thursday, December 06, 2012 4:58 PMCan you expand on what you are trying to achieve?
-
Monday, December 10, 2012 5:36 PM
I'm just trying to add a button for an executable in WinPE.
The hyperlink will appear in the menu, but it does not open the executable (no error) with the following syntax:<a href="file:///X:\Windows\System32\executable.exe">Button</a>
-
Monday, December 10, 2012 8:57 PM
It worked when I used the combination of VBS and HTML.
Case "Button"
document.body.style.cursor = "Wait"
sCmd = "x:\windows\system32\executable.exe"
oShell.Run sCmd, 1, true
document.body.style.cursor = "default"
RunSelectedCommand = false

