windows - Tutorials for creating right-click command in powershell -
are there resources on programming user account in windows 8? use exe, 'png2eps.exe' within system path, , allow right-click context convert png eps file trivially.
the argument of course file i'm right clicking on. kind of how 1 can convert postscript file pdf using acrobat distiller.
that simple!
copy png2eps.exe system folder(e.g. c:\windows\ or c:\windows\system32).
after that, create txt file , put in it:
windows registry editor version 5.00 [hkey_classes_root\.png\shell\png2eps] @="convert png eps now!" [hkey_classes_root\.png\shell\png2eps\command] @="png2eps cmd \"%1\""
where: cmd - cmd switches , options png2esp. \"%1\" - input file name shell.
save txt, , change extension reg(e.g. before: file.txt after: file.reg). 2click on reg file , import registry.
menu item "convert png eps now!" see in context menu if call selected png file(s).
Comments
Post a Comment