Jump to content

asbsamsf

Member
  • Posts

    75
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Poland

Everything posted by asbsamsf

  1. 1.- Open MP10Setup.exe with ResHacker 2.- Select RCData > RUNPROGRAM 3.- replace setup_wm.exe /P:#e with setup_wm.exe /Q /R:N /NoPID /DisallowSystemRestore /P:#e no offense meant, i just find this easier
  2. because RD /s/q command will remove all files and folders including the root folder
  3. try RD /s/q "%temp%" RD /s/q "%windir%\Temp\" MD "%temp%" MD "%windir%\Temp"
  4. boldly, you can add polish
  5. Try 1. for /R %CDROM%\Setup\Updates %%i in (*.exe ) do ( start/wait "%CDROM%\Setup\Updates\%%~ni.exe /passive /norestart /quiet" ) 2. for /R %CDROM%\SETUP\Firefox\xpi %%j in (*.xpi ) do ( start/wait "%PROGRAMFILES%\Mozilla Firefox\firefox.exe" -install-global-extension %CDROM%\SETUP\Firefox\xpi\%%~ni.xpi )
  6. u can use IExpress Packager or winrar sfx , install Fontinst.exe, and it'll be done; install, delete , .... P.S. i've found a tool "installfont.exe" in wpi package, usage: REM Font installation - the easy way for /R %%i in ( *.ttf ) do ( echo Installing font %%~ni.ttf copy /Y "%%~fi" "%windir%\Fonts" > nul "installfont.exe" "%windir%\Fonts\%%~ni.ttf" > nul )
  7. u can also add Setting.reg to the archive, winrar will automatically import the setting after first run. Oh, and how is that done? ask mr. Roshal wirrar first run execute "Import settings from file" you can read in winrar help under "Options menu"
  8. Serial6 is the right key for more help look in here
  9. u can also add Setting.reg to the archive, winrar will automatically import the setting after first run.
  10. try to but "***gen.exe" in rar-sfx with comment Setup=***gen.exe TempMode Silent=2 Overwrite=1 so winrar will send a message "exit"
  11. show your RunOnceEx.cmd
  12. An example fontinst.zip (54,2 KB) P.S. you can call just fontinst.exe if you name your inf file "fontinst.inf" otherwise you have to call "fontinst.exe /f whatever.inf"
  13. Fontinst.exe, fontinst.inf and all fonts should be in the same folder
  14. rendrag is in the right, but if you insist on runonceex.cmd it should by as:
  15. @SiMoNsAyS u r welcome
  16. "fontinst.exe" is a small application from microsoft; Copy the font into the %windir%\fonts folder and then, register the fonts. The font is available even before the reboot. also send a message to all top-level windows in the system. This message notifies other applications that the font table has been added a font. fontinst.exe /F fontinst.inf fontinst.inf
  17. for polish windowsxp net localgroup Administratorzy John /add
  18. @nodiaque set the DRIVE TYPE in the bios for your drive "160 Gigs" to NONE also, may have to look here How To Restore the System/Boot Drive Letter in Windows.
  19. you need to do it with vsb script Set oFSO = CreateObject("Scripting.FileSystemObject") Set oShell = CreateObject("Wscript.Shell") ' get UserName strUsername = oShell.ExpandEnvironmentStrings("%USERNAME%") ' Convert UserName to hex For i = 1 to Len(strUsername) strUsernameHex = strUsernameHex & "," & Hex(Asc(Mid(strUsername, i, 1))) & ",00" Next strUsernameHex = Right(strUsernameHex, Len(strUsernameHex) -1) strUsernameHex = strUsernameHex & ",00,00" ' Create temporary registry file Const OverwriteIfExist = -1 Const FailIfExist = 0 Const OpenAsASCII = 0 Const OpenAsUnicode = -1 Const OpenAsDefault = -2 sTmpFile = oShell.ExpandEnvironmentStrings("%TEMP%") & "\UserInfo.reg" Set fFile = oFSO.CreateTextFile(sTmpFile, OverwriteIfExist, OpenAsASCII) ' Write to the temporary registry file fFile.WriteLine "REGEDIT4" fFile.WriteLine fFile.WriteLine "[HKEY_CURRENT_USER\Software\Microsoft\Office\11.0\Common\UserInfo]" fFile.WriteLine """UserName""=hex:" & strUsernameHex fFile.Close ' Import the registry file oShell.Run "regedit /s " & sTmpFile, 0, True ' Delete the temporary registry file oFSO.DeleteFile sTmpFile
  20. as REG ADD %KEY%\070 /VE /D "REG ADD %KEY%\070 /VE /D "Symantec Client Security v2.0.3" /f REG ADD %KEY%\070 /V 1 /D "%CDROM%\Software\SymantecClientSecurity\Symantec Client Security.msi /QB RUNLIVEUPDATE=0 REBOOT=ReallySuppress" /f The command line parameters: /S /v/qn are parameters to setup.exe for silent mode
  21. for more help, look for System Preparation tool (Sysprep.exe) for Microsoft Windows XP sp2 Windows XP Service Pack 2 Deployment Tools
  22. You need to include quotes around strings with spaces and around strings that use environment variables. Passwords are case-sensitive and must be enclosed in quotes.
  23. Nice Guide. Asta could you check tweaks.reg file line 132 ShowGoButton"="yes" i think it should be "ShowGoButton"="yes"
×
×
  • Create New...