Recommended Posts

Do you have a USB flash drive that is at least 4 gigs?

Even a USB hard drive should work fine, follow this tutorial and you will have Wndows 7 installed in no time.

I must have installed Windows 7 on 10+ computer like that, it works perfectly every time aslong as the computer can boot from USB. (Most computers built in the last few years should have no problems doing this)

I believe it is possible to install over a network however you have to ask someone else exactly how that is done.

  On 10/07/2010 at 20:31, Recon415 said:

Don't have a flash drive, that's the problem.

Flash drive is best bet. I use it myself to install windows 7. You can buy 4 GB flash driver for around $10-$15. If you dont have money to buy then atleast you can borrow it from some.

  On 10/07/2010 at 20:07, InsaneNutter said:

Do you have a USB flash drive that is at least 4 gigs?

Even a USB hard drive should work fine, follow this tutorial and you will have Wndows 7 installed in no time.

I must have installed Windows 7 on 10+ computer like that, it works perfectly every time aslong as the computer can boot from USB. (Most computers built in the last few years should have no problems doing this)

I believe it is possible to install over a network however you have to ask someone else exactly how that is done.

command prompt? looks overly complicated.

the istartedsomething tutorial is much easier http://www.istartedsomething.com/20081104/tip-make-your-pdc-2008-usb-hard-drive-a-bootable-windows-7-install-disk/

  On 10/07/2010 at 22:31, primexx said:

command prompt? looks overly complicated.

the istartedsomething tutorial is much easier http://www.istartedsomething.com/20081104/tip-make-your-pdc-2008-usb-hard-drive-a-bootable-windows-7-install-disk/

All you are doing is copy and pasting some commands...

If you want to install Windows at the highest speed, then you can use PLoP boot manager http://www.plop.at/en/bootmanager.html

You can also fast boot BartPE or WinPE using this, its the fastest you will likely see windows boot ever :)

USB key is easier than DVD or CD now, far faster and you can reuse it, no reason you shouldnt go out and buy a usb drive, theyre giving away 4gb usb keys here in oz, they cost nothing.

* format the usb key as fat32

* install grub to mbr, copy grldr to usb key and default menu.lst to usb key(or create blank one in notepad)

* copy plpbt.bin to usb key

* extract windows 7/Vista ISO to root of usb key

* add entries to menu.lst

for example the line i use in menu.lst to install Windows 7 is:

title  Install Windows 7
find --set-root /bootmgr
chainloader /bootmgr

then i have the plop lines in menu.lst

title PLoP Boot Manager(Fast USB2 Boot For BartPE/WinPE and Windows installs) 
find --set-root /plpbt.bin
kernel /plpbt.bin

* set bios to boot from usb key

* select PLoP when grub boots

* arrow down in PLoP and select USB

This will then send you back to the main grub menu

* Select Install Windows 7 from menu

* Install Windows as normal

Note: If you have a USB keyboard, the minute you use PLoP and select USB, the keyboard will not work (until you hit windows setup)

So to get around this:

* Boot the key and arrow down to the Install Windows 7 entry in the menu and note its item number in the top right corner of the grub menu.

* Boot back into normal windows

* Open menu.lst on usb key and add these lines at top:

timeout X
default XX

where X is a second value, i.e. 30 for 30 seconds, or 15 for 15 seconds etc

and XX is the grub menu item number for Install Windows 7 you noted earlier.

Using this new setup you:

* Select PLoP when grub boots

* Arrow down in PLoP and select USB

This will then send you back to the main grub menu

* Sit back for 30 (or however many seconds you set in timeout value)

* Watch as your default (Windows setup) starts automatically

* Install Windows

The only downside with setting the grub default is that you can obviously only have one default. I mostly boot the WinPE stuff, so i leave the default set to my most commonly used PE build on the usb key. If i need to change it to PLoP boot a different PE or Windows 7/Vista setup, its a matter of seconds to change it in notepad...Just make note of each menu entries item number and you can change it as you like.

Just for example my entire menu.lst , using my 8Gb key,is:

default 7
timeout 19

title Ramload XP PE                                    
map (hd0,0)/RAMPE.ISO (hd32)
map --hook
chainloader (hd32)

title Ramload Vista PE                                 
find --set-root --ignore-floppies /VISTAPE.ISO
map /VISTAPE.ISO (hd32)
map --hook
root (hd32)
chainloader /BOOTMGR

titel Ramload WINPE 3                                  
find --set-root --ignore-floppies /WINPE3.ISO
map /WINPE3.ISO (hd32)
map --hook
root (hd32)
chainloader /BOOTMGR

title Install Windows Vista SP2                        
find --set-root /bootmgr
chainloader /bootmgr

title Install XP - Step 1                              
find --set-root /XP.ISO
map (hd0) (hd1)
map (hd1) (hd0)
map --mem /firadisk.ima (fd1)
map --mem (md)0x6000+800 (fd0)
map --mem /XP.ISO (0xff)
map --hook
dd if=(fd1) of=(fd0) count=1
chainloader (0xff)

title Install XP - Step 2 (after reboot from Step 1)   
find --set-root /XP.ISO
map (hd0) (hd1)
map (hd1) (hd0)
map --mem /XP.ISO (0xff)
map --hook
chainloader (hd0)+1

title Ultimate Boot CD (UBCD) v5.01 (DOS)            
find --set-root /UBCD/ubcd501.iso
map /UBCD/ubcd501.iso (hd32)
map --hook
root (hd32)
chainloader (hd32)

title The Ultimate Boot CD for Windows                 
find --set-root /BARTPE/I386/SETUPLDR.BIN
chainloader /BARTPE/I386/SETUPLDR.BIN

title PLoP Boot Manager(Fast USB2 Boot For WinPE) 
find --set-root /PLOP/plpbt.bin
kernel /PLOP/plpbt.bin


title Boot from Hard Drive - Windows XP (NTLDR)     
find --set-root --ignore-floppies --ignore-cd /ntldr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /ntldr
chainloader /ntldr
savedefault --wait=2

title Boot from Hard Drive - Windows Vista/7 (BOOTMGR)
find --set-root --ignore-floppies --ignore-cd /bootmgr
map () (hd0)
map (hd0) ()
map --rehook
find --set-root --ignore-floppies --ignore-cd /bootmgr
chainloader /bootmgr
savedefault --wait=2

It does have a nicer display, with headings etc, in real life, but the forum here wont allow posting the extended characters.....

Oh, for those wondering how easiest to install grub to the usb key..

Grab RMPREPUSB from http://www.boot-land.net/forums/index.php?noref=1&showtopic=7739

* Run it

* Select your usb key

* Press "Install GRUB bootloader"

* Exit

It does a lot of other stuff, but i used it once and got used to doing everything manually as i have a lot multibooting on the key

and its easy to screw up your key with this utility if you do not know exactly what you are doing...

Assuming you are installing Windows Vista/7, try this: mount the ISO as a drive letter and share the drive. Start Setup on the other computer. It will require the ethernet till the "copying files" stage only. Once it reboots after that, it expands them and detects hardware.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • What is happening in the WNBA!    
    • RapidRAW 1.3.5 is out.
    • Microsoft Edge 139.0.3405.86 by Razvan Serea Microsoft Edge is a super fast and secure web browser from Microsoft. It works on almost any device, including PCs, iPhones and Androids. It keeps you safe online, protects your privacy, and lets you browse the web quickly. You can even use it on all your devices and keep your browsing history and favorites synced up. Built on the same technology as Chrome, Microsoft Edge has additional built-in features like Startup boost and Sleeping tabs, which boost your browsing experience with world class performance and speed that are optimized to work best with Windows. Microsoft Edge security and privacy features such as Microsoft Defender SmartScreen, Password Monitor, InPrivate search, and Kids Mode help keep you and your loved ones protected and secure online. Microsoft Edge has features to keep both you and your family protected. Enable content filters and access activity reports with your Microsoft Family Safety account and experience a kid-friendly web with Kids Mode. The new Microsoft Edge is now compatible with your favorite extensions, so it’s easy to personalize your browsing experience. Microsoft Edge 139.0.3405.86 changelog: Fixes Fixed an issue where MIP-protected PDF files from different sovereign cloud environments (including GCCH) failed to open and instead displayed the error message: “Need permissions. Contact the owner of the file to give you permissions.” Fixed an issue, which affected IE mode, including errors when displaying PDF files, running Java applets, and showing the Information Bar in IE mode. Improved reliability Fixed a browser crash that occurred on first launch when the BrowserSignin policy was enabled and configured to "Force (2) = Force users to sign-in to use the browser (all profiles)." Feature updates Open external links in another profile when recommended by external applications. When Microsoft Edge is set as the default browser to open external links from applications, Microsoft Edge must determine which profile to open the links. Users can control which profile to use through the “Default profile for external links” setting. Applications such as Microsoft Teams or Outlook can also recommend a profile for the links. Currently, the user setting is prioritized over application recommendations. With this feature, the application recommended profile is given priority, instead of the profile selected in the setting. Admins can control the availability of the feature using the EdgeOpenExternalLinksWithAppSpecifiedProfile policy. Note: This is a controlled feature rollout. If you don't see this feature, check back as we continue our rollout. Changes to Wallet in Microsoft Edge. Wallet is being phased out to support a streamlined experience within Microsoft Edge. This affects the Wallet feature in Settings and the Mini Wallet found by clicking the profile icon in the top banner. Users are directed to the new Passwords, Payment, and Personal Information management experience in Settings. Also, a new Password management experience is available in Settings. For more information, see Changes to Wallet in Microsoft Edge. Note: This is a controlled feature rollout. If you don't see this feature, check back as we continue our rollout. Introducing a new policy that can enable/disable Microsoft 365 Copilot Chat in Edge for Business from showing in the toolbar. Edge for Business now has a dedicated policy, Microsoft365CopilotChatIconEnabled, to enable and disable Copilot in Edge from showing in the Edge toolbar. When both this policy and HubsSidebarEnabled are configured, this policy takes precedence in determining whether Copilot appears in the toolbar. If this policy isn't configured and HubsSidebarEnabled is disabled, Copilot will remain hidden. In a future release, this policy is the sole control for managing Copilot's visibility in the toolbar. Real-time notifications for compromised passwords. Microsoft Edge is integrating an in-context password breach notification system. This feature proactively informs users if their saved login credentials have been compromised in known data breaches, enabling them to take immediate action to secure their accounts. Admins can control availability to this feature using the PasswordMonitorAllowed policy. Note: This is a controlled feature rollout. If you don't see this feature, check back as we continue our rollout. Edge Settings Improvements. Edge Settings is migrating to WebUI2 to boost page responsiveness and introducing a series of minor visual and content upgrades to improve overall usability and utility. This includes optimizing for concise wording of individual settings, simplifying the number of pages and reorganizing content, and creating a cohesive user interface. New Autofill Personal Information Settings Configuration. A web form field collection consent toggle will be available in Autofill settings (edge://settings/autofill/personalInfo). This allows users to consent to Microsoft Edge collecting web form field labels (e.g., "First Name," "Email") to improve Autofill suggestion accuracy. Only field labels are collected and not user-entered data. The web field labels are stored securely per Microsoft's privacy standards. This new setting is manageable via existing policies in Autofill (e.g., AutofillAddressEnabled), EdgeAutofillMlEnabled. AutofillAddressEnabledis the parent setting forEdgeAutofillMlEnabled. The EdgeAutofillMlEnabled policy is the parent of this new setting, thus turning off the EdgeAutofillMlEnabled policy turns off this setting. Web AI APIs for prompt and writing assistance. Microsoft Edge now implements the Writing Assistance APIs and the Prompt API (for Edge extensions) with a local language model, Phi-4-mini, that is built into the browser. These easy-to-use JavaScript APIs are made available via Edge flags (set to Enabled, by default only for the Summarizer and Prompt API for extensions) so that sites and extensions can apply AI capabilities on the web. The small language model is downloaded as the first time any of these APIs is used and later shared across all domains, serving local AI use-cases with reduced cost, network independence, and increased privacy (since data input to the model doesn't leave the user’s device). Admins can control the availability of these APIs via the GenAILocalFoundationalModelSettings policy. These APIs are currently not implemented in China. Read the announcement here, and feel free to provide feedback. Enhancements to Performance and Secure network. Browser essentials is now separated into two distinct experiences (Performance and Secure Network) - both available from the Settings and more menu (“…” on the menu bar). Reset Microsoft Edge enterprise sync. For users having problems syncing browsing data across other signed-in devices, they can reset sync data from the Microsoft servers via Edge Settings edge://settings/profiles/sync/reset. This option should only be used if the sync data is available on one of the user's devices or if they want to delete all sync data from the servers. Note: In Microsoft Edge 139, reset sync is enabled for users encountering a "No permissions" MIP error and in Microsoft Edge 140, reset sync is enabled for users encountering a "Service disabled" MIP error. Update to Microsoft AutoUpdate policy. The MAUEnabled policy allowed admins to continue using Microsoft AutoUpdate on macOS. Since Microsoft Edge now uses EdgeUpdate, the MAUEnabled policy is planned to be obsoleted in Microsoft Edge version 140. Policy updates / New policies EdgeOpenExternalLinksWithAppSpecifiedProfile - Prioritize App specified profile to open external links EnableUnsafeSwiftShader - Allow software WebGL fallback using SwiftShader MandatoryExtensionsForInPrivateNavigation - Specify extensions users must allow in order to navigate using InPrivate mode Microsoft365CopilotChatIconEnabled - Control whether Microsoft 365 Copilot Chat shows in the Microsoft Edge for Business toolbar OnSecurityEventEnterpriseConnector - Configuration policy for Microsoft Edge for Business Reporting Connectors Obsoleted policies KeyboardFocusableScrollersEnabled - Enable keyboard focusable scrollers (obsolete) SelectParserRelaxationEnabled - Controls whether the new HTML parser behavior for the SELECT element is enabled (obsolete) Download: Microsoft Edge (64-bit) | 180.0 MB (Freeware) Download: Microsoft Edge (32-bit) | 163.0 MB View: Microsoft Edge Website | Release History Get alerted to all of our Software updates on Twitter at @NeowinSoftware
  • Recent Achievements

    • Week One Done
      harveycoleman123 earned a badge
      Week One Done
    • First Post
      EzraNougat earned a badge
      First Post
    • One Month Later
      westDvina earned a badge
      One Month Later
    • Community Regular
      Bern@rd went up a rank
      Community Regular
    • Week One Done
      Joey Solo earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      663
    2. 2
      +FloatingFatMan
      192
    3. 3
      ATLien_0
      154
    4. 4
      Xenon
      132
    5. 5
      wakjak
      98
  • Tell a friend

    Love Neowin? Tell a friend!