Jump to content

a06lp

Member
  • Posts

    976
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

Everything posted by a06lp

  1. how do i silently install and register GoldWave v5? (http://www.goldwave.com/release.php) thanks!
  2. glad to hear it works. one of the great things about the autoit aspect of this method is that its so customizable. enjoy!
  3. Just thought I'd point something out... The OTHER Drivers-from-CD method didn't work with RyanVM's Update Packs. However, this method, as outlined in the first post, is tested, and WORKS, with v1.3.1 of his pack. Enjoy!
  4. wow. just read through this thread and i'm sooo confused. I've always used the classic: 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:\WIN51 set CDROM=%%i: ECHO Found CD-Rom as drive %CDROM% to determine my CDROM drive. I used it because I always test out my batch files first from my external USB HDD, which i later compile & burn onto a DVD for installation. I am trying to figure out the best way to determine the drive. is my method best? i don't like the method with stuff on top and bottom, and i edit in between. i like having the file find the cdrom drive in the beg. and then i do what i want afterwards. what's best for me?
  5. i dont know any vbs. i was hoping for batch file. can you help?
  6. ok, new q: I also want to create a backup cmd file. This is a litle more complicated. The first thing I want it to do is check if the folder "My Documents" exists on %BACKUP%. IF it does, I want it renamed as "My Documents (mm-dd-yy)". Same with bookmarks.html (IF it exists, then it becomes bookmarks (mm-dd-yy).html) and Administrator.wab (IF it exists, then it becomes Administrator(mm-dd-yy).wab). The other thing i need it to do is to go into the "%systemdrive%\Documents and Settings\Administrator\Application Data\Mozilla\Firefox\Profiles" directory, get the folder name from in there (a random string of chars), then go into that directory, and copy the bookmarks.html to the %backup%. Can anyone help me with this? [edit] by the way, @Yzöwl: that code is incorrect - it copies all the stuff into %UserProfile%, not into My Documents. the modified, and correct, code is: XCOPY "%BACKUP%\My Documents" "%UserProfile%\My Documents\" /ECIQY
  7. i used to use a cmd file to auto-backup, and auto-restore my personal settings (eg - my docs, my pics, my music, outlook express accounts, outlook express settings). i lost the file, and am trying to re-write it. however, for some reason, "my documents" aren't copying over properly - they copy to "C:\Documents and Settings\Administrator\My Documents", but the desktop "my documents" icon leads to an empty folder. (and there is ONLY one account on the comp - the admin one, created by defualt with xp). Can someone check over my batch and tell me what's wrong? CLS @echo off TITLE N Restore 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:\Backup set BACKUP=%%i: ECHO Found Backup as drive %BACKUP%. ECHO Copying My Documents... XCOPY "%BACKUP%\My Documents\*.*" "%UserProfile%\My Documents\" /E /Q /Y ECHO Done. ECHO Copying Outlook Express Settings... regedit /s "%BACKUP%\N Outlook Express.reg" ECHO Done. ECHO Copying Outlook Express Address Book... ECHO Done. ECHO Copying Firefox Bookmarks... ECHO Done. PAUSE goto :eof
  8. http://www.msfn.org/board/index.php?showtopic=51406 Enjoy.
  9. i used to use a cmd file to auto-backup, and auto-restore my personal settings (eg - my docs, my pics, my music, outlook express accounts, outlook express settings). i lost the file, and am trying to re-write it. however, for some reason, "my documents" aren't copying over properly - they copy to "C:\Documents and Settings\Administrator\My Documents", but the desktop "my documents" icon leads to an empty folder. (and there is ONLY one account on the comp - the admin one, created by defualt with xp). Can someone check over my batch and tell me what's wrong? CLS @echo off TITLE N Restore 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:\Backup set BACKUP=%%i: ECHO Found Backup as drive %BACKUP%. ECHO Copying My Documents... XCOPY "%BACKUP%\My Documents\*.*" "%UserProfile%\My Documents\" /E /Q /Y ECHO Done. ECHO Copying Outlook Express Settings... regedit /s "%BACKUP%\N Outlook Express.reg" ECHO Done. ECHO Copying Outlook Express Address Book... ECHO Done. ECHO Copying Firefox Bookmarks... ECHO Done. PAUSE goto :eof
  10. bump - im looking for this too.
  11. anyone know how to silently register it?
  12. Anyone know how to install this unattended? and ALSO REGISTER IT? (which reg keys, etc.) Tag&Rename 3.2 rc2 (middle of the page): http://www.softpointer.com/tr.htm Thanks!
  13. or a conditional install... IF EXIST %SYSTEMROOT%\system32\atiddc.dll REG ADD %KEY%\055 /VE /D "Catalyst Control Panel" /f IF EXIST %SYSTEMROOT%\system32\atiddc.dll REG ADD %KEY%\055 /V 1 /D "%SYSTEMDRIVE%\ATI\CP\Setup.exe /K" /f
  14. Ditto... how's this any better/different than Alanoll's release?
  15. Yeah, this ended up being my solution. At first I was told it was impossible, but a way was found.
  16. I have a PC which I use both as a HTPC, and as a regular PC. Connected to my video card (ATI Catalyst), I have my TV (32") through S-Video, and a Monitor (17") through the reg. monitor port. I have my HTPC program (Meedio) set up to open and run on the TV (primary monitor), but NOT on the ComputerMonitor (secondary monitor). I want the ComputerMonitor to only display the desktop (and whatever else I decide to open). Is there some kind of regtweak to make all apps, by default, open on the secondary monitor (the extended desktop)?
  17. Updated first post. As of this post, everything is updated and working. =)
×
×
  • Create New...