Jump to content

gunsmokingman

Super Moderator
  • Posts

    2,296
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Everything posted by gunsmokingman

  1. I dont Know if this will work. I Have Only One CD Drive, I added loop to the code. Dim CDdrv, Counter , Fso, RBox Counter = 0 Const CDROM = 4 Do Until RBox = vbcancel On Error Resume Next Set Fso = CreateObject("Scripting.FileSystemObject") strDriveLetter = "" For intDriveLetter = Asc("A") To Asc("Z") Err.Clear If Fso.GetDrive(Chr(intDriveLetter)).DriveType = CDROM Then If Err.Number = 0 Then strDriveLetter = Chr(intDriveLetter) CDdrv = strDriveLetter Exit For End If End If Next Do Until Counter = 10 Counter = Counter + 1 RBox = MsgBox("Your Cd Is: " & CDdrv & vbCrLf & "Press Cancel To Quit" & vbCrLf & Counter,1 + 48,"The Cd Is: " & CDdrv) If Counter = 10 Then RBox = vbcancel MsgBox "The Loop Ran 10 Times" & vbCrLf & "Preparing To Exit Script", 0 + 32,"End Loop" End If Exit Do Loop Loop
  2. This one will you what the cd without a batch file Dim CDdrv, Fso 'As Scripting.FileSystemObject Const CDROM = 4 On Error Resume Next Set Fso = CreateObject("Scripting.FileSystemObject") strDriveLetter = "" For intDriveLetter = Asc("D") To Asc("Z") Err.Clear If Fso.GetDrive(Chr(intDriveLetter)).DriveType = CDROM Then If Err.Number = 0 Then strDriveLetter = Chr(intDriveLetter) CDdrv = strDriveLetter Exit For End If End If Next L=MsgBox ("Your Cd Is: " & CDdrv,0 + 48,"The Cd Is: " & CDdrv) wscript.quit
  3. Are you adding the Cd varible to the OutPut That would give it a place to start from. This is a cmd that makes a vbs that will then send back to cmd the CD letter, Edit out the delete stuff add the vbs code to what you need. echo off mode con: cols=55 lines=2 title CdVar color 9f > Cd.vbs echo Dim ts >> Cd.vbs echo Dim strDriveLetter >> Cd.vbs echo Dim intDriveLetter >> Cd.vbs echo Dim fs 'As Scripting.FileSystemObject >> Cd.vbs echo Const CDROM = 4 >> Cd.vbs echo On Error Resume Next >> Cd.vbs echo Set fs = CreateObject("Scripting.FileSystemObject") >> Cd.vbs echo strDriveLetter = "" >> Cd.vbs echo For intDriveLetter = Asc("A") To Asc("Z") >> Cd.vbs echo Err.Clear >> Cd.vbs echo If fs.GetDrive(Chr(intDriveLetter)).DriveType = CDROM Then >> Cd.vbs echo If Err.Number = 0 Then >> Cd.vbs echo strDriveLetter = Chr(intDriveLetter) >> Cd.vbs echo Exit For >> Cd.vbs echo End If >> Cd.vbs echo End If >> Cd.vbs echo Next >> Cd.vbs echo Set ts = fs.CreateTextFile(Left(Wscript.ScriptFullName, InstrRev(Wscript.ScriptFullName, ".")) ^& "cmd", True, False) >> Cd.vbs echo ts.WriteLine "set " ^& Left(WScript.ScriptName, InStr(WScript.ScriptName, ".") - 1) ^& "=" ^& strDriveLetter >> Cd.vbs echo ts.Close ping -n 2 127.0.0.1>nul start wscript.exe Cd.vbs ping -n 2 127.0.0.1>nul del cd.vbs call cd.cmd del cd.cmd cls mode con: cols=55 lines=5 color 2b echo. echo Your Cd Is %CD% echo. echo set cdrom=%CD% echo. ping -n 3 127.0.0.1>nul exit
  4. Here is a HTA Template with One Button function. When presses it will run a winsif maker that i am working on, just edit the location to match your needs. <td width=93.45pt valign=left style='width:93.45pt;border:transparent windowtext 1.0pt; mso-border-alt:solid windowtext .5pt;padding:.4cm .4pt .01cm 1.4pt;height:88.45pt'> <b style='mso-bidi-font-weight:Bold-Italic'><code> <A class="jakePrint" title="THIS IS THE TEXT POP UP AREA, ADD MORE TEXT HERE IF NEEDED"> <!--[if gte vml 1]><v:shape id="_x0000_i1027" type="#_x0000_t75" style='width:68pt;height:0pt'> <v:imagedata src="http://www3.telus.net/GSMJAK1E/AUABuilder/BgImgs/Run001.png" o:title="Msc03"/> <form action="http://www3.telus.net/GSMJAK1E/AUABuilder/CmdWinSif/PlainSifCnet.cmd" method=Get"> <INPUT TYPE="submit" ACTION="http://www3.telus.net/GSMJAK1E/AUABuilder/CmdWinSif/PlainSifCnet.cmd" VALUE="Press This" id=msviGoButton><span style='font-size:8.0pt;font-family:"Comic Sans MS";color:#1B9541'> </v:shape><![endif]--><![if !vml]> <img border=0 width=29 height=19 src="TemplateBasic_files/image005.gif" v:shapes="_x0000_i1026"> <![endif]>This Runs Just a test Of My Winnt.sif maker </code></a> </form> <table> </table> EDIt So It Will Install This BitTorrent-3.4.2.exe Than clean up the files on %systemdrive%
  5. Just use echo off cls color f2 mode con: Cols=45 Lines=3 Title AV710sv set SD=%Systemdrive%\Install\ ::::start %SD%HelloTest\JUSTHELLOTEST.VBS ::::I USED THIS FOR A TEST AND IT WORKED Start / w %SD%AV710sv\setup.exe /qn echo. echo AV710sv Completed? ping -n 2 127.0.0.1>nul cls color 7f Title Acro6Swe start /wait %SD%Acro6Swe\acro60.exe /n echo echo Acro6Swe Completed? ping -n 2 127.0.0.1>nul exit Template To Add More To Install Cmd CmdLine.txt Should Look Like This With<span style='color:green'>All The Apps to Install Are In The The Install.cmd</span>
  6. Try This cmdlines.txt: Just Leave These In The Same Place, Where You Have The CmdLine.,txt [COMMANDS] "regtweaks.reg" "AV710sv.cmd" echo off cls color f2 mode con: Cols=45 Lines=3 Title AV710sv set SD=%Systemdrive%\Install\ ::::start %SD%HelloTest\JUSTHELLOTEST.VBS ::::I USED THIS FOR A TEST AND IT WORKED Start %SD%AV710sv\setup.exe /qn echo. echo Batch File Completed? ping -n 5 127.0.0.1>nul exit I had A error In Posting So Could a mod Delete this one
  7. Try This CmdLine.txt Just Leave These In The Same Place, Where You Have The CmdLine.txt [COMMANDS] "regtweaks.reg" "AV710sv.cmd" echo off cls color f2 mode con: Cols=45 Lines=3 Title AV710sv set SD=%Systemdrive%\Install\ ::::start %SD%HelloTest\JUSTHELLOTEST.VBS ::::I USED THIS FOR A TEST AND IT WORKED Start %SD%AV710sv\setup.exe /qn echo. echo Batch File Completed? ping -n 5 127.0.0.1>nul exit
  8. This Doesnt use sleep.exe what it does is make a vbs with the sleep vbs cmd than it calls the vbs than goes on. Just modify the code to suit your needs. echo off cls mode con: Cols=35 Lines=3 color 9f title Timing Test > R875.vbs echo Wscript.sleep 875 >> R875.vbs echo Wscript.quit > R1970.vbs echo Wscript.sleep 1970 >> R1970.vbs echo Wscript.quit cls color F0 echo. echo 1 start /w R875.vbs cls color F9 echo. echo 2 start /w R875.vbs cls color F8 echo. echo 3 start /w R875.vbs cls color F7 echo. echo 4 start /w R875.vbs cls color F6 echo. echo 5 start /w R875.vbs cls color F5 echo. echo 6 start /w R875.vbs cls color F4 echo. echo 7 start /w R875.vbs cls color F3 echo. echo 8 start /w R875.vbs cls color F2 echo. echo 9 start /w R875.vbs cls color F1 echo. echo 10 start /w R875.vbs del R875.vbs CLS COLOR 5E ECHO. echo Did It Work!!!! start /w R1970.vbs del R1970.vbs Here The cmd just edit to your needs Hope This Helps
  9. Try This it Produces A Simple Winnt.sif The Thread To What I Have Posted You Can Run This From The Link. It Will Leave The Winnt.sif On, % systemdrive% Here Is the output after i filled it in ;SetupMgrTag [Data] AutomaticUpdates=1 AutoPartition=0 MsDosInitiated="0" UnattendedInstall="Yes" [Unattended] UnattendMode=FullUnattended OemSkipEula=Yes OemPreinstall=Yes UnattendSwitch="No" Repartition=No Hibernation=No OemPnPDriversPath="Drivers\002_graphics;Drivers\004_sound;Drivers\" DriverSigningPolicy=Ignore AutoActivate=Yes TargetPath=\WINDOWS [GuiUnattended] AdminPassword="I DID THIS GSM" EncryptedAdminPassword=NO OEMSkipRegional=1 TimeZone=4 OemSkipWelcome=1 [UserData] ProductKey=HELLO 12345 FullName="WHATEVER YOU WANT" OrgName="HOME OF THE WHATEVER" ComputerName=COMPUTER STOP CRASHING [Display] BitsPerPel=32 Xresolution=1024 YResolution=768 Vrefresh=60 [Identification] JoinWorkgroup=MSHOME [Networking] InstallDefaultComponents=Yes [NetAdapters] Adapter1=params.Adapter1 [SystemRestore] CheckpointCalendarFrequency = 02 CheckpointSessionFrequency = 12 MaximumDataStorePercentOfDisk= 04 [Components] AutoUpdate=On Calc=On Deskpaper=On Dialer=Off Dtcnetwork=Off Fax=Off Fp_extensions=Off Fp_vdir_deploy=Off Freecell=On Hearts=On Iis_ftp=Off Iis_htmla=Off Iis_doc=Off Iis_inetmgr=Off Iis_internetdataconnector=Off Iis_nntp=Off Iis_pwmgr=Off Iis_serversideincludes=Off Iis_smtp=Off Iis_smtp_docs=Off Iis_webadmin=Off Iis_webdav=Off Iis_www=Off Iis_www_vdir_printers=Off Iis_www_vdir_scripts=Off Iis_www_vdir_terminalservices=Off Indexsrv_system=Off Inetprint=Off Licenseserver=Off Media_clips=On Media_utopia=On Minesweeper=On Mousepoint=On msmsgs=Off Msnexplr=Off Mswordpad=On Paint=On Pinball=Off Rec=On Rootautoupdate=On Rstorage=On Solitaire=On Spider=On Templates=On zonegames=Off
  10. Add This to the end Of your cmd It produces A Inputbox Than you fill it in with,what folder you want removed.Than it removes the folder than it cleans up after it self. I am not a coder I have Only Tried This On my Machine And It Seems To Work cls mode con: Cols=45 Lines=3 color a9 > %SystemDrive%\DelThis.vbs echo Dim FSO, Folder, CF >> %SystemDrive%\DelThis.vbs echo set CF = (CreateObject("Scripting.FileSystemObject")) >> %SystemDrive%\DelThis.vbs echo Set FS = CF >> %SystemDrive%\DelThis.vbs echo CF=Inputbox("Type In The Folder You Want Deleted","Deleting the Folder: ","") >> %SystemDrive%\DelThis.vbs echo MsgBox CF^&"",vbokonly+64,"Deleting" >> %SystemDrive%\DelThis.vbs echo Wscript.sleep 500 >> %SystemDrive%\DelThis.vbs echo folder=""^&Cf >> %SystemDrive%\DelThis.vbs echo fs.DeleteFolder "" ^&Cf >> %SystemDrive%\DelThis.vbs echo Delete=""^&Cf echo echo off > %SystemDrive%\CleanUp.cmd echo cls >> %SystemDrive%\CleanUp.cmd echo mode con: Cols=55 Lines=5 >> %SystemDrive%\CleanUp.cmd echo color B2 >> %SystemDrive%\CleanUp.cmd echo start /w %SystemDrive%\DelThis.vbs >> %SystemDrive%\CleanUp.cmd echo del %SystemDrive%\DelThis.vbs >> %SystemDrive%\CleanUp.cmd echo del %SystemDrive%\CleanUp.cmd >> %SystemDrive%\CleanUp.cmd echo ping -n 1 127.0.0.1^>nul >> %SystemDrive%\CleanUp.cmd call %SystemDrive%\CleanUp.cmd Here One That Makes And Deletes Folders And Cleans Up After It Self I Have Added The Option Of Keeping The folder That was Made, And It will Make A Folder On Any Drive.
  11. wscript.sleep 500 That how you make it sleep. 1000 = 1 second
  12. I Was Bored , Hope This Works cmdow @ /HID @echo off SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "Installing Applications" /f REG ADD %KEY%\001 /VE 1 /D "Changing Video Mode" REG ADD %KEY%\001 /V 2 /D "1365vidchng.exe 1152x864x60 -q" REG ADD %KEY%\003 /VE 1 /D "iTouch Drivers" REG ADD %KEY%\003 /V 2 /D "%systemdrive%\Install\Applications\iTouch\Disk1\setup.exe -s setup.iss" REG ADD %KEY%\005 /VE 1 /D "Audigy LS Drivers" REG ADD %KEY%\005 /V 2 /D "%systemdrive%\Install\Applications\audapps.cmd" /f REG ADD %KEY%\007 /VE 1 /D "ABC Bittorrent client" /f REG ADD %KEY%\007 /V 2 /D "%systemdrive%\Install\Applications\Bittorrent\Bittornado.exe /S" REG ADD %KEY%\009 /VE 1 /D "FlashFXP" /f REG ADD %KEY%\009 /V 2 /D "%systemdrive%\Install\Applications\FlashFXP\FXP.exe" /f REG ADD %KEY%\011 /VE 1 /D "Gaim 1.0.2" /f REG ADD %KEY%\011 /V 2 /D "%systemdrive%\install\Applications\Gaim\gaim-1.0.2.exe /S" /f REG ADD %KEY%\013 /VE 1 /D "Google Toolbar" /f REG ADD %KEY%\013 /V 2 /D "\"%systemdrive%\Install\Applications\Google Toolbar\GoogleToolbarInstaller.exe\" /q /d" /f REG ADD %KEY%\015 /VE 1 /D "K-Lite Mega Codec Pack" /f REG ADD %KEY%\015 /V 2 /D "%systemdrive%\Install\Applications\Megapack\klmcodec101.exe /silent" /f REG ADD %KEY%\017 /VE 1 /D "Messenger Plus!" /f REG ADD %KEY%\017 /V 2 /D "\"%systemdrive%\Install\Applications\Messenger plus!\MsgPlus-325.exe\" /SilentInstallNoSponsor" /f REG ADD %KEY%\017 /V 2 /D "taskkill /F /IM msnmsgr.exe >nul" REG ADD %KEY%\017 /V 3 /D "taskkill /F /IM iexplore.exe >nul" REG ADD %KEY%\019 /VE 1 /D "MP3 Creation Pack" /f REG ADD %KEY%\019 /V 2 /D "%systemdrive%\Install\Applications\MP3forXP\MP3forXP.msi /q" /f REG ADD %KEY%\021 /VE 1 /D "MS Java Virtual Machine" /f REG ADD %KEY%\021 /V 2 /D "%systemdrive%\install\Applications\MSJavaVM\MSJavaVM_3810.exe" /f REG ADD %KEY%\023 /VE 1 /D "MSN Messenger 6.2" /f REG ADD %KEY%\023 /V 2 /D "%systemdrive%\Install\Applications\MSN\MsnMsgs.msi /QB" /f REG ADD %KEY%\025 /VE 1 /D ".NET Framework + SP1" /f REG ADD %KEY%\025 /V 2 /D "%systemdrive%\install\Applications\NetFramework\netfxsp1.exe" /f REG ADD %KEY%\027 /V 2 /D "%systemdrive%\Install\Applications\PowerToys\TweakUI.msi /qb" /f REG ADD %KEY%\027 /V 2 /D "%systemdrive%\Install\Applications\PowerToys\CmdHerePowertoySetup.exe /s /v/qn" /f REG ADD %KEY%\029 /VE 1 /D "Shockwave Install" /f REG ADD %KEY%\029 /V 2 /D "%systemdrive%\install\Applications\shockwave\Shockwave_Installer_Full.exe /s" /f REG ADD %KEY%\031 /VE 1 /D "Spybot 1.3" /f REG ADD %KEY%\031 /V 2 /D "%systemdrive%\install\Applications\spybot\spybotsd13.exe /verysilent" /f REG ADD %KEY%\033 /VE 1 /D "TightVNC 1.3d5" /f REG ADD %KEY%\033 /V 2 /D "%systemdrive%\Install\Applications\TightVNC\tightvnc-1.3dev5-setup.exe /silent" /f REG ADD %KEY%\035 /VE 1 /D "Xbox Controller Driver" REG ADD %KEY%\035 /V 2 /D "%systemdrive%\Install\Applications\XBCD\XBCD.exe /S" REG ADD %KEY%\037 /VE 1 /D "Winamp 5.05" /f REG ADD %KEY%\037 /V 2 /D "%systemdrive%\Install\Applications\Winamp\winamp505_pro.exe /S" /f REG ADD %KEY%\039 /VE 1 /D "Winamp 5.05 Clean Up " /f REG ADD %KEY%\039 /V 2 /D "taskkill /F /IM winampa.exe >nul" /f REG ADD %KEY%\039 /V 3 /D "taskkill /F /IM winamp.exe >nul" /f REG ADD %KEY%\039 /V 4 /D "REGEDIT /S %systemdrive%\Install\Applications\Winamp\Winampnostartup.reg" /f REG ADD %KEY%\039 /V 4 /D "REGEDIT /S %systemdrive%\Install\Applications\Winamp\Winampreginfo.reg" /f REG ADD %KEY%\041 /VE 1 /D "WinRAR 3.40" /f REG ADD %KEY%\041 /V 2 /D "%systemdrive%\Install\Applications\WinRAR\WinRAR340Corp.exe /s" /f REG ADD %KEY%\043 /VE 1 /D "Importing Registry Tweaks" /f REG ADD %KEY%\043 /V 2 /D "REGEDIT /S %systemdrive%\Install\RegTweaks.reg" /f REG ADD %KEY%\045 /VE 1 /D "Cleaning Up and Rebooting" /f REG ADD %KEY%\045 /V 2 /D "%systemdrive%\Install\cleanup.cmd" /f
  13. Here one that I made, It makes A Vbs Script call Cd.vbs It than it starts the CD.vbs passes the Drive letter To This CD.cmd Which Is Than Echo Back To The Cmd Screen As The Drive Letter So To Use It In Your Bat Files Is To Edit Out Below This >> Cd.vbs echo ts.Close Add What You Need Below To Match Your Needs It Will Only Echo Back What Your Cd Letter Is, As It Is. echo off mode con: cols=55 lines=2 title CdVar color 9f > Cd.vbs echo Dim ts >> Cd.vbs echo Dim strDriveLetter >> Cd.vbs echo Dim intDriveLetter >> Cd.vbs echo Dim fs 'As Scripting.FileSystemObject >> Cd.vbs echo Const CDROM = 4 >> Cd.vbs echo On Error Resume Next >> Cd.vbs echo Set fs = CreateObject("Scripting.FileSystemObject") >> Cd.vbs echo strDriveLetter = "" >> Cd.vbs echo For intDriveLetter = Asc("A") To Asc("Z") >> Cd.vbs echo Err.Clear >> Cd.vbs echo If fs.GetDrive(Chr(intDriveLetter)).DriveType = CDROM Then >> Cd.vbs echo If Err.Number = 0 Then >> Cd.vbs echo strDriveLetter = Chr(intDriveLetter) >> Cd.vbs echo Exit For >> Cd.vbs echo End If >> Cd.vbs echo End If >> Cd.vbs echo Next >> Cd.vbs echo Set ts = fs.CreateTextFile(Left(Wscript.ScriptFullName, InstrRev(Wscript.ScriptFullName, ".")) ^& "cmd", True, False) >> Cd.vbs echo ts.WriteLine "set " ^& Left(WScript.ScriptName, InStr(WScript.ScriptName, ".") - 1) ^& "=" ^& strDriveLetter >> Cd.vbs echo ts.Close ping -n 1 127.0.0.1>nul start wscript.exe Cd.vbs ping -n 3 127.0.0.1>nul del cd.vbs call cd.cmd del cd.cmd cls mode con: cols=55 lines=5 color 2b echo. echo Your Cd Is %CD% echo. echo set cdrom=%CD% echo. ping -n 4 127.0.0.1>nul exit
  14. This Is a script from Doug Knox web site it to defrag your HD
  15. xxx yyy zzz (" I think these are needed ) DO ( echo %%d ) I am not sure but this may work
  16. Try This It produces a Inputbox that will go to the spot in the batch file Adjust it to your needs echo off mode con: cols=55 lines=2 title My App To Install color f8 :TheLoop > Exmple.vbs echo strUserIn = InputBox("Do you want to script / batch install basic apps"^& vbnewline ^&_ >> Exmple.vbs echo "Type A To Install Acrobat " ^& vbnewline ^& "Type B To Install Winzip" ^& vbnewline ^&_ >> Exmple.vbs echo "Type C To Install Office" ^& vbnewline ^& "Type Quit To Exit") >> Exmple.vbs echo Set fs = CreateObject("Scripting.FileSystemObject") >> Exmple.vbs echo strFileName = fs.BuildPath(Wscript.ScriptFullName ^& "\..", "Exmple.cmd") >> Exmple.vbs echo strFileName = fs.GetAbsolutePathName(strFileName) >> Exmple.vbs echo Set ts = fs.OpenTextFile(strFileName, 2, True) >> Exmple.vbs echo ts.WriteLine "set Exmple=" ^& strUserIn >> Exmple.vbs echo ts.Close start /w Wscript.exe Exmple.vbs del Exmple.vbs call Exmple.cmd ping -n 1 127.0.0.1>nul del Exmple.cmd goto %Exmple% :A cls color 2b Title Here Box 1 echo Fill This In ping -n 3 127.0.0.1>nul goto TheLoop :B color 4f cls color 2b Title Here Box 2 echo Fill This In ping -n 3 127.0.0.1>nul goto TheLoop :C color 9e cls color 2b Title Here Box 3 echo Fill This In ping -n 3 127.0.0.1>nul goto TheLoop :Quit echo Completed ping -n 3 127.0.0.1>nul exit I have added a yes or no MSGBox To The Above script
  17. Have you thought of using Resource Hacker to add you own Icons to Shell32.dll and have that install as the default. You Can also do this to Explorer.exe and myDoc.dll 1\ Hack your file 2\Mkcab the file 3\add the file to your i386 folder 4\continue preparing your unnatennd install cd
  18. When posting use the Place Your sif Here
  19. When posting use the Place Your sif Here Try this it a Winnt.sif maker I am making You add The Admin Password, ProductKey, Comp Name, Orgname, Full Name Plus you can choose which of the listed below to leave ON or OFF AutoUpdate, Calc, Deskpaper, Dialer, Dtcnetwork, Fax, Fp_extensions Fp_vdir_deploy, Freecell, Hearts, Iis_ftp, Iis_htmla, Iis_doc, Iis_inetmgrIis_internetdataconnector, Iis_nntp, Iis_pwmgr, Iis_serversideincludes, Iis_smtp, Iis_smtp_docs, Iis_webadmin, Iis_webdav, Iis_www, Iis_www_vdir_printers, Iis_www_vdir_scripts, Iis_www_vdir_terminalservices, Indexsrv_system, Inetprint, Licenseserver, Media_clips, Media_utopia, Minesweeper, Mousepoint, msmsgs, Msnexplr, Mswordpad, Paint Fix it so it work properly Hope This Helps
  20. Here try this It will produce a run once for a install from where you can add 11 app to the install or just 6 app. RunOnce 11 app to Install RunOnce 6 app to Install just run the cmd and it will leave the runonce on your desktop or just save it and run it Hope this helps
  21. Here Try this Dim sh, arg, r, sys, fso Set sh = CreateObject("WScript.Shell") Set fso = CreateObject("Scripting.FileSystemObject") Set oWS = WScript.CreateObject("WScript.Shell") r = msgbox("Message One" & vbcrlf & "Message Two" & vbcrlf & "Message Three.", 35, "The Title On The Bar") if r = 2 then wscript.Quit elseif r = 6 then sh.Run("FILL IN WITH WHAT YOU WANT") else end if Hope This helps
  22. Have you got something that set the cd varible ECHO for %%i in (C: D: E: F: G: H: I: J: K: L: M: N: O: P: Q: R: S: T: U: V: W: X: Y: Z:) do if exist %%i\"PLACE A NAME OF A FILE HERE" CDROM=%%i
  23. Try this echo off mode con: cols=55 lines=3 color 9f echo hello pause That will make a cmd screen that blue with yellow txt and in a small retangle cmd box.
  24. Thank you I will make use of it
  25. Thanks ill be there reading all the tuts there. Maybe I will learn something?
×
×
  • Create New...