Jump to content

Bilou_Gateux

Member
  • Posts

    766
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Norway

Everything posted by Bilou_Gateux

  1. Previous dc7600 series use Broadcom NetExtreme Gigabit Ethernet Adapter dc7700 series use Intel LoM (Lan on Motherboard). Broadcom NICs are an option in PCIe slot. download and use the correct driver SP33669.exe from hp download driver support. Report your success or failure. [EDIT] wrong link [/EDIT]
  2. Virtual Machine and OEM license for Windows, VMware Virtual Platform & Manufacturer OEMID only refer to computers shipped by large OEMs which utilize SLP, or System Locked Preinstallation.
  3. Virtual Machine and OEM license for Windows, VMware Virtual Platform & Manufacturer OEMID
  4. Virtual Machine and OEM license for Windows, VMware Virtual Platform & Manufacturer OEMID
  5. 3 members of the board have posted utilities or scripts for unattended Windows installation. only refer to computers shipped by large OEMs which utilize SLP, or System Locked Preinstallation. Multi Manufacturer Pre-Activation topic starter Bezalel OEMScan - Automated Multi Manufacture Pre-Activation Utility topic starter xehgter WMI information without WMI, dmidecode 2.8 compiled for windows topic starter #rootworm Unfortunatlely, you can't use a Dell or HP preactivated Windows OS in a Virtual Machine and preserve activation. I have found an interesting solution to this issue. You can use this method with VMware Server, install Server silently on a Windows host topic starter Bilou_Gateux sample Windows XP Professional.vmx configuration file config.version = "8" virtualHW.version = "4" scsi0.present = "TRUE" scsi0.virtualDev = "lsilogic" memsize = "256" scsi0:0.present = "TRUE" scsi0:0.fileName = "Windows XP Professional.vmdk" ide1:0.present = "TRUE" ide1:0.fileName = "I:\CDIMAGE\VRMPOEM_EN.iso" ide1:0.deviceType = "cdrom-image" floppy0.present = "FALSE" Ethernet0.present = "TRUE" ethernet0.startConnected = "true" ethernet0.virtualDev = "e1000" ethernet0.connectionType = "bridged" displayName = "Windows XP Professional" guestOS = "winxppro" priority.grabbed = "normal" priority.ungrabbed = "normal" SMBIOS.reflectHost = TRUE this one is configured using infos from excellent VMX-file parameters by Ulli Mass Storage Controller is set to LSI Logic to check MSD integration Network Adapter is set to e1000 to check drivers integration Of course use an eligible OEM manufacturer box as host for VMware Server. GetSysInfo output @T39~T35 [edit] typo errors [/edit]
  6. Noticed in your KIX script path to %SystemRoot% is hardcoded to C:\WINNT. I'm unable to make it works from a running Windows XP installation with Target OS Windows 2003 Server.: SET
  7. I remember a few months ago, i was looking for a tool i can run from command line to get infos about SMBIOS. Multi Manufacturer Pre-Activation I was disappointed to find this dmidecode website but no compiled version of the tool. @#rootworm So i want to thanks you for compiling it and share it with MSFN community.
  8. Updating Symantec AntiVirus Corporate Edition virus definitions without using LiveUpdate Windows XDBdown.cmd script
  9. Performing a customized unattended installation of Virtual Server The Virtual Server Administrator's guide outlines how to perform a basic unattended installation of Virtual Server. However it does not tell you how to do a customized unattended install (where you only install some of the components). You can do this with the following command (all one line): msiexec /I "Virtual Server 2005.msi" /L*v %TEMP\VS2005Install.log ADDLOCAL=VirtualServer,VMRCClient,DevAndDoc,VSWebApp PIDKEY=#YOUR_PID_WITHOUT_DASHES# /qb- Where you remove the components from 'ADDLOCAL' that you do not want installed. So if you just wanted the VMRC client you would run: msiexec /I "Virtual Server 2005.msi" /L*v %TEMP\VS2005Install.log ADDLOCAL=VMRCClient PIDKEY=#YOUR_PID_WITHOUT_DASHES# /qb- Note: To get the .msi file with Virtual Server 2005 R2 you will need to run Setup.exe /c /t [drive letter]:\[path to the .msi file]. Source: Virtual PC Guy's WebLog
  10. RIS install + run @DetachedProgram = ristndrd.sif [GuiUnattended] DetachedProgram=".\system32\cmd.exe" Arguments="/Q /C FOR /F %I IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (FOR %J IN (%I\$OEM$) DO (IF EXIST %J (%J\NirCmd.exe exec hide %J\OCA_MRK.CMD)))" OCA_MRK.CMD @FOR /F %%a IN (%SystemRoot%\SYSTEM32\$WINNT$.INF) DO (FOR %%b IN (%%a) DO (IF EXIST %%b (SET DOSPATH=%%b))) :oemscan %dospath%\$oem$\oemscan.exe>%systemdrive%\oemscan.log %dospath%\$oem$\oemscan.exe oemscan.log Congratulations Jeremy for your OEMScan utility.
  11. The Open File - Security Warning dialog box is displayed when you try to silently install... sample batch @echo off setlocal enableextensions setlocal enabledelayedexpansion call :__preinit ::############################## ::# ::# settings: here are some settings that might need to be set up before using this for the first time ::# ::# set set name=SEE_MASK_NOZONECHECKS set value=1 ::# ::# settings end ::# ::############################## pushd %BIN_Dir% ::# make sure all external utilities are accessible call :__checkExtUtils if "%INST_ABORT%" == "1" exit /b 1 setenv -m !name! !value! popd @echo Installing the K-Lite Mega Codec Pack @klmcodec153.exe /verysilent /LoadInf=".\klmcp.ini" @echo Done! goto :eof ::############################## ::# ::# functions ::# :__preinit set INST_Dir=%~dp0 set INST_Dir=%INST_Dir:~0,-1% set BIN_Dir=%~d0\bin goto :eof :__checkExtUtils ::# make sure external utils are accessible and throw an error if not ::# http://barnyard.syr.edu/~vefatica/ ::# view/modify NT's "master" USER and MACHINE environments at command line setenv -u Temp >nul 2>&1 || goto __checkExtUtilsError goto :eof :__checkExtUtilsError echo Some of the external utilities are not accessible. echo Make sure you extracted the archive correctly and confirm echo that the utilities are in bin directory under root set INST_ABORT=1 goto :eof ::# ::# functions end ::# ::##############################
  12. for /f "skip=1 tokens=*" %O in ('ver ^| sed -e "s/ \[.*\]//"') do echo %O FOR /F tokens and delims
  13. For the purpose of putting Internet temporary files on a RAM disk, you can use: Free RAMDisk for Windows 2000 / Windows XP / Windows Server 2003 version 5.0.2.2 The size is limited to 64 Mb, large enough to browse the web. For downloading huge files, a download manager is mandatory. Otherwise the size of downloadable file is limited by the free space available in the RAM disk if IE is used. How to install QSoft RAMdisk unattended here +------------------------------------------------------------------------------------------------------+ My script is written from an original idea found here: DrivesList I have a cleaner version of the original script which don't use temp files for parsing data. :DrivesList @echo off setlocal ENABLEEXTENSIONS EnABLEDELAYEDEXPANSION set Drive_Count=0 set DrivesList= for /f "skip=1 TOKENS=1*" %%i in ('fsutil fsinfo drives^|more') do ( set Drive=%%i set /a Drive_Count+=1 for /F "tokens=1* delims=- " %%A in ('fsutil fsinfo drivetype !Drive!^|find "-"') do ( echo Drive !Drive_Count!: [!Drive:~0,1! ] %%B set MountPoint_Count= for /F "tokens=* delims=:" %%Z in ('Mountvol^|find "!Drive:~0,1!:\"') do ( set MountPoint=%%Z if !MountPoint:~8! NEQ !Drive! ( set /a Drive_Count+=1 set /a MountPoint_Count+=1 echo MountPoint !Drive_Count!: [!MountPoint:~8,1!!MountPoint_Count!] !MountPoint:~8! set MountPoint[!Drive:~0,1!]=MountPoint_Count ) ) set Drive[!Drive:~0,1!]=%%B !MountPoint_Count! set DrivesList=!DrivesList! !Drive:~0,1!!MountPoint_Count! ) ) rem echo Drive[q] [%Drive[q]%] echo dl: %DrivesList% echo off endlocal [edit] instead of 'fsutil fsinfo drives^|more' command, use 'fsutil fsinfo drives^|find /v ""' which don't require more utility [/edit]
  14. little script written to set a volatile environment variable RamDisk. using builtin WinXP/2003 Server fsutil.exe CLI tool and Vincent Fatica SetEnv.exe CLI tool @ECHO OFF&SETLOCAL ENABLEEXTENSIONS ENABLEDELAYEDEXPANSION call :__preinit ::############################## ::# ::# settings: here are some settings that might need to be set up before using this for the first time ::# ::# set the volume name to search for set volstring=RamDisk ::# ::# settings end ::# ::############################## ::# make sure all external utilities are accessible call :__checkExtUtils if "%INST_ABORT%" == "1" exit /b 1 ::# http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/fsutil.mspx ::# fsutil (WinXP/2003 Server) for /f "skip=1 tokens=1*" %%i in ('fsutil fsinfo drives^|more') do ( set dl=%%i for /f "tokens=2* delims=:" %%j in ('fsutil fsinfo volumeinfo %%i^|find /i "Volume Name"') do ( ::# Remove trailing reverse solidus if "!dl:~-1!"=="\" (set dl=!dl:~0,-1!) ::# Remove leading and trailing spaces if any for %%k in (%%j) do SET vn=%%k ) ::# Debug infos echo/Drive Letter: !dl! Volume Name: !vn! ::# Function call if "!vn!"=="%volstring%" call :__found ) goto :eof ::############################## ::# ::# functions ::# :__preinit set INST_ABORT= set INST_Dir=%~dp0 set INST_Dir=%INST_Dir:~0,-1% set BIN_Dir=%~d0\bin goto :eof :__checkExtUtils ::# make sure external utils are accessible and throw an error if not ::# http://barnyard.syr.edu/~vefatica/ ::# setenv set environment variables %BIN_Dir%\setenv -u Temp >nul 2>&1 || goto __checkExtUtilsError goto :eof :__checkExtUtilsError echo Some of the external utilities are not accessible. echo Make sure you extracted the archive correctly and confirm echo that the utilities are in bin directory under root set INST_ABORT=1 goto :eof :__found ::# set volative environment variable RamDisk %BIN_Dir%\setenv -v !vn! !dl! set vn= goto :eof ::# ::# functions end ::# ::############################## and example usage of this volatile environment variable How do i put Internet temporary Internet files on a RAM disk %SystemRoot%\system32\rundll32.exe setupapi,InstallHinfSection DefaultInstall 132 .\IEUSFLDR.INF IEUSFLDR.INF [Version] Signature = "$Windows NT$" [DefaultInstall] AddReg = AddReg DelReg = DelReg UpdateInis = UpdateInis [AddReg] HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders","Cache",%REG_EXPAND_SZ%,"%RAMDISK%\Documents and Settings\%UserName%\Local Settings\Temporary Internet Files" HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders","Cookies",%REG_EXPAND_SZ%,"%RAMDISK%\Documents and Settings\%UserName%\Cookies" HKCU,"Software\Microsoft\Windows\CurrentVersion\Explorer\User Shell Folders","History",%REG_EXPAND_SZ%,"%RAMDISK%\Documents and Settings\%UserName%\Local Settings\History" [DelReg] [UpdateInis] [Strings] ; ; Non-localizable strings ; REG_SZ = 0x00000000 REG_MULTI_SZ = 0x00010000 REG_EXPAND_SZ = 0x00020000 REG_BINARY = 0x00000001 REG_DWORD = 0x00010001
  15. Downloaded: xx xxx xxx bytes in 36 files some updates reported by Web Windows Update are not included in mssecure.xml. The script works as expected. Great work tzeentch
  16. I will submit you a request maybe tomorrow... Need some time to explain the goal, not a very complex app but should translate my need in comprehensible words. Thanks for your proposal.
  17. Don't know what tool is used to create/write/modify the ul file. To create localized version of .ul file, you can download the ENU one, change the extension to .xml and open it with MindFusion's XML Viewer, Freeware XML Editor for editing. you will have to change: jcarle instructions on post #3 First, the general information about the UL file must placed in the top-level <updatelist> tag. Before adding the updates, the categories that will be used in the UL file must be declared. The update items contain all the information on each individual update available. title description filename url i have already 90% of update items infos (title, URL) for Server 2003 ENU (parsed from log files). See thread in HFSLIP pinned topics. maxximum FRA is available as starting point. Not enough time to edit
  18. Install and Configure the Email Server in Windows Server 2003 + Outlook Express
  19. http://www.r2.com.au/ And the same for Outlook 2000
  20. Try the free ViewOnly viewer here: http://www.priasoft.com/msgview.exe
  21. Change both. if you don't use FDV's fileset, you can run a script :// http://www.niiconsulting.com/checkmate/2006/07/userassist-revisited/ reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\Settings" /v NoEncrypt /t REG_DWORD /d 1 /f reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\UserAssist\Settings" /v NoLog /t REG_DWORD /d 1 /f
  22. The only script i have ever dreamed about. Parse MSFT own list without effort. but... and it starts downloading each update for all OS flavors... maybe some inconstitency in current mssecure.xml?
  23. Keep up the good work. I will try it later to see if it can solve an issue i have with MultiPortSerial PCI board. Board itself is installed without problems but i have to accept the installation of each of the 4 COM ports. Drivers for both PCI board and COM ports are digitally signed.
×
×
  • Create New...