Jump to content

launching file types


Recommended Posts

i would like to add support for some other executables ..

".ade, .adp, .bas, .bat, .chm, .cmd, .com, .cpl, .crt, .dll, .exe, .hlp, .hta, .inf, .ins, .isp, .js, .jse, .lnk, .mdb, .mde, .msc, .msi, .msp, .mst, .pcd, .pif, .reg, .scr, .sct, .shs, .url, .vb, .vbe, .vbs, .wsc, .wsf, .wsh"

regb[pn]= *.reg

cmd1[pn]= (all that windows can execute stand alone)

for all the other ones that require command parameters switches ...

infb[pn]= *.inf

dllb[pn]= *.dll

what file types aren't supported with the current? or..

from the file extensions listed which others will require command parameters switches?..or

what other extensions can be executed stand alone fromcmd1[pn]=*

.etc ...

l might as well take the opportunity to request adding the other none sported .ext into the default distributed script ;)

Link to comment
Share on other sites

  • 3 weeks later...
  • 2 weeks later...

so did you add support for inf

"RunDll32.exe setupapi,InstallHinfSection DefaultInstall 132 somefile.inf,0"

and for dll

 regsvr32 [/u] [/s] [/n] [/i[:cmdline]] dllname

so what will be the final switches for these 2 ...

*[pn]= *.inf

for dll one other switch can be used for unregistering ..btw

*[pn]= *.dll

so i can finally update http://www.wincert.net/forum/index.php?showtopic=3748 when Im back to it ...

Link to comment
Share on other sites

  • 2 weeks later...

What are you asking me here? I added the other extensions. Are you wanting 2 new types of commands, infb and dllb? I guess I have to claim ignorance here. What are they used for and how? You need to give me details here.

Link to comment
Share on other sites

yes, new commands that handles substitutes for the command line

infa[pn]= rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 %wpipath%\install\.telescope.\%file%.inf

= infa[pn]= %file%.inf

dlla[pn]= regsvr32.exe /s %wpipath%\install\.telescope.\%file%.ocx\dll

=dlla[pn]= %file%.ocx\dll

naming for the commands can be anything you choose them to be of course ... ;)

Edited by ENU_user
Link to comment
Share on other sites

So all we need is

rundll32.exe setupapi,InstallHinfSection 132 %wpipath%\install\.telescope.\%file%.inf

And

Regsvr32.exe /s

And

Regsvr32.exe /u /s

yes these are the ones I actually know can be put into use ;)

if you and mritter manage to make it all in time try testing the new version against a dozen or so, WPIbee generated addons so WPI.hta loads cleanly with out any errors. (after using integrator to compile them of course)

with the current i need to use save before it normalizes ....

thanks

Edited by ENU_user
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...