Search found 16 matches
- 04 Jun 2012 15:51
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
I don't believe you want to PIPE the output of those commands to the next command. NO THATS what I want to do.. Per MS the Pipe:" Reads the output from one command and writes it to the input of another command" Which is exactley with I want to do.. run .exe file, then give 1 sec pause to ...
- 04 Jun 2012 12:34
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Thanx for the response Fawers ... after some Googling I rediscoverd the pipe command that does what I need to run all my files in sequence.. :Execute programs simultaneously with the pipe (|) symbol and as oneliner. XviD-Dec.exe /S | ping -n 1 127.0.0.1 >nul | taskkill /f /im XviD-Dec.exe>nul start ...
- 04 Jun 2012 08:58
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Foxi, As you know Windows always has about 3-4 ways to do the same thing... The MSNF forum uses my shorter code and it WORKS great! Your MS code is longer and requires more typing %systemroot%\SysWoW64\regsvr32.exe /s xvid.ax vs mine regsvr32 /s %windir%\syswow64\xvid.ax besides less can be more som...
- 04 Jun 2012 07:32
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
correction.. my bad
regsvr32 /s "%windir%\syswow64\xvid.ax"
regsvr32 /s "%windir%\system32\xvid.ax"
regsvr32 /s "%windir%\syswow64\xvid.ax"
regsvr32 /s "%windir%\system32\xvid.ax"
- 04 Jun 2012 07:31
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Been using that set command for years and it has always worked ..
but If IMYFB then I could use:
regsvr32 /s "%windir%\syswow64\xvid.ax"
regsvr32 /s "%windir%\syswow64\xvid.ax"
but If IMYFB then I could use:
regsvr32 /s "%windir%\syswow64\xvid.ax"
regsvr32 /s "%windir%\syswow64\xvid.ax"
- 04 Jun 2012 07:06
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
foxi ..
since its on a 64-bit system it has a 64-bit .ax then the 32-bit
so both Codecs DO need to be registered.
since its on a 64-bit system it has a 64-bit .ax then the 32-bit
so both Codecs DO need to be registered.
- 04 Jun 2012 06:18
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Foxi I revised my code with a delay as you suggested... Your code will fail on a slower machine as the task will be killed before it finishes. You need a delay before the taskkill. :install start "" XviD-Dec.exe /S /VERYSILENT :delay 1 sec ping -n 1 127.0.0.1 >nul :kill pop-up taskkill /f ...
- 04 Jun 2012 05:33
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
My bad Foxi.. The =%CD% is listed on this site since my .exe is a NSIS installer. [url][http://code.google.com/p/windows-package-manager/wiki/InstallationScripts /url] My finished Install.cmd WORKING Code that I made into a sfx file using winrar... :info :Installs Nic's XviD Decoder for Windows 7 :i...
- 04 Jun 2012 04:23
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Fawers .. FYI What on Earth is that? Why is the current directory the value for "supressmsgboxes"? 1.I know my script may be a little over the top but it does not require a file name for my .exe 2.The Supressmsgbox switch is from m 3.and CD because once everything in my directory is workin...
- 04 Jun 2012 04:02
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
Re: **Dialog pop-up box after Install**
Foxi your the Man!! Or use this so they run concurrently. You will still need to deal with the confirmation box. start "" "%setup%" .... There was no switch to disable the box, and the supressmsgbox switch would not work either but your start "" worked! and then went to...
- 03 Jun 2012 20:46
- Forum: DOS Batch Forum
- Topic: **Dialog pop-up box after Install**
- Replies: 21
- Views: 19796
**Dialog pop-up box after Install**
:================================================================+ @echo off &cls mode con:cols=75 lines=20 for /f "delims=" %%x in ('dir /b *.exe') do set setup=%%x "%setup%" /S /VERYSILENT /HIDE /SUPPRESSMSGBOXES=%CD% taskkill /f /im XviD-Dec.exe>nul :======================...
- 06 Mar 2010 21:15
- Forum: DOS Batch Forum
- Topic: Batch unzip
- Replies: 9
- Views: 9817
Re: Batch unzip
7z Command Description: a Add - create a new archive, or add files to an existing archive d Delete - remove files from an existing archive e Extract - unarchive files l List - display the contents of an archive t Test - validate the integrity of an archive u Update - overwrite existing files in an e...
- 06 Mar 2010 21:09
- Forum: DOS Batch Forum
- Topic: "Destination is not a directory"-ERROR??
- Replies: 5
- Views: 10389
Re: "Destination is not a directory"-ERROR??
Thanks!!! aGerman the quotes did the trick, seems when expanding to the systemdrive you don't need the quotes but when going to the desktop thru a user account you do ,go figure
life is good again ..
life is good again ..
- 06 Mar 2010 18:13
- Forum: DOS Batch Forum
- Topic: Batch unzip
- Replies: 9
- Views: 9817
Re: Batch unzip
Do you have 7z.exe in the System32 directory?
- 06 Mar 2010 17:47
- Forum: DOS Batch Forum
- Topic: "Destination is not a directory"-ERROR??
- Replies: 5
- Views: 10389
Re: "Destination is not a directory"-ERROR??
Thanks for the quick reply aGerman As I said the script that I posted works with the expand path as listed to the C: root drive then xcopy over to the desktop but I want to just expand Straight to the Desktop.I tried your path as suggested expand %windir%\system32\Cabs\software.cab -f:* %Homepath%\D...