Jump to content

Recommended Posts

Posted (edited)

is there an $oem$ file extention that will place files on the desktop??

thanks in advance :thumbup

also, i could use help with one other thing this is my winnt.sif

;SetupMgrTag

[Data]

AutoPartition=0

MsDosInitiated="0"

UnattendedInstall="Yes"

AutomaticUpdates="No"

[unattended]

UnattendMode=FullUnattended

OemSkipEula=Yes

OemPreinstall=Yes

TargetPath=\WINDOWS

FileSystem=*

UnattenedSwitch="Yes"

KeyboardLayout="United Kingdom"

WaitForReboot="No"

DriverSigningPolicy=Ignore

[GuiUnattended]

AdminPassword=*

EncryptedAdminPassword=NO

OEMSkipRegional=1

TimeZone=85

OemSkipWelcome=1

[userData]

ProductKey=XXXX-XXXX-XXXX-XXXX-XXXX

FullName="Home User"

OrgName=""

ComputerName=

[Display]

AutoConfirm=1

Xresolution=1024

YResolution=768

[TapiLocation]

CountryCode=44

Dialing=Tone

AreaCode=01379

[RegionalSettings]

LanguageGroup=1

SystemLocale=00000809

UserLocale=00000809

InputLocale=0809:00000809

[identification]

JoinWorkgroup=

[Networking]

InstallDefaultComponents=Yes

[branding]

BrandIEUsingUnattended=Yes

[shell]

DefaultStartPanelOff=Yes

DefaultThemesOff=Yes

if there something wrong with is as when windows begins to install.. it comes up with a message saying that it is going to collect data.. you click next and thats all it asks you. also it still does the stupid setting up microsoft windows (the user accounts, internet and activation) can i skip this as well??

Greatful for any assisstance.

Edited by Csmicros

Posted

If you mean, is folders available for adding files to desktop, from within $OEM$, then yes. Create a $DOCS folder inside $OEM$ folder. Then create within the $DOCS folder, 2 foldors, All Users and Default User. Within those folders, you can create Desktop folders.

Posted

On your second question, I noticedyou have

UnattenedSwitch="Yes" it should be UnattendSwitch = "Yes"

Posted

You could execute a vbScript like this:

'Create Windows Explorer Desktop icon

Set Shell = CreateObject("WScript.Shell")

DesktopPath = Shell.SpecialFolders("AllUsersDesktop")

Set link = Shell.CreateShortcut(DesktopPath & "\Explorer.lnk")

link.Arguments = "/n,/e,c:\"

link.Description = "Explorer link"

link.HotKey = "CTRL+ALT+SHIFT+E"

link.IconLocation = "%SystemRoot%\explorer.exe"

link.TargetPath = "%SystemRoot%\explorer.exe"

link.WindowStyle = 1

link.WorkingDirectory = "%HOMEDRIVE%%HOMEPATH%"

link.Save

To create icons on the desktop too.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...