Everything posted by rompom7
-
How Do U Think?
Pfft that was easy.
-
Attended Setup
You should read this thread http://www.msfn.org/board/index.php?showtopic=8385
-
Ascii Matrix
Thats awesome! I have seen I think it was Star-Wars in ascii as well.
-
What Music Do You Listen To?
Everything.. Except for rap and r&b Favourite electronica styles include: trance, eurodance, hard trance. (Ohh I don't like progressive (a style of electronica) because it is WAY too repetitive)
-
Unattended Office 2k3
Heheheh read the sticky
-
Created Installers.
Cool! No more nasty batch files for ResHacker The icon looks cool aswell.
-
The Ultimate Itunes Unattended Guide
Cool will try it out as soon as I get home. Keep up the good work
-
Visual Basic 6 Auto Script
You should check out the post made for using a VB (or JavaScript) script for a winamp installation. That has the basic layout for a walk through VB script. I'm sure the search feature should bring up a few hits
-
How To ?
I would be carefull not to shutdown to early. You need to put a decent enough timeout on the shutdown so that Windows can load correctly the first time (which if it doesn't can cause error later) I use an over cautious 90 seconds. But I am usually away so it doesn't bother me. shutdown.exe -r -f -t 90 -c "Restarting in 90 seconds"
-
Shrink Photoshop Cs Source?
The photoshop installation I have comes with Adobe ImageReady CS, which I rarely use... So if your on the same boat as me, perhaps look into removing that from the installation?
-
ACE Mega CodecS Pack switch
Yeah, sorry to bump this up but look at http://www.appdeploy.com/tips/detail.asp?id=13 for install switches... First of run the install on your own computer with /SAVEINF="AceSettings.inf" selecting all the options you want. After the installation DO NOT restart. Then go to C:/Windows/ (or where ever your Windows folder is) and look for a file called AceSettings.inf. Put this in the same directory as the Ace Mega Codec installation program on your CD. Then just install it using the /LOADINF=AceSettings."inf" switch This is what mine looks like: - REG ADD %KEY%\009 /VE /D "Ace Mega Codecs Pack Professional v6.01" /f REG ADD %KEY%\009 /V 1 /D "%CDROM%\SOFTWARE\AceCodecs\ACEMCP601PRO.exe SP- /SILENT /LOADINF=settings.inf /NORESTART" /f Does anyone know the switch to stop it from doing the virus scan?
-
OOOoops, Deleted Partition, Need Data Recovery
I have lost my partition info before, I recovered it with a program called Test Disk. It has a DOS based GUI and it works even faster through command lines. Google knows where to find it.
-
[Tip]One time login
I forgot to mention that the username and password set doesn't have to be the administrator username and password, it can be just a default user... as long as the account exists.
-
Ace Mega Codecs Pack...?
REG ADD %KEY%\009 /VE /D "Ace Mega Codecs Pack 6.1 Pro" /f REG ADD %KEY%\009 /V 1 /D "%CDROM%\SOFTWARE\AceCodecs\ACEMCP601PRO /silent /nocancel /norestart /components="CoDecS,FilterS,BSPlayer,UtilitieS,PresetS,Media Player_Edition Classic,SettingS"" /f Not sure if it will work for your version...
-
ACE Codecs question
Does anyone know how to make it so that the popup at the end of the installation goes away? Is there a VB or JS script that can hit enter to make it go away?
-
ACE Codecs question
To get rid of the plugins wizard just remove "PlugInS" from the install switch. Of course that will just remove the plugins from being installed. I have found the plugins don't really do anything usefull for me.
-
Winamp 5.0.5 MSI release
What am I doing wrong? It just comes up with an installation wizard, which isn't unattended at all. RunOnceEx.cmd REG ADD %KEY%\006 /VE /D "WinAmp 5.05" /f REG ADD %KEY%\006 /V 1 /D "%CDROM%\SOFTWARE\winamp\winamp.msi INI="%CDROM%\SOFTWARE\winamp\winamp.ini"" /f I have also tried this RunOnceEx.cmd REG ADD %KEY%\006 /VE /D "WinAmp 5.05" /f REG ADD %KEY%\006 /V 1 /D "%CDROM%\SOFTWARE\winamp\winamp.msi INI=\"%CDROM%\SOFTWARE\winamp\winamp.ini\"" /f And my WinAmp Setup INI... winamp.ini [SETUP] XAGENT=0 XLIBRARY=1 XINTEX=1 XMODERNSKIN=1 XAUDIO=1 XVIDEO=1 XVISUAL=1 XEXTRA=0 XDIRCONT=1 XTYPECONT=1 XAUDIOCD=0 XINET=0 Thanks for your time.
-
[Tip]One time login
That will just log on the Administrator won't it? My way allows you to have your own custom settings/tweaks just for that particular user.
-
[Tip]One time login
This will show you how to make Windows XP login only once automatically, this can be used to run your RunOnceEx for example. It may have already been discussed at these forums, but I am new and didn't relise . Ok first of all: - Create 2 registry files; one called LogOnce1.reg and the other called LogOnce2.reg and put them in your $OEM$\$1\Install\ folder Secondly: - Put this at the top of your Start.cmd: - :: Enter your username below SET USERNAME=XXXXXXXX :: Enter your password below SET PASSWORD=XXXXXXXX At this point it would be easier to manage if you changed all instances of your username in your Start.cmd with %USERNAME% likewise for password, replace with %PASSWORD% Now add this anywhere to your Start.cmd: - ECHO Windows Registry Editor Version 5.00 >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO. >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO "DefaultUserName"="%USERNAME%" >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO "DefaultPassword"="%PASSWORD%" >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO "AutoAdminLogon"="1" >> %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO Setting one-time Autologin... REGEDIT /S %SYSTEMDRIVE%\Install\LogOnce1.reg ECHO Windows Registry Editor Version 5.00 >> %SYSTEMDRIVE%\Install\LogOnce2.reg ECHO. >> %SYSTEMDRIVE%\Install\LogOnce2.reg ECHO [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon] >> %SYSTEMDRIVE%\Install\LogOnce2.reg ECHO "DefaultUserName"="%USERNAME%" >> %SYSTEMDRIVE%\Install\LogOnce2.reg ECHO "DefaultPassword"="%PASSWORD%" >> %SYSTEMDRIVE%\Install\LogOnce2.reg ECHO "AutoAdminLogon"="0" >> %SYSTEMDRIVE%\Install\LogOnce2.reg Lastly: - Add this to your RunOnceEx.cmd: - REG ADD %KEY%\011 /VE /D "Removing Auto-Login" /f REG ADD %KEY%\011 /V 1 /D "REGEDIT /S %SYSTEMDRIVE%\Install\LogOnce2.reg" /f. This is good if you have a multi-user computer, if you just some more security on your PC, if your away at the time of the installation, or even if your just to lazy to type your username for the first time manually. - rompom7
-
SP2 Prompts to install Windows Movie Maker
I don't think it is an nLite bug. nLite removes Movie Maker 1 not Movie Maker 2
-
SP2 Prompts to install Windows Movie Maker
Someone... Help a noob out
- computer technicians
-
SP2 Prompts to install Windows Movie Maker
I just relised that the thread is called "SP2 Prompts to install Windows Movie Maker". I mean Windows Movie Maker 2 not Movie Maker 1. Sorry about that
-
SP2 Prompts to install Windows Movie Maker
I have the latest version of nLite.
-
SP2 Prompts to install Windows Movie Maker
Yeah, that doesn't work either I tried it without Movie Maker, and with Movie Maker But it still prompts for it.