Jump to content

Tsunami

Member
  • Posts

    292
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Netherlands

Everything posted by Tsunami

  1. Nope, US is more of an exception @Fl1pa0: Have you removed the LANG-folder or used nLite to remove the languages? Or try it without the quotes.
  2. Set the toolbars the way you want them and export the following key: [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar] This contains all the settings for the Internet Explorer, Windows Explorer and Explorer windows.
  3. I believe he means the command in a batch file REG DELETE HKCU\Software\Microsoft\Windows\CurrentVersion\Run /V ChikkaIM
  4. Is it so difficult to open up a cmd window and type "defrag /?"... So I guess the best command would be:
  5. [HKEY_CURRENT_USER\Software\Ahead\Nero - Burning Rom] plenty of tweaks there
  6. You can use DevCon as an alternative to Device Manager. I believe this command disables the basic (onboard) USB-controllers: Edit: oh yeh, forgot the command for CDROM-drives :
  7. I've just tried this in VB6, and I found that it only works in the program itself. If you move out of the program, the cursor is shown again.
  8. First result @ Google: You can use MSInfo32.msc /report <filename> to export system information to a text file (this is a pretty big file, 1.5MB here).
  9. It would be better/shorter if you did something like this: @ECHO OFF TITLE Application Install Batch :Menu1 ECHO Do you want to script / batch install basic apps ECHO (Acrobat / Winzip / Office etc) ECHO. SET /P USERINP=Choose a letter (Y or N): SET USERINP=%USERINP:~0,1% IF /I "%USERINP%" == "Y" GOTO App IF /I "%USERINP%" == "N" GOTO End CLS ECHO. ECHO Invalid choice, please select "Y" or "N" PAUSE GOTO Menu1 :App FOR %%D IN (D E F G) DO IF EXIST %%D:\#Adobe#\AdbeRdr60_enu_full.exe SET D=%%D IF NOT EXIST %D%:\#Adobe#\AdbeRdr60_enu_full.exe GOTO End ECHO Now installing Acrobat Reader START /WAIT %D%:\#Adobe#\AdbeRdr60_enu_full.exe -p"-s /v\"/qn\"" ECHO Now installing another app START /WAIT %D%:\ :End But, if you don't want to change it, it still looks fine to me
  10. I think it's possible from a batch file, but I can't cough up a file right now. I'll see what I can do Edit: I'm not sure if this will always work, if you find some errors tell me and I'll see if I can fix it. @ECHO OFF FOR /F "tokens=2 delims=." %%A IN ("%1") DO SET EXT=%%A REG ADD HKCR\.%EXT%\shell\open\command /VE /D "notepad.exe %%1" /F START notepad.exe %1 EXIT Save this as notepad.bat and put it in your system32 directory. Then import this to the registry: [HKEY_CLASSES_ROOT\*\shell] @="notepad.bat \"%1\"" [HKEY_CLASSES_ROOT\*\shell\open] @="Open &With Notepad" [HKEY_CLASSES_ROOT\*\shell\open\command] @="notepad.bat \"%1\""
  11. Well, I don't know about Quake-configs, but it doesn't matter if you use quotes or not. Just make sure you set Save As Type to All Files, and then type winnt.sif in the File Name box. Edit: I just tested it, and you're right. If you use quotes it won't add the .txt extension. So you can either use quotes, or do what's above
  12. Maybe a late reply, and I don't know if you can find this on this forum, but I found it easily with Google, so here it is: [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer] "NoWindowsUpdate"=dword:00000001
  13. A .vbs file can run directly, but a .reg file will ask if you want to import it into the registry. Use this instead: REGEDIT /S %SystemDrive%\Install\Registry\regtweaks.reg
  14. This should set the Default Profile's compression to Best: [HKEY_CURRENT_USER\Software\WinRAR\Profiles\0] "Method"=dword:00000005
  15. or this in a reg file: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Environment] "TEMP"="%SystemDrive%\tmp" "TMP"="%SystemDrive%\tmp"
  16. No s***! everybody knows this Why did it take you so long to figure it out?
  17. It's the file title.wm_ (WMA file). If you want to modify the movie, look for intro.wm_ (WMV file). They're both located in the I386 dir of your XP-cd, or in %SystemRoot%\system32\oobe\images after install.
  18. The path is %AllUsersProfile%\Application Data\Microsoft\User Account Pictures
  19. Yes, just add the second batch at the end of your first RunOnceEx.
  20. I think the only way it will not be processed if you have OOBE removed completely. If you tell it not to show up from winnt.sif, it will still run, you just don't see it.
  21. Can I ask the same for setting wave & master volume to 100%? I believe this is also hardware dependant...
  22. that's nice MHz, but you will still have to create the user if the folder exists. I haven't found a way to do this yet either, so I can't help here.
  23. I'm not sure what this has to do with games, but yes, if you would leave out the serial in winnt.sif, it would ask for a serial each time you install Windows.
×
×
  • Create New...