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.

Copy i386 folder into C:/i386 ?

Featured Replies

I need a command to copy the folder "i386" from CD into C:\i386\ folder during unattended.

What is the command?

Try this, it a vbs script, it uses the copy dialog progress bar for the files to be copy.

Save As Copy_i386.vbs

Dim Act, CD, Fso, Folder, Shell, strCd

Set Act = CreateObject("Wscript.Shell")

Set Fso = CreateObject("Scripting.FileSystemObject")

set Shell = CreateObject("Shell.Application")

Function CD_Copy

Set CD = Fso.Drives

For Each strCd In CD

If strCd.DriveType = 4 Then

If Fso.FileExists(strCd & "\win51") Then

Act.Popup "This Is A XP CD, " & strCd ,5,"Confirm XP CD", 0 + 32

Copy_XP

Exit Function

Else

Act.Popup "This Is Not The Correct CD",5,"Incorrect CD", 0 + 32

End If

End If

Next

End Function

Function Copy_XP

If Not Fso.FolderExists("C:\i386")Then Fso.CreateFolder("C:\i386")End If

set Folder = Shell.NameSpace("C:\i386")

if not Folder is nothing then

Folder.CopyHere(strCd & "\i386\*.*")

set Shell = nothing

set Folder = nothing

End If

End Function

CD_Copy

Edited by gunsmokingman

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.