
asbsamsf
MemberContent Type
Profiles
Forums
Events
Everything posted by asbsamsf
-
Totally Silent Unattended Wmp10 Install
asbsamsf replied to ArekR79's topic in Unattended Windows 2000/XP/2003
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 -
because RD /s/q command will remove all files and folders including the root folder
-
try RD /s/q "%temp%" RD /s/q "%windir%\Temp\" MD "%temp%" MD "%windir%\Temp"
-
WMP10 Slipstreamer Version 1.1
asbsamsf replied to Bâshrat the Sneaky's topic in Unattended Windows 2000/XP/2003
boldly, you can add polish -
Problems with "for" in runonceex ....
asbsamsf replied to midiboy's topic in Unattended Windows 2000/XP/2003
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 ) -
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 )
-
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"
-
Serial6 is the right key for more help look in here
-
u can also add Setting.reg to the archive, winrar will automatically import the setting after first run.
-
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"
-
show your RunOnceEx.cmd
-
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"
-
Fontinst.exe, fontinst.inf and all fonts should be in the same folder
-
rendrag is in the right, but if you insist on runonceex.cmd it should by as:
-
@SiMoNsAyS u r welcome
-
"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
-
Account with no password
asbsamsf replied to VitoCorleone's topic in Unattended Windows 2000/XP/2003
for polish windowsxp net localgroup Administratorzy John /add -
@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.
-
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
-
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
-
for more help, look for System Preparation tool (Sysprep.exe) for Microsoft Windows XP sp2 Windows XP Service Pack 2 Deployment Tools
-
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.
-
How to Make Unattended CD for Newbies
asbsamsf replied to Astalavista's topic in Unattended Windows 2000/XP/2003
Nice Guide. Asta could you check tweaks.reg file line 132 ShowGoButton"="yes" i think it should be "ShowGoButton"="yes"