Content Type
Profiles
Forums
Events
Everything posted by Tripredacus
-
Unattended install with custom applications
Tripredacus replied to SKG's topic in Unattended Windows 7/Server 2008R2
I believe what you are looking for is FirstLogonCommands. You can see an example of it here: -
Can you get into the BIOS? You might have a video problem more than an OS problem.
-
I am using a Radeon 9600XT 256MB AGP card. I tried an X1650 but I found there were no drivers for it. I am using a Win98 FE with misc SE files installed. There were no X1650 series drivers available for any 98 that I could find, I didn't even try looking for HD series. Besides the HD series are designed for DX10+. PS I was able to play Crysis with the 9600XT on the same hardware as my 9x PC but with XP. It is possible, but not recommended.
-
I averaged about 700kbps but that does not necessarily mean much. I likely have a faster internet connection than you, plus the routing is likely a lot different.
-
Issues with WDS and Adding/Injecting drivers
Tripredacus replied to sanboc's topic in Unattended Windows 7/Server 2008R2
You should be mounting your image with DISM, not Imagex. Use this syntax: DISM /MOUNT-WIM /WIMFILE:D:\source\winpe.wim /INDEX:1 /MOUNTDIR:C:\winpe_x86\mount What is the error DISM gives you? Please be more specific. -
What is the STOP error you are getting?
-
I wasn't joking, there is more to it than 1 and 0. What I mend was: You can access the drive but can't set some bits to 0 again. (that LoL sign is on the wrong side of the screen ) Thump thump
-
Diskpart is changed in WinPE 3.0, which caused the problem above. After each command you run with Diskpart, it does a drive rescan, so it is a little smarter than in WinPE 2.x. What this means is that since I hide the C drive with the winpeshl.ini, the PE cannot find the backup.wim to restore from. I have fixed this of course! Here is the full recovery code now: ObjShell.run "cmd /c mbr 0 0 /uh",0,True ObjShell.run "cmd /c diskpart /s x:\windows\system32\full_diskpart.txt",0,True ObjShell.run "cmd /c imagex /apply c:\backup.wim 1 d:",0,True ObjShell.run "cmd /c c:\mbr 0 0 /h",0,True So basically I need to unhide the recovery partition before and after applying the image back to the OS drive. This is an important step, that the winpeshl.ini hides the recovery partition when the PE loads, and that it unhides and rehides as needed. Here is the winpeshl.ini before further discussion: [LaunchApps] %SYSTEMDRIVE%\Windows\System32\mbr.exe, "0 /reset" %SYSTEMDRIVE%\Windows\System32\mbr.exe, "0 0 /h" %SYSTEMDRIVE%\Windows\System32\wpeinit.exe %SYSTEMDRIVE%\Windows\System32\setres.exe, "1024 768 32 1" %SYSTEMDRIVE%\Windows\System32\mshta.exe, "%SYSTEMDRIVE%\Windows\System32\recovery1024x768.hta" So line 2 rehides the partition. Line 1 resets the MBR back to the normal state, ie the recovery partition will not be the Active partition on reboot. I have to hide the partition so much because I need to make sure that the end-user can safely reboot into Windows without a problem. This is NOT a perfect system and there is not much I can do about that. Here is a list of situations where you can not be able to boot into the OS again: 1. You press F11 to boot into the Recovery, but hit reset or power off the machine before WinPE starts to load. In this situation, you SHOULD still be able to get back into Recovery by pressing F11, but if you do not press a key, it will go to the next device, which may be Network Boot or it will just give the generic, unable to boot message. 2. If there is a memory error, as such that WinPE does not function properly, there is no garauntee what the Recovery partition will do on bad memory. 3. If you take memory out of the machine. WinPE 3.0 x86 requires 512MB minimum, but 1GB recommended. If, say, memory goes bad and there is less than 512MB in the machine, booting into Recovery may be impossible, even if you can boot into XP. Here is another thread concerning this project, where a simple discussion turned into a war of coders:
-
I just started working with Windows Server Backup on Server 2008 STD x64. I am going to use the Remote Backup feature to back up the data off the other servers on the domain. I am able to connect to the Remote Server fine, but it gives me an error about the destination volume. So if you've used it, maybe I can get some answers. 1. Do I need to install anything on the remote servers in order to be able to back them up? I already created a new Domain User and added it to the Backup Operators group. 2. Is there a size limit to where the backups are going to be kept? Currently we have a storage volume (RAID5) that is 3.7TB in size. It was just formatted today and it is totally empty.
-
I'm experiencing a problem calling a function with VBScript. This method works: Set objShell = CreateObject("WScript.Shell") ObjShell.run "cmd /c mbr 0 0 /uh",0,True However, this does not work: Sub confirmation2 Dim A1 :A1 = MsgBox("Recovery Complete, Would you like to Restart now?") If A1 = True Then CreateObject("WScript.Shell").run("cmd /c wpeutil Reboot"),0,True End Sub The MsgBox opens properly, but the command is not run. If I chose to use single quote, as in this: Sub confirmation2 Dim A1 :A1 = MsgBox("Recovery Complete, Would you like to Restart now?") If A1 = True Then CreateObject("WScript.Shell").run('cmd /c wpeutil Reboot'),0,True End Sub It breaks the HTA completely. What is the correct syntax to make a MsgBox run something from ComSpec?
-
1. What kind of problem are you experiencing? 2. Are you trying to use the LAN and WLAN at the same time?
-
Or WindowBlinds. I can make my Win98 PC look like that too.
-
There is a concurrent connections setting you can enable on Firefox' config. I've used with and without it and sometimes you can see a difference. First you need to try different browsers. Also try different sites. Those online tests are not very reliable when considering real use download speeds, because the file size is too small. I typically like to test download speeds using DOS FTP. You need to find 2 sites. One inside your ISP's network to download from, and then one from outside, like adobe or something. You want to get files larger than 10MB for test.
-
Unattended install with supplemental dataimage
Tripredacus replied to arnieh's topic in Unattended Windows 7/Server 2008R2
I'm looking at your DataImage XML example and compare it to my old one, and they do not compare properly. Of course mine was different source (using WDS) but maybe it will help you: I never solved my issue as we went a different way to install Vista and now Windows 7 so we do not need DataImage anymore. -
Still nothing on the wireless. Here is what I did: - uninstalled the Air Plus from Add/Remove Programs - installed the 2.00 drivers (no change) - backed up the ntkern.vxd from vmm32 - put the new ntkern.vxd into C:\Windows\System\Vmm32 reboot = no change - put it in c:\windows\options\cabs (found online it needed to be in there too) = no change So still got nothing going on with that. I was hopeful when installing the 2.00 drivers because it actually installed different files than the other versions, notably the HLPs from PCHEALTH folder, but to no avail. I did try to boot into Safe Mode and delete the drivers and see if there were any ghosts in there, but the video flips. For some reason the default video output (used during POST and in the BIOS and Boot Menu) as well as in the Windows F8 menu and Safe Mode is grayscale and the video constantly flips. This is because my video out is S-Video to a television. I keep forgetting to get that extra CRT to hook up to it.
-
Ah you didn't mention using WinME (except in the thread title) and only talked about Windows 98 in your first two posts. I should have asked for clarification on the OS you were actually using.
-
Please explain how that modem, when used in it's default configuration, will not be acting or performing as a NAT-router, and as such will be blocking all unsolicited in-bound packets, and therefore will be operating as a 100% effective in-bound firewall. It depends on how the ISP configured it. Different ISPs or regions may configure the settings differently based on what kind of system it is going to be used on. Since mine is not in the default modes, I cannot say what all the settings were. I did know that the firewall was not turned on. These things are just 1 port routers, or mine only has 1 private side port. They did have DHCP enabled on it, however.
-
If you are fine with removing all the data on the drive, you need to boot off the XP Pro CD to install. Do not put the CD in while booted into Windows, it will not always let you install the OS from there.
-
I found some other things maybe... First I found someone had this problem on Win95 and 98 on an Intel board: http://www.computing.net/answers/windows-95/soundmax-drivers-w-intel-d845grg/147107.html Which led me to this page on SourceForge: http://ac3filter.sourceforge.net/ac3filter_eng.html#w98
-
As noted, the Westell 6100F does not come with any firewall settings turned on. I am using this modem as well. I currently have it configured in Bridge Mode (like the old DSL Modems) and it is connected to a wireless router. No DHCP enabled (but WPA2) on either side, using static IPs and DNS Servers. If you switch it to bridge mode, the light pattern will be different. You won't see an orange light anymore if you lose the network connection. Also, you will need to configure your router (or PC) to connect with the PPPoE settings in the modem. If you lose these you can get the numbers from support. Basically what they did was make it so the modem could start the PPPoE handshake on its own instead of relying on a single computer to do it. As far as OS requirements on networking hardware, with exception to IPv6 or other OS dependent technologies, the requirements are bound to two things only: 1. The software that comes with the product 2. The OSes that the technical support department will help you with.
-
Moved topic from Software Hangout and added poll. Unpinned the old thread. I use Windows ICF in combination with a hardware firewall.