Jump to content

Perplx

Member
  • Posts

    2
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

About Perplx

Perplx's Achievements

0

Reputation

  1. I got this from this board somewhere, what it does is export the current associations to separate .reg files, then installs nerovision, deletes the association, then imports the associations, then deletes the temporary files. @echo off cls echo Starting Installation of NeroVision Express echo backing up file associations md "%TEMP%\nerotmp" set ShowTimeEXT48=.aac .ac3 .aif .aiff .avi .avs .bup .cda .cdc .dat .gif .ico .ifo .jfif .jpeg .jpg .key .m1v .m2p .m2t .m2v .m3u .m4a .mid .midi .mmv .mod .mov .mp2 .mp3 .mp4 .mpa .mpeg .mpg .pls .png .psd .rmi .tif .tiff .trp .vob .wav .wave .wma .wmf .wmv .xbm for %%e in (%ShowTimeEXT48%) do reg export "HKCR\%%e" "%TEMP%\nerotmp\orig%%e.reg" cls echo installing start /wait setup\Setupx.exe /SILENT /NO_UI /NOREBOOT /NOLICENSE /NOCANCEL for %%f in (%ShowTimeEXT48%) do reg delete "HKCR\%%f" /f echo reapplying extensions for %%g in (%ShowTimeEXT48%) do regedit /s "%TEMP%\nerotmp\orig%%g.reg" rd /S /Q "%TEMP%\nerotmp"
  2. Starts a separate window to run a specified program or command. START ["title"] [/Dpath] [/I] [/MIN] [/MAX] [/SEPARATE | /SHARED] [/LOW | /NORMAL | /HIGH | /REALTIME | /ABOVENORMAL | /BELOWNORMAL] [/WAIT] [/B] [command/program] [parameters] The first parameter is the title if its in quotes, so to use paths with spaces you have to set the title, like this. start /wait "" "%PROGRAMFILES%\Mozilla Firefox\firefox.exe" -silent -setDefaultBrowser
×
×
  • Create New...