Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

how do I copy the i386 to the drive?

Featured Replies

how do I copy the i386 to the drive and change windows properties so when a program needs files the windows will check them in the i386 directory on the drive?


That was discussed just recently so it can't be but 5-6 pages deep in here. I added it to my own or gave option if.

Search for it.

The path to the source files is located in the following registrykey:

HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\SourcePath

So just copy the files to the drive perhaps in a subfolder i386 of the windows directory and run the following command:

reg add "HKLM\Software\Microsoft\Windows NT\CurrentVersion" /v "Sourcepath" /t REG_EXPAND_SZ /d "%WINDIR%\i386" /F

Here is a VBscript I wrote to do just what you're looking for. Note that I delete the svcpack directory after copying i386 over to the hard drive. I have a few hundred MB worth of silent switchless installers that don't really need to be taking up room in there.

Dim ws, fs, windir, colDrives, objDrive, strCD
Set ws = WScript.CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
windir = ws.ExpandEnvironmentStrings ("%SYSTEMROOT%")
Set colDrives = fs.Drives
For Each objDrive in colDrives
    If fs.FileExists(objDrive.DriveLetter & ":\WIN51") Then strCD=objDrive.DriveLetter & ":\"
Next

'** Subroutine; Copy the i386 folder from the source media and make
'**             the appropriate registry entries.
Sub CopySource
    Dim strKeyPath
    strKeyPath = "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Setup\"
    fs.CopyFolder (strCD & "i386"), (windir & "\i386"),True
    If fs.FolderExists(windir & "\i386\svcpack") Then fs.DeleteFolder(windir & "\i386\svcpack"),True
    ws.RegWrite strKeyPath & "SourcePath", "%systemroot%\\i386\\", "REG_SZ"
    ws.RegWrite strKeyPath & "ServicePackSourcePath", "%systemroot%\\i386\\", "REG_SZ"
End Sub


'** Run Tasks
CopySource

Edited by RogueSpear

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.