Skip to content
⌘ NSIS Forum Archive

Execute program

2 posts

xinc99#

Execute program

Hey People,

Can anyone tell me how I need to execute the following command?;

c:\windows\system32\Secedit /configure /db %temp%\temp.db /cfg "script.inf""

The script.inf need to be between those quotes so I dont know how to execute it like that..

Any ideas?

Thanks

Xinc99
Davion#
Try to execute it like this:


Exec 'c:\windows\system32\Secedit /configure /db %temp%\temp.db /cfg "script.inf"'
You can find more about the syntax in the NSIS Documentation
(Exec / ExecShell / ExecWait)

Greetz Dave