Content Type
Profiles
Forums
Events
Everything posted by Sull
-
DriverForge v5.0! - An Automatic Driver Installer
Sull replied to kickarse's topic in Device Drivers
This looks very neat, this should work perfect for a project of mine. Question = when the ini file is filled out properly for unattended, just running DriverForge.v.4.1.2.exe will automatically install the drivers, no switches are needed ? Thanks I will test soon. EDIT: can I use this DriverExtract=%SYSTEMDRIVE%\ instead of this DriverExtract=C:\ -
Hi again, So I have decided to just run 1 window and all seems to be fine with v1.6, one thing I notice once finished installing all applications the computer restarts, with normal RunOnceEx it does not, how can I change this ? I would also like to know about uninstalling once finished with RunOnceEx Thank you.
-
[Release] Windows Live Mail 2008 v14.0.5027.908
Sull replied to johndoe74's topic in Application Add-Ons
hi, will this bet set as default ? -
V'ISO may be what you are looking for, ricktendo had made a batch file which patches all XP files to Vista for icons bitmaps and avi files. You will need to patch a fresh source. Check out V'ISO HERE
-
Oh I am sure it is illegal in some way... You can easily create the same cd using different sources right If you want only 1 CD it is possible but you would have to look elseware..
-
OEM, VLK and Retail versions of XP all use different keys and are not interchangeable.
-
Can someone please help me with if exist command
Sull replied to Sull's topic in Unattended Windows 2000/XP/2003
gunsmokingman, Thanks I will test it out soon. I would like to learn how to write these vbs scripts, do you know of any good sites or guides ? Appreciate the help Sull -
Can someone please help me with if exist command
Sull replied to Sull's topic in Unattended Windows 2000/XP/2003
Thank you, would the location below be ok ? Dim Act :Set Act = CreateObject("Wscript.Shell") Dim Fso :Set Fso = CreateObject("Scripting.FileSystemObject") Dim Drv, Reg Reg = "%SYSTEMDRIVE%\Install\DS.reg" For Each Drv In Fso.Drives If Drv.DriveType = 2 Then '-> Make Sure It A Hard Drive If InStr(Drv.DriveLetter,"D") Then '-> Checks The Drive Letter If Fso.FileExists(Reg) Then '-> Make Sure The Reg File Exists Act.Run("regedit /S " & Reg),0,True End If End If End If Next Now can I just run this script from my cleanup.cmd ? -
Can someone please help me with if exist command
Sull replied to Sull's topic in Unattended Windows 2000/XP/2003
Yes that is what I am looking for, now will that work or does it need to be more advanced than that ? also as Yzöwl said make sure D:\ is not CD/DVD or removable -
I would like to change My Documents to D:\ but only if D:\ exists, I don't know what command would do this. I found this in another thread which changes My Documents to D:\ ;Change location of my documents [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders] "Personal" ="D:\\" I would like for it to look if D:\ exists and if it does then apply the reg entry.. Thank you Sull
-
I wonder if it would be good for my UMPC ?
-
Asus ATK 0110 ACPI Driver Integrable into XP via nlite?
Sull replied to coho's topic in Unattended Windows 2000/XP/2003
This is an nLite addon I made for myself, I actually cannot remember if it worked or not. I made a couple addons and I know a few did not work, so try this out and get back to me. EDIT: -
Use RVM Integrator to integrate the add on, CLICK Just point the integrator to your Windows XP source, then where it says add ons browse for "Universal_Audio_Architecture_High_Definition_Audio_AddOn_1.0.7z"
-
RubySoftware, I have not had a chance to try your alternative RunOnceEX again, I am very busy right now, maybe tonight I can run a VMWARE test. I do have a question, at the end of your example in the previous post, you put RunOnceEX right at the end before EXIT, is this needed and why ? Thanks again Sull
-
Alternative RunOnceEx Script Creator
Sull replied to RubySoftware's topic in Unattended Windows 2000/XP/2003
Looks like the problem has been fixed, thanks -
I will test it out. Does this command work with your RunOnceEX = start /wait rundll32.exe iernonce.dll,RunOnceExProcess EXAMPLE: This is what I have working perfect for Windows original RunOnceEX @echo off cmdow @ /HID SET KEY=HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\RunOnceEx REG ADD %KEY% /V TITLE /D "( TITLE HERE ) /f REG ADD %KEY%\035 /VE /D "Chipset Software Installation Utility" /f REG ADD %KEY%\035 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\chipsetupdate.exe /s" /f REG ADD %KEY%\035 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\040 /VE /D "Visual Communication Camera VGP-VCC3 Driver" /f REG ADD %KEY%\040 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\CAMERADRIVER.EXE" /f REG ADD %KEY%\040 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\045 /VE /D "Alps StickPointer Driver" /f REG ADD %KEY%\045 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\alpspointer.exe" /f REG ADD %KEY%\045 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\050 /VE /D "Sony Image FilterDriver" /f REG ADD %KEY%\050 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\imagefilter\SonyImageFilter.exe /s" /f REG ADD %KEY%\050 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\055 /VE /D "Programmable I/O Driver" /f REG ADD %KEY%\055 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\programmableio.exe" /f REG ADD %KEY%\055 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\060 /VE /D "Gunze Touch panel Driver" /f REG ADD %KEY%\060 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\touchpanel.exe" /f REG ADD %KEY%\060 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\065 /VE /D "Sony USB Mouse Driver" /f REG ADD %KEY%\065 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\mousedri.exe" /f REG ADD %KEY%\065 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\070 /VE /D "LAN-Express Software" /f REG ADD %KEY%\070 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\LANExpress.exe" /f REG ADD %KEY%\070 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\075 /VE /D "Sony Batt Check" /f REG ADD %KEY%\075 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\batcheck.exe" /f REG ADD %KEY%\075 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\080 /VE /D "Setting Utility Series" /f REG ADD %KEY%\080 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\SUS.exe" /f REG ADD %KEY%\080 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\085 /VE /D "Sony Shared Library" /f REG ADD %KEY%\085 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\sharedlibrary.exe" /f REG ADD %KEY%\085 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\090 /VE /D "Sony Utilities DLL" /f REG ADD %KEY%\090 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\utildll.exe" /f REG ADD %KEY%\090 /V 2 /D "%systemdrive%\install\PAUSE.CMD start /wait rundll32.exe iernonce.dll,RunOnceExProcess REG ADD %KEY% /V TITLE /D " ( SECOND WINDOW TITLE HERE )" /f REG ADD %KEY%\005 /VE /D "Vaio Control Center" /f REG ADD %KEY%\005 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\controlcenter.exe" /f REG ADD %KEY%\005 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\010 /VE /D "Vaio Event Service" /f REG ADD %KEY%\010 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\VES.exe" /f REG ADD %KEY%\010 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\015 /VE /D "Vaio Powermanagment" /f REG ADD %KEY%\015 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\powermgr.exe" /f REG ADD %KEY%\015 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\020 /VE /D "Special Button Utility" /f REG ADD %KEY%\020 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\SBU.exe" /f REG ADD %KEY%\020 /V 2 /D "%systemdrive%\install\PAUSE.CMD REG ADD %KEY%\025 /VE /D "Vaio Touch Launcher" /f REG ADD %KEY%\025 /V 1 /D "%systemdrive%\APPS\FIRSTBOOT\VTL.exe" /f REG ADD %KEY%\025 /V 2 /D "%systemdrive%\install\PAUSE.CMD start /wait rundll32.exe iernonce.dll,RunOnceExProcess EXIT This I run from GuiRunonce and everything executes before logon, I found this way here on the forum. This could solve my problem with your RunOnceEX ? EDIT: Yes my install is unattended
-
No the second window is installing as well, reason I can tell, some of my silent installers try to uninstall or say already installed. I have been testing with the Windows original RunOnceEX and do not have a second Window or the same installers trying to install again. Maybe lets wait and see if anyone else has issues like this.
-
I just tested the new version and I am still having a second window pop up, something deffinetly changed though, before it would get to about my 6th or 7th app and get stuck for a long time. I tested the regular RunOnceEX earlier and it worked fine, only one window poped up. Thanks for your hard efforts
-
Alternative RunOnceEx Script Creator
Sull replied to RubySoftware's topic in Unattended Windows 2000/XP/2003
I also this noticed this right away, well at first I did not see it was missing, then I tried it at work with a computer running Vista and it was fine. I am also running the standard dpi 96 and res is 1440x900 -
Have you had a chance to fix it ?
-
I am still having 2 of the same window pop up, first one pops up and then right after the driver packs finisher ends the second willstart. I have tried executing RunOnceEX.cmd from GuiRunonce so it would start after the finisher but I get the same isssue. What am I missing here ??
-
I am not sure if this is an issue or not ? My first RunOnceEX window loads fine, when my second window loads, windows loads as well, I thought both of my RunOnceEX windows should run before windows loads up ie task bar is showing
-
EDIT: Just removed a silly post lol
-
Sorry I am confused. I will make an example of what I have, tell me what is wrong here I just used your example and added the last entry, that is how mine looks. I did use your editor to change icons etc, I then wrote the rest of the reg entries to the RunOnceEX.cmd myself.