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.

_matt13

Member
  • Joined

  • Last visited

  • Country

    United States
  1. I have a Blackberry and was thinking if it was possible to install a functional windows O/S on the memory card??
  2. Let me know if this works as I would like to know
  3. I'm just about finished in my setup but am running into some small annoyances. I have looked for basic details regarding this but cant seem to find the answer. I want to install software and reg tweaks for both HKLM & HKCU before the user see the desktop. When I try to install from SetupComplete.cmd, Install gets stuck at "Setup is checking video Performance" screen, although the apps are installing in the background as I can see the progress bars from teh app installing. Some apps take a while to install and I dont want the user to power down and restart in the middle! When I run from FirstLogon command not all adjustments/tweaks are made. So my questions is: What are the limitations from using FirstLogonCommands and SetupComplete.cmd? Thank you Matt
  4. I need some help as I made a unattended WIN7 with Vlite but now I want to add more custom setting that Vlite can not do. I started with a fresh new image and created a basic Autounattend.xml from the sample.xml from WSIM put in the root and I was prompted for which version I want to install, after googleing and searching the board I tried putting in my sources folder, same issue. Can someone provide some guidance as I'm confused. Do I put the Autounattend in root or source, I believe root? here is the basic xml without any customizing, I just want it to install unattended. BTW I have tried every combo of this from selecting 5, the description, etc. <MetaData wcm:action="add"> <Key>/IMAGE/DESCRIPTION</Key> <Value>Windows 7 ULTIMATE</Value> </MetaData> file:Autounattend.xml <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DiskConfiguration> <Disk> <CreatePartitions> <CreatePartition wcm:action="add"> <Order>1</Order> <Size>20000</Size> <Type>Primary</Type> </CreatePartition> </CreatePartitions> <ModifyPartitions> <ModifyPartition wcm:action="add"> <Active>true</Active> <Extend>false</Extend> <Format>NTFS</Format> <Label>OS_Install</Label> <Letter>C</Letter> <Order>1</Order> <PartitionID>1</PartitionID> </ModifyPartition> </ModifyPartitions> <DiskID>0</DiskID> <WillWipeDisk>true</WillWipeDisk> </Disk> <WillShowUI>OnError</WillShowUI> </DiskConfiguration> <UserData> <AcceptEula>true</AcceptEula> <FullName>Matt</FullName> <Organization>SWD</Organization> </UserData> <ImageInstall> <OSImage> <InstallTo> <DiskID>0</DiskID> <PartitionID>1</PartitionID> </InstallTo> <WillShowUI>OnError</WillShowUI> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/DESCRIPTION</Key> <Value>Windows 7 ULTIMATE</Value> </MetaData> </InstallFrom> </OSImage> </ImageInstall> </component> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-us</UILanguage> </SetupUILanguage> <InputLocale>0409:00000409</InputLocale> <SystemLocale>en-us</SystemLocale> <UILanguage>en-us</UILanguage> <UserLocale>en-US</UserLocale> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <OEMInformation> <Manufacturer>SWD</Manufacturer> <Model>V1.01</Model> <SupportHours>24</SupportHours> <SupportPhone>888 GET LOST</SupportPhone> <SupportURL>WWW.GETLOST.COM</SupportURL> </OEMInformation> </component> </settings> <cpi:offlineImage cpi:source="catalog:c:/users/matt/desktop/win7/sources/install_windows 7 ultimate.clg" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
  5. I have that in the last line of the Autounattend.xml
  6. Can someone tell me why my FirstLogonCommand function is not working. Everything else works but that. Thanks <?xml version="1.0" encoding="utf-8"?> <unattend xmlns="urn:schemas-microsoft-com:unattend"> <settings pass="windowsPE"> <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SetupUILanguage> <UILanguage>en-US</UILanguage> </SetupUILanguage> <InputLocale>0409:00000409</InputLocale> <UserLocale>en-US</UserLocale> <UILanguage>en-US</UILanguage> <SystemLocale>en-US</SystemLocale> </component> <component name="Microsoft-Windows-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <ImageInstall> <OSImage> <InstallFrom> <MetaData wcm:action="add"> <Key>/IMAGE/NAME</Key> <Value>Windows 7 ULTIMATE</Value> </MetaData> </InstallFrom> <InstallToAvailablePartition>false</InstallToAvailablePartition> <WillShowUI>OnError</WillShowUI> </OSImage> </ImageInstall> <EnableFirewall>false</EnableFirewall> <EnableNetwork>true</EnableNetwork> <Restart>Restart</Restart> </component> </settings> <settings pass="oobeSystem"> <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="NonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <AutoLogon> <Password> <Value>UABhAHMAcwB3AG8AcgBkAA==</Value> <PlainText>false</PlainText> </Password> <Enabled>true</Enabled> <LogonCount>1</LogonCount> <Username>Administrator</Username> </AutoLogon> <OOBE> <NetworkLocation>Home</NetworkLocation> <ProtectYourPC>1</ProtectYourPC> <SkipMachineOOBE>true</SkipMachineOOBE> <SkipUserOOBE>false</SkipUserOOBE> <HideEULAPage>true</HideEULAPage> </OOBE> <UserAccounts> <AdministratorPassword> <Value>QQBkAG0AaQBuAGkAcwB0AHIAYQB0AG8AcgBQAGEAcwBzAHcAbwByAGQA</Value> <PlainText>false</PlainText> </AdministratorPassword> </UserAccounts> <FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\AcronisTrueImage.exe</CommandLine> <Description>Installing...AcronisTrueImage</Description> <Order>1</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\batch-image-resizer.sfx.exe</CommandLine> <Description>Installing...BatchImageResizer</Description> <Order>2</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\ccsetup223_slim.sfx.exe</CommandLine> <Description>Installing...CCleaner</Description> <Order>3</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\DiskeeperProPremier2009.exe</CommandLine> <Description>Installing...CrapCleaner</Description> <Order>5</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\FileZ.exe</CommandLine> <Description>Installing...FileZilla</Description> <Order>6</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\IsoBuster-Pro-v2.1.0.2.exe</CommandLine> <Description>Installing...ISOBuster</Description> <Order>7</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\iTunes.sfx.exe</CommandLine> <Description>Installing...Itunes</Description> <Order>8</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\Klite.exe</CommandLine> <Description>Installing...KlitecodecPack</Description> <Order>9</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\nero.exe</CommandLine> <Description>Installing...NeroLite</Description> <Order>10</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\ReNamer.sfx.exe</CommandLine> <Description>Installing...Renamer</Description> <Order>11</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\setup.exe</CommandLine> <Description>Installing...Malwarebytes</Description> <Order>12</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\VSO.sfx.exe</CommandLine> <Description>Installing...VSOConvertX</Description> <Order>13</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\Office07\setup.exe</CommandLine> <Description>Installing...Office2007</Description> <Order>14</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\Tweak.exe</CommandLine> <Description>Installing...Tweaks</Description> <Order>15</Order> </SynchronousCommand> <SynchronousCommand wcm:action="add"> <CommandLine>%SYSTEMDRIVE%\sfttemp\kavwks.en.exe</CommandLine> <Description>Installing...Kaspersky Trial</Description> <Order>16</Order> </SynchronousCommand> </FirstLogonCommands> <OEMInformation> <Manufacturer>SWD</Manufacturer> <Model>ver 1.0</Model> <SupportHours>24</SupportHours> <SupportPhone>888 GET LOST</SupportPhone> <SupportURL>www.getlost.com</SupportURL> </OEMInformation> <VisualEffects> <FontSmoothing>ClearType</FontSmoothing> </VisualEffects> <BluetoothTaskbarIconEnabled>true</BluetoothTaskbarIconEnabled> <DisableAutoDaylightTimeSet>false</DisableAutoDaylightTimeSet> <TimeZone>Pacific Standard Time</TimeZone> </component> </settings> <settings pass="specialize"> <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SearchScopes> <Scope wcm:action="add"> <ScopeUrl>http://www.google.nl/search?hl=en&amp;q={searchTerms}&amp;meta=</ScopeUrl> <ScopeDefault>true</ScopeDefault> <ScopeDisplayName>Google</ScopeDisplayName> <ScopeKey>SearchProvider1</ScopeKey> <SuggestionsURL>http://clients5.google.com/complete/search?hl={language}&amp;q={searchTerms}&amp;client=ie8&amp;inputencoding={inputEncoding}&amp;outputencoding={outputEncoding}</SuggestionsURL> <FaviconURL>http://www.google.com/favicon.ico</FaviconURL> </Scope> </SearchScopes> <BlockPopups>yes</BlockPopups> <DisableAccelerators>true</DisableAccelerators> <DisableFirstRunWizard>true</DisableFirstRunWizard> <DisableOOBAccelerators>true</DisableOOBAccelerators> <AllSitesCompatibilityMode>true</AllSitesCompatibilityMode> <CompanyName>SWD</CompanyName> <DisableDevTools>true</DisableDevTools> <EnableLinksBar>false</EnableLinksBar> <Help_Page>www.google.com</Help_Page> <Home_Page>www.yahoo.com</Home_Page> <PlaySound>false</PlaySound> <SuggestedSitesEnabled>false</SuggestedSitesEnabled> </component> <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <Identification> <JoinWorkgroup>MSHOME</JoinWorkgroup> </Identification> </component> <component name="Security-Malware-Windows-Defender" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <DisableAntiSpyware>true</DisableAntiSpyware> </component> </settings> <settings pass="offlineServicing"> <component name="Microsoft-Windows-LUA-Settings" processorArchitecture="x86" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <EnableLUA>false</EnableLUA> </component> </settings> <cpi:offlineImage cpi:source="" xmlns:cpi="urn:schemas-microsoft-com:cpi" /> </unattend>
  7. I cant seem to save the file when edited, I get an error about already packed. How can I do it?>??

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.