Content Type
Profiles
Forums
Events
Everything posted by Sonic
-
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
hum, yes you can copy copytodvd into %Windir%\TEMP and in AutoIt script set the Run path to %Windir%\TEMP ... play and try it ! Goodluck. ++ -
Hi, For instant monitor registry you can use RegMon form Sysinternals too. Personnaly, for my games I have created one folder contains all keys/pathInstall/settings regs for each game with a batch runs all when I re-install my system ... and I update my folder each time I install and keep the game too. Goodbye.
-
Personnally, I just use this : ;Disable find assistant [HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Preferences] "LibraryHasBeenRun"=dword:00000001 ;Disable setup assistant [HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsMediaPlayer] "GroupPrivacyAcceptance"=dword:00000001
-
Sure you can intergate Windows Installer 3.1 (v2), it's prior patch for future updates ... About WSUS and Microsoft methods , I'm n00b ... I play only with batch for the moment ...
-
When does WINNT directory get created?
Sonic replied to Railman5's topic in Unattended Windows 2000/XP/2003
I think it's perhaps : KB832483 because require non-standard switchs ... Switches: "KB832483.exe /C:""dahotfix.exe /q /n"" /q:a"or it's hotfixes which /Q:A /R:N switchs. Goodbye. -
yes it's would be difficult because you must change the file in your generate.js , but you can make a small first script which rewrite the generate.js (or just a script which replace the "marker" file, same as bash in his driverpack) ++
-
Hi, I think it's good idea if we can choose Manual button or not. Moreover the file "marker" (WIN51 , WPI.ico ) can be choose in the options too. Goodbye.
-
For me all hotfixes are criticals , I always make a Windows with SP pack only , and at the end of install it runs a batch on a server to install all hotfixes criticals (for me all available ...) Goodbye.
-
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
Try in WPI , this doesn't work because the working directory isn't set and is dynamic (%cdrom%) .... sorry for very fast posting ... try & see ... ++ -
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
Opt("TrayIconHide", 1) hide the tray icon , just more clean ... You have test in WPI interface ? Because AutoIt script doesn't search in the same directory, si ? -
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
Lucky day for you Download this compiled AutoIt script ... You must create a batch which launch the AutoIt script with start (without /wait) and after the silent install of CopyToDVD .... Just tested on my system. Goodbye. Source: Opt("TrayIconHide", 1) ProcessWait("VsoStart.exe") ProcessClose("VsoStart.exe") edit: directly in WPI doesn't work . KillVsoStart.exe -
Install the official Unlocker and uninstall it via Add/Remove programs ... http://ccollomb.free.fr/unlocker/#download
-
HOTFIXES: Windows XP SP2 & Windows 2000 SP4
Sonic replied to Incroyable HULK's topic in Unattended Windows 2000/XP/2003
Doesn't work ... For me I have the EULA dword value set to 1 too (no the MydoomTools ...), but if I delete the REmovalsTools in WindowsUpdate the MRT doesn't re-appears ... edit: The MRT 1.6 detects your MRT.EXE in the sys32 folder, no regkeys checked ... if MRT.EXE is already the 1.6 version the patch isn't displayed ... -
HOTFIXES: Windows XP SP2 & Windows 2000 SP4
Sonic replied to Incroyable HULK's topic in Unattended Windows 2000/XP/2003
For the CMD people : reg add "HKLM\SOFTWARE\Microsoft\Internet Explorer\ActiveX Compatibility\{03D9F3F2-B0E3-11D2-B081-006008039BF0}" /v "Compatibility Flags" /t REG_DWORD /d 1024 Tested & Approuved -
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
coucou, you use incorrect syntax, re-read my post ... For 30s you must use sleep 00:00:30 Goodbye. -
false, Adobe Reader runs after the windows installation, you can put here in the RunOnceEx ... (read the http://unattended.msfn.org/ for comprehension process) yes hum, I think you start just decover the silent/unattented technic, so read , re-read topic/tutorial .EXE containt the .MSI and a part for install MSI installer if it isn't present on system (on WinXP the .msi only runs great) , you can pick the .msi when you start the install of the program in the temp folder. Goodbye.
-
You can use Adobe Reader pack from RyanVM, DirectX 9.0c is integrated in XP SP2 (if you use it ...) Adobe Reader : AR7_FR.msi /qb Patch_701.msi /qb Patch_702.msi /qb DirectX 9c : retail version : dxsetup.exe /silent Goodbye.
-
Inserting a sleep time between 2 commands
Sonic replied to coucou's topic in Windows Post-Install Wizard (WPI)
I use System Sleep (v2.5 1/12/92) Copyright © OzWoz 1988-92 (thanks copy&paste func). I have joint the program, I use it for PowerDVD 5 language patch bug ... usage : Í─────────────────────────────────────────────────────────À ║ System Sleep (v2.5 1/12/92) Copyright © OzWoz 1988-92 ║ Ë─────────────────────────────────────────────────────────¢ Usage: sleep hh:mm[:ss:hd] [/!PK] Sleeps for the time specified then exits. If sleeping terminates normally then an exit code of 0 is returned else 1. Switches are interpreted as: /! - Display general program and OzWoz information. /P - No message display /K - No abort by keypress allowed sleep.exe -
You can replace this : REM Make WPI directory the current directory. for /f "delims=: tokens=1" %%i in ("%wpipath%") do %%i: cd "%wpipath%" by REM Make WPI directory the current directory. cd /d "%wpipath%" Goodbye.
-
Thanks Achdine! In fact I have find this key but doesn't because when I shutdown the regkey is recreated, I have set the Policy NoSaveSettings and it works ... I use RegMon from Sysinternals (good guys here!), I prefer this, shots method isn't fastest ...
-
You can set all your rules on one machine, export this key : HKLM\System\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\GloballyOpenPorts\List and execute the .reg file on machines you want. I have just test in it's okay, you can set rules manually too: REG_SZ name Port:Protocol Example-> 21:TCP REG_SZ value Port:Protocol:Area:Description Example-> 21:TCP:LocalSubNet:FTPServerLocal Goodbye. EDIT: You can set rules for programs too ... look HKLM\System\CurrentControlSet\Services\SharedAccess\Parameters\FirewallPolicy\StandardProfile\AuthorizedApplications
-
Hi, all in title ... Where Windows save the desktop icons position ? I know the Layout.dll to save and restore position but it isn't my target ... I would just backup the registry/file which contains the info. Thanks very very much if you have any suggestions !!! This is my last step of my perfect CleanInstall.cmd edit: I have deleted HKCU\Control Panel and HKCU\Software\Microsoft\Windows\CurrentVersion\ and Shell and ShellNoRoam and when I reboot icons are in the same position.
-
PROB | Bug in DriverPacks BASE V5.07.3?
Sonic replied to lieblingsbesuch's topic in The General Stuff
okay understanded ! -
The DXVA_WMV working only with specific gfx cards ... how detect if card is ready to support option ? we can read a regkey ? and if it's okay with add the regkey for acceleration. Summary, we can find a solution for automatise this option .... Goodbye.