Csmicros Posted July 18, 2005 Posted July 18, 2005 (edited) is there an $oem$ file extention that will place files on the desktop??thanks in advance 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=Yesif 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 July 18, 2005 by Csmicros
MHz Posted July 18, 2005 Posted July 18, 2005 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.
jbm Posted July 18, 2005 Posted July 18, 2005 On your second question, I noticedyou haveUnattenedSwitch="Yes" it should be UnattendSwitch = "Yes"
tguy Posted July 18, 2005 Posted July 18, 2005 You could execute a vbScript like this:'Create Windows Explorer Desktop iconSet 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 = 1link.WorkingDirectory = "%HOMEDRIVE%%HOMEPATH%"link.SaveTo create icons on the desktop too.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now