Content Type
Profiles
Forums
Events
Everything posted by Sonic
-
Even with 2 separated lines (nolimit want test with two GPRS connection I think), a material multiplexer is needed ... and it's not cheap!
-
[Help] How can I make internet connection automatically?
Sonic replied to Ryaren's topic in Windows XP
Warning Andromeda43, don't forget ethernet modem with PPPoE mode, so it's not ready directly, we must set up the connection and connect after. After you can set up options to autoconnect ... -
wow bridging two dialup connections works ?? I doubt
-
Try to reinstall/update Windows Installer component. You can test that commands in cmd too start /w "" %SystemRoot%\system32\msiexec.exe /unregister start /w "" %SystemRoot%\system32\msiexec.exe /regserver
-
There is HFSLIP too to just integrate hotfixes ... http://www.msfn.org/board/index.php?showtopic=57659
-
You don't need to specify the letter in the path. You must just write %cdrom%\\.....\\YourSetup.exe and WPI itself detect the correct path ...
-
At the moment, you can't make an unattended repair CD Moreover in your case you can't access windows due to the bsod, so there isn't solution. When we are already in windows we can make an unattended repair with the windows setup gui and unattended.txt.
-
[Help] How Can I Remove Printers and Faxes share folder
Sonic replied to cuddlez's topic in Windows XP
Try these reg tweaks and reboot ... REGEDIT4 ;Disable printers [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{2227A280-3AEA-1069-A2DE-08002B30309D}] ;Disable scheduled tasks [-HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\RemoteComputer\NameSpace\{D6277990-4C6A-11CF-8D87-00AA0060F5BF}] ;Don't search shared printers [HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced] "NoNetCrawling"=dword:00000001 -
Browsing the web on 2 computers works ?
-
[Help] How can I make internet connection automatically?
Sonic replied to Ryaren's topic in Windows XP
I think he want to unattend create the dialup connection. You can configure your connection and save with the method from Microsoft http://support.microsoft.com/default.aspx?...;284269&sd=tech With that, you have the settings. For user and password, you can dial up the connection with rasdial TheNameOfTheConnection user password and you're connected. You can disconnect with rasdial TheNameOfTheConnection /disconnect I don't remember the way to real backup user and password (because it save in registry/crypted ..) I use that method to etablish VPN connection, but works great with classic dialup. -
There is Maximus universal drivers too on the forum http://www.msfn.org/board/index.php?showtopic=43605
-
To install the language pack silently use .exe /Q /c:"install /q"
-
Rename Admin account unnatended
Sonic replied to Kelsenellenelvian's topic in Unattended Windows 2000/XP/2003
I use a vbs from a member, I don't remember his name It's applied at cmdlines.txt by [Commands] "Wscript Accounts.vbs" 'Accounts.vbs On Error Resume Next strComputer = "." Set WshShell = WScript.CreateObject("WScript.Shell") Set WshNetwork = WScript.CreateObject("WScript.Network") Set oReg=GetObject("winmgmts:{impersonationLevel=impersonate}!\\" & "." & "\root\default:StdRegProv") strComputer = WshNetwork.ComputerName 'Rename Administrator Set oMachine = GetObject("WinNT://" & strComputer) Set oInfoUser = GetObject("WinNT://" & strComputer & "/Administrator,user") set oUser = oMachine.MoveHere(oInfoUser.ADsPath,"YourWantedLogin") 'Password, delete that if you don't wan password Set objUser = GetObject("WinNT://" & strComputer & "/Sonic, user") objUser.SetPassword "thepasswordnocrypted" objUser.SetInfo edit: Why I can't write "f o r u m e r" without spaces ?? -
How can i save my programs' registry entries to keep my settings
Sonic replied to Ryaren's topic in Windows XP
For firefox, you need to backup your profile located in C:\Documents and Settings\YourLoginName\Application Data\Mozilla\Firefox -
What mean "/no" ? you want to say /persistent:no instead isn't it ?
-
HOTFIXES: Windows XP SP2 & Windows 2000 SP4
Sonic replied to Incroyable HULK's topic in Unattended Windows 2000/XP/2003
Soon ... but he test fully so be patient ... -
.NET Framework 2.0 Latest Version Multilanguage Silent
Sonic replied to ajua's topic in Application Installs
There isn't solution to install framework 2 other than a user session ... -
Problem with security strategy, remove all shared folders and reset the security policies, and re-share folders. I will post a batch to do it ... you can search for secedit command too ...
-
.NET Framework 2.0 Latest Version Multilanguage Silent
Sonic replied to ajua's topic in Application Installs
I have used the international .net 2 while one month, and finally today I have the .net 2 from ryan. And the language pack from microsoft, that method avoid problem in windows update and frameworks. Perhaps no problem now, but my way works fine during two months now ... -
Many people repackage all updates from microsoft and host the content, but they make a fault calling their pack sp3 .. it's a post-sp2 pack same as ryan. I think no war*z is intended.
-
[Help] - Best way to install INFs on new Motherboard - A newbie quanda
Sonic replied to Scarabaeus's topic in Device Drivers
Drivers for Intel chipset are generic for all , download the latest INF Intel 7.x for XP, unzip the content to a folder and run simply setup. For a silent install, use that command : setup.exe -OVERALL -S -overall force update -s silent update After a reboot updated drivers are ready. Goodbye. -
Does the .hta will support network usage, or an option to map a drive temporaly ? With .cmd I use a net use command, and some other stuff, can I re-apply this stuff to the .hta ?
-
[Question] Change title text, like with themes change
Sonic replied to straytoasters's topic in Windows XP
For me, I do a reboot at the end of the all process of tweaks, installs ... I use this regtweak to force reload theme. With a restart service that will work too. Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ThemeManager] "LoadedBefore"="0" "ColorName"="Metallic" Goodbye. -
You can re-set owner & rights to your data in command line too. Here is my example @echo off Color CF takeown /A /R /D O /F D: >NUL xcacls D: /G Sonic:F SYSTEM:F "Tout le Monde":R /T /C /Y >NUL echo MaJ "Priv‚e" ... xcacls "D:\Documents" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\-= Games =-" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\Halo" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\NFS Underground" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\Steam" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\UT2004" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\WarCraft III" /E /D Invit‚ /T /C >NUL xcacls "D:\Games\Trackmania Sunrise\Default.SystemConfig.Gbx" /E /D Invit‚ /T /C >NUL xcacls "D:\AutoWindows" /E /D Invit‚ /T /C >NUL You need to download xcacls & takeown, I can post it too ... That code retake folders, and set all data to all users (in my example, it's French lang.) and I set some folders to private access, disable from network browsing ...
-
You can make a sfx of your installed spyware doctor directory, and register chilkatxml.dll with regsvr32 /s chilkatxml.dll Works fine here. Don't forget to bakup registration information in registry too.