
BoardBabe
MemberContent Type
Profiles
Forums
Events
Everything posted by BoardBabe
-
1. Yes 2. What does this have to do with topic?
-
Anyone know when Windows OneCare will be public? Or is it released somewher unofficially? If so did anyone test it?
-
Microsoft Update - Genuine Windows Validation Tool
BoardBabe replied to greywolf83's topic in Unattended Windows 2000/XP/2003
How did you modify the LegitCheckControl.dll to disable WGA? Did you get it working? -
Microsoft Update - Genuine Windows Validation Tool
BoardBabe replied to greywolf83's topic in Unattended Windows 2000/XP/2003
@Kamil: Do you mind explaining how to compress and add to i386 and (where and what to add when) update dosnet.inf & txtsetup.sif. thnx -
Is the IE7b1 multilingual? (or is it in English only)
-
Royale (MCE) total transformation
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
What an excellent respond and tool! Should this not apply a new logon/welcome screen? I did not see any change of this on Norwegian Win XP pro. -
I'm applying the original M$ "Royale" theme (with New Bliss background) from winnt.sif, but is there any other Royale / Energy Blue files (original M$?) that I could integrate/apply during unattend setup? Like logon/logoff/welcome screen etc.
-
@raduking: I actually got exactly the same error, but I thought this was an error at the webserver/site, cause after quite a few tries it suddenly worked... Anyone got any idea? I install both Win installer 3,1 v2 and MU with /SiLeNt switches.
-
I think you can reg these in wpi.cmd (cleanup part) fine.
-
That's what I though ;-) Thanks.
-
Sure that inf file is needed?
-
So is there no way yet to integrate and get the start-menu shortcut to MU?
-
Integrating Windows Update V6
BoardBabe replied to FrankE9999's topic in Unattended Windows 2000/XP/2003
Yeh, that's kinda what i figured. So I could safely remove all those 4 files and its entries in svcpack.inf ++? -
Integrating Windows Update V6
BoardBabe replied to FrankE9999's topic in Unattended Windows 2000/XP/2003
Crap, I see the problem. In i386\SVCPACK dir I have the following files. KB893803.exe KB893803_wxp.cat KB893803v2.exe KB893803v2_wxp.cat should I remove any of those, since I integrated the updated files in i386? The reason why I had the last 5 files uncompressed, was most likely that I had already /integrated the hotfixes above? -
Integrating Windows Update V6
BoardBabe replied to FrankE9999's topic in Unattended Windows 2000/XP/2003
@shark007 The weird thing now is that I have 2 instances of Windows Installer 3.1 (KB893803) at add/remove programs. I think this happened after I integrated the 5 last .dl_ files, AND also clicked to update to v6 at windows update, as it did not see it was already installed. Any ideas? -
Haha, get us some more!
-
Illegal in Norway, as far as I know.
-
Feb 1, 2019, the world is scheduled to end....
BoardBabe replied to cancer10's topic in General Discussion
I doubt this is true. -
How do I download MSFN_UnattendedPDF.exe
BoardBabe replied to bokcam2's topic in Unattended Windows 2000/XP/2003
Dude are you serious? http://unattended.msfn.org/global/files/MSFN_UnattendPDF.exe Here you go. -
Integrating Windows Update V6
BoardBabe replied to FrankE9999's topic in Unattended Windows 2000/XP/2003
@shark007 Didn't work even when I integrated the 5 new files. Just reinstalled windows. -
Special char. "Ø" in .cmd file
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
nope, didnt work. resulted in "tilbehor". vbs is no good, since im doing this from my cleanup.cmd -
DEL C:\INSTALL *.* /? -HELP!
BoardBabe replied to eightyhd's topic in Windows Post-Install Wizard (WPI)
Here is my entire (slightly modified for posting) wpi.cmd (renamed to Start.cmd). It is placed in $OEM$\$1 and Launched from winnt.sif. Start.cmd cmdow @ /HID @ECHO OFF TITLE Welcome to Microsoft Windows XP rem Determin path to CDROM. for %%i in (C D E F G H I J K L M N O P Q R S T U V W X Y Z) do if exist %%i:\WIN51 set CDROM=%%i: rem Determin path for WPI. set WPIPATH=%CDROM%\WPI rem Changing screen resolution. start %wpipath%\common\VideoChanger.exe 1400x1050x32@60 -q rem Installing WPI font. start /wait %wpipath%\common\fonts\fontinstaller.exe rem Implementing WPI regtweak. regedit /s "%wpipath%\common\wpi.reg" rem Changing current path to WPI path. for /f "delims=: tokens=1" %%i in ("%wpipath%") do %%i: cd "%wpipath%" rem Creating temp install folder on systemdrive. mkdir %SystemDrive%\Install rem Start WPI and wait for it to complete. start /wait WPI.hta rem Begin final cleanup and configuration. rem Register Windows Update V6. regsvr32 /s %WinDir%\system32\wups2.dll rem Change volumename on systemdisk. label %SystemDrive% System rem Change user picture. copy /y "%AllUsersProfile%\Programdata\Microsoft\User Account Pictures\Default Pictures\strand.bmp" "%AllUsersProfile%\Programdata\Microsoft\User Account Pictures\%UserName%.bmp" rem Deactivate automatic logon. reg add "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon" /v "AutoAdminLogon" /d "0" /f rem Delete .NET user account. net user aspnet /delete rem Sync local time with online time server. net time /sETSNTP:ntp.uio.no call %WinDir%\System32\w32tm.exe /resync rem Start cleanup of application specific shortcuts from start menu rem Delete shortcuts to Realtek Sound Manager. if exist "%AllUsersProfile%\Start-meny\Programmer\Realtek Sound Manager" rd /s /q "%AllUsersProfile%\Start-meny\Programmer\Realtek Sound Manager" (...) rem Delete all shortcuts from desktop. del /s /q "%UserProfile%\Skrivebord\*.lnk" del /s /q "%AllUsersProfile%\Skrivebord\*.lnk" rem Delete all applications from Startup folder. del /s /q "%UserProfile%\Start-meny\Programmer\Oppstart\*.lnk" del /s /q "%AllUsersProfile%\Start-meny\Programmer\Oppstart\*.lnk" rem Delete temp files. for /d %%g in ("%temp%\*") do rd /s /q "%%g" for %%g in ("%temp%\*") do del /s /q "%%g" for /d %%g in ("%windir%\Downloaded Installations\*") do rd /s /q "%%g" for %%g in ("%windir%\Downloaded Installations\*") do del /s /q "%%g" rd /s /q %SystemDrive%\Install rd /s /q %SystemDrive%\Drivere rem Restart Windows. shutdown.exe -r -f -t 60 -c "Vennligst vent..." rem Delete Start.cmd. del /s /q %SystemDrive%\Start.cmd exit :end Note that paths are for Norwegian Win XP, and that I quickly translated the comments to english so you understand what is going on at the different lines. Skrivebord=Dekstop Start-meny=Start Menu Programmer=Programs Oppstart=Starup Hope this helps... -
Change requests - new ideas - wishlist
BoardBabe replied to hasi001's topic in Windows Post-Install Wizard (WPI)
How about including this in WPI one runonceex window per section. Eg. System, Drivers, Applications, Utilities... -
Special char. "Ø" in .cmd file
BoardBabe replied to BoardBabe's topic in Unattended Windows 2000/XP/2003
@djbe this gave an error. Filename, foldername or volumenamesyntax is incorrect. -
if exist "%AllUsersProfile%\Start-meny\Programmer\Intel PROSet Wireless\Intel PROSet Wireless.lnk" move /y "%AllUsersProfile%\Start-meny\Programmer\Intel PROSet Wireless\Intel PROSet Wireless.lnk" "%AllUsersProfile%\Start-meny\Programmer\Programmer\Tilbehør\Kommunikasjon" This reults in: system cannot find the specified path, because the "Ø" character (Norwegian) is not found... How do i fix this path?