Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Call command line after installation in Wix

Tags:

wix

wix3.5

I am using wix and want to call command line after installation.

How can I do this?

My command line is here "bcdedit.exe /set {current} nx AlwaysOff" // this makes dep off

Yes, I've read about custom actions, but I didn't see any example with command line.

P.S. bcdedit is usual exe in Win 7 and higher.

P.S. currently I have next script and it does not work:

          Directory  ="INSTALLLOCATION"
          ExeCommand ='echo hello> echo_test.txt'
          Execute    ="immediate"
          Return     ="asyncNoWait"
                />
like image 354
Alex Blokha Avatar asked Sep 30 '11 10:09

Alex Blokha


3 Answers

echo is not an executable, it is the command of the command processor cmd.exe. Change your ExeCommand value to cmd.exe /c "echo hello >echo_test.txt".

Your echo_test.txt would be in an arbitrary directory, you have to use absolute paths to get predictable results.

like image 142
Alexey Ivanov Avatar answered Nov 15 '22 11:11

Alexey Ivanov


Ok, this example works...

<CustomAction Id         ="echo_test"                     
              Directory  ="INSTALLLOCATION"
              ExeCommand ='NOTEPAD.EXE echo_test.txt'
              Execute    ="immediate"
              Return     ="asyncNoWait"
                    />

My test example with echo didn't worked for some reason. And bcdedit does not exist on WinXP, where I am testing now...

like image 24
Alex Blokha Avatar answered Nov 15 '22 12:11

Alex Blokha


Hi there are lots of example available on net...

try these links

http://wix.sourceforge.net/manual-wix2/qtexec.htm

Execute Command Line In WiX Script?

WiX - CustomAction ExeCommand - Hide Console

Or try this example:

 <CustomAction Id="SetQtExecCmd" Property="SetQtExec"
       Value="&quot;[PutPathOfThisFileHere]bcdedit.exe&quot; /set {current} nx AlwaysOff" />
<CustomAction Id="SetQtExec" BinaryKey="WixCA" DllEntry="CAQuietExec" Execute="immediate" Return="check" />
like image 42
vinay Avatar answered Nov 15 '22 12:11

vinay