Content Type
Profiles
Forums
Events
Everything posted by WwTIPPYwW
-
REG ADD %KEY%\150 /VE /D "SmartFTP 1.0 Build 981" /f REG ADD %KEY%\150 /V 1 /D "%CDROM%\Software\smartftp\smartftp.msi /qn" /f
-
This might be your problem - for every CMD and/or BAT file - you need to add the %cdrom% section: http://unattended.msfn.org/xp/runonceex_cd.htm
-
are all the files where you have them pointed? load the lines in the registry and then look to make sure that it translates properly - so %cdrom% becomes the cd drive and stuff. also in one line you have REG ADD %KEY%\011 and in another you have REG ADD %KEY%\110 also you have unattanded.mst in one line and unattended.mst in the other.
-
Unattended Switches for Netzero client?
WwTIPPYwW replied to nateklomp's topic in Application Installs
maybe close.vbs? close.vbs Set WshShell = WScript.CreateObject("WScript.Shell") WScript.Sleep 1000 WshShell.Sendkeys "%{F4}" do this: ECHO Installing NetZero 7.0 Client... ECHO Please wait... start /wait %systemdrive%\Apps\Netzero.exe /S start /wait %systemdrive%\Apps\close.vbs ECHO. ECHO Killing Netzero.exe process taskkill.exe /F /IM exec.exe of course if you put close.vbs in \$OEM$\$$\System32 you'd just need to do start /wait close.vbs Also - install this before any antivirus software - otherwise the vbs script will probably be blocked. -
solved - i used InstallRite and just created a custom installer.
-
http://www.iolo.com/sm/4/download.cfm Version: 4.0i File Size: 5,441 KB
-
It says its a Nullsoft installer - however /S doesn't work.... download url - http://www.newsbin.com/index.php?mode=file...viewfile&file=1
-
http://unattended.msfn.org/xp/office2003.htm
-
look here for a guide on installing office XP and 2003 - http://unattended.msfn.org
-
possibly a conflict with some current user and local machine settings in the registry? How/when do they get installed?
-
also - to remove desktop shortcuts: DEL "%AllUsersProfile%\Desktop\Free Games & Music.url"DEL "%AllUsersProfile%\Desktop\RealRhapsody Get Free Music.url"to remove the RealScheduler: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]"TkBellExe" = -
-
use a registry compare tool
-
try the K-Lite Codec package - it has Divx and the switches are on the forum. Here - install k-lite codec pack 2.25 on your test computer using the command line switch: /SAVEINF="%SYSTEMDRIVE%\install.inf" and then when you want to silent install use, after moving the install.inf to the same installation folder of the Codec package: /SILENT /SP- /LOADINF="install.inf"
-
can you delete all things in %systemdrive%\recycled ?? or recylcer
-
if you use DEL in DOS - I doesn't go to the recyling bin. Also - DIESEL - shutdown.exe -r -f -t 90 -c "Windows XP will now restart in 1 minute..."90 seconds is not 1 minute. I know you know that, but I'm pointing it out if you want to make them match....like I did.
-
elcomsoft's Advanced Registry Tracker is pretty good. You can create REDO and UNDO reg files based on the change. And it does registry comparisons. http://www.elcomsoft.com/art.html
-
if i remember - its a WISE installer.
-
How to set up an unattended dialup acount?
WwTIPPYwW replied to flattspott's topic in Unattended Windows 2000/XP/2003
%systemdrive%\Documents and Settings\All Users\ = %allusersprofile% here is a shortcut....from a CMD promt type SET to see settings -
Unattended Windows XP Lan Boot Disks
WwTIPPYwW replied to yourtech's topic in Unattended Windows 2000/XP/2003
http://www.bootdisk.com They have lots. -
Integrated Product Key Question ?
WwTIPPYwW replied to ButlerKevinD's topic in Unattended Windows 2000/XP/2003
yes its possible -
Its a registry setting - do a registry comparison before and after manually changing the settings and you might figure it out. Look in these keys: Windows Registry Editor Version 5.00 [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\Session Manager\Memory Management]"PagingFiles"=hex(7):43,00,3a,00,5c,00,70,00,61,00,67,00,65,00,66,00,69,00,6c,\ 00,65,00,2e,00,73,00,79,00,73,00,20,00,31,00,30,00,30,00,30,00,20,00,31,00,\ 30,00,30,00,30,00,00,00,00,00 [HKEY_LOCAL_MACHINE\SYSTEM\ControlSet002\Control\Session Manager\Memory Management]"PagingFiles"=hex(7):43,00,3a,00,5c,00,70,00,61,00,67,00,65,00,66,00,69,00,6c,\ 00,65,00,2e,00,73,00,79,00,73,00,20,00,31,00,30,00,30,00,30,00,20,00,31,00,\ 30,00,30,00,30,00,00,00,00,00 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management]"PagingFiles"=hex(7):43,00,3a,00,5c,00,70,00,61,00,67,00,65,00,66,00,69,00,6c,\ 00,65,00,2e,00,73,00,79,00,73,00,20,00,31,00,30,00,30,00,30,00,20,00,31,00,\ 30,00,30,00,30,00,00,00,00,00It is in HEX, so it might be easier to set it they way you want it, and then export it. Mine is on C: drive and min size is 1000 and max size is 1000.
-
AIM changing homepage after install
WwTIPPYwW replied to imthemp3king's topic in Application Installs
just change it back - It is a registry entry: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main]"Start Page"="http://www.google.com/" -
I've seen it both ways- is it $Progs or $Progs$ for that special folder under $OEM$
-
i think the last steps of the first one is to run a second bat/cmd file that files the registry again. and then the next line would be to run: rundll32.exe iernonce.dll,RunOnceExProcess something like this: REG ADD %KEY%\999 /VE /D "Installing More Applications" /fREG ADD %KEY%\999 /V 01 /D "%CDROM%\software\RunOneEx2.cmd" /fREG ADD %KEY%\999 /V 02 /D "%CDROM%\software\rundll32.exe iernonce.dll,RunOnceExProcess" /fI think that will work. Or pur the last line in the CMD file.
-
screensaver settings & energy options
WwTIPPYwW replied to spachtler's topic in Unattended Windows 2000/XP/2003
its possible. I think I've done it - I need to find it for you. Get a registry compare program and test it out....that will make tweaking a lot easier.