cloferba Posted May 12, 2010 Posted May 12, 2010 hello!its any way to hide this assistant after install my unattended W7?
MrJinje Posted May 12, 2010 Posted May 12, 2010 Easiest way is to specify a network location in your XML.<OOBE> <NetworkLocation>Home</NetworkLocation></OOBE>But in case you prefer not to, there is another method. Try running this VBScript from oobeSystem > RunAsynchronous to kill it.Set WshShell = Wscript.CreateObject("WScript.Shell")Do While Not Wshshell.AppActivate ("Establecer ubicacion de Red")Wscript.sleep 1000LoopWshshell.AppActivate "Establecer ubicacion de Red"Wshshell.SendKeys "%{F4}"Original source
cluberti Posted May 12, 2010 Posted May 12, 2010 This was discussed previously here, and a solution (well, workaround) was found:
santac Posted May 13, 2010 Posted May 13, 2010 easiest way is to set a GPO to: Computer Configuration\Windows Settings\Security Settings\Network List Manager Policies\All Networks. Change Network Location to "User cannot change location"
Mikka Posted September 13, 2010 Posted September 13, 2010 (edited) But in case you prefer not to, there is another method. Try running this VBScript from oobeSystem > RunAsynchronous to kill it.Set WshShell = Wscript.CreateObject("WScript.Shell")Do While Not Wshshell.AppActivate ("Establecer ubicacion de Red")Wscript.sleep 1000LoopWshshell.AppActivate "Establecer ubicacion de Red"Wshshell.SendKeys "%{F4}"Original sourceHaving read the blog posting, I still don't know how to import the <RunAsynchronous> section with the WSIM: Microsoft's tool only suggests it for windowsPE, but not under oobeSystem. Any ideas or expertise on how to do this?And what about the <Path> attribute, i.e. where to put this vbs script within the installation directory structure?Thanks in advance,MikkaEdit:Instead of oobeSystem it seems specialize will do. But same problem here: How to refer back to the file? Edited September 13, 2010 by Mikka
RTK999 Posted September 13, 2010 Posted September 13, 2010 Easiest way is to specify a network location in your XML.<OOBE> <NetworkLocation>Home</NetworkLocation></OOBE>Original sourcebut some reason even put <NetworkLocation>Home</NetworkLocation> windows launch the select network pop up but if you put <NetworkLocation>Other</NetworkLocation> windows dont launch the select network well this work for me if you have a home network or work you can adjust settings in control panel after first logon.
Mikka Posted September 14, 2010 Posted September 14, 2010 but some reason even put <NetworkLocation>Home</NetworkLocation> windows launch the select network pop up but if you put <NetworkLocation>Other</NetworkLocation> windows dont launch the select network well this work for me if you have a home network or work you can adjust settings in control panel after first logon.I tried it with every option, the windows shows up anytime.
RTK999 Posted September 14, 2010 Posted September 14, 2010 but some reason even put <NetworkLocation>Home</NetworkLocation> windows launch the select network pop up but if you put <NetworkLocation>Other</NetworkLocation> windows dont launch the select network well this work for me if you have a home network or work you can adjust settings in control panel after first logon.I tried it with every option, the windows shows up anytime.this is my code in OOBE. <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE>and the select pop up never showed.if it doesnt work should be something wrong in unattend.xml <NetworkLocation>Other</NetworkLocation> skip the network selection for sure.
Mikka Posted September 15, 2010 Posted September 15, 2010 (edited) this is my code in OOBE. <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE>and the select pop up never showed.if it doesnt work should be something wrong in unattend.xml <NetworkLocation>Other</NetworkLocation> skip the network selection for sure.I was made aware of this misconception and tried it explicitely with both <NetworkLocation>Other</NetworkLocation> and <ProtectYourPC>3</ProtectYourPC>. I had the friggin window showing up again, no difference to Work/2, Home/1.(If I omit the attribute <SkipMachineOOBE>, the "select network location" window won't appear, instead I'm nagged for entering data for a new user account which I don't want either as it breaks my unattended installation.)Edit: Attached latest Autounattend.xmlAutounattend.xml Edited September 15, 2010 by Mikka
RTK999 Posted September 15, 2010 Posted September 15, 2010 this is my code in OOBE. <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE>and the select pop up never showed.if it doesnt work should be something wrong in unattend.xml <NetworkLocation>Other</NetworkLocation> skip the network selection for sure.I was made aware of this misconception and tried it explicitely with both <NetworkLocation>Other</NetworkLocation> and <ProtectYourPC>3</ProtectYourPC>. I had the friggin window showing up again, no difference to Work/2, Home/1.(If I omit the attribute <SkipMachineOOBE>, the "select network location" window won't appear, instead I'm nagged for entering data for a new user account which I don't want either as it breaks my unattended installation.)Edit: Attached latest Autounattend.xml<SkipUserOOBE> and <SkipMachineOOBE> are deprecated by microsoft so there is no need to use them still works but you can use others methods to avoid user creation like in localccounts create a new user: <OOBE> <HideEULAPage>true</HideEULAPage> <NetworkLocation>Other</NetworkLocation> <ProtectYourPC>3</ProtectYourPC> <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE> </OOBE>and this in useraccounts: <UserAccounts> <AdministratorPassword> <Value>password-value</Value> </AdministratorPassword> <LocalAccounts> <LocalAccount wcm:action="add"> <Password> <Value>password-value</Value> </Password> <Description>testing</Description> <DisplayName>test-user</DisplayName> <Group>Administrators</Group> <Name>test-user</Name> </LocalAccount> </LocalAccounts> </UserAccounts>try this.you can create a script to delete or disable any user you create in localaccounts after install windows if you dont want any other accounts.
nice_guy75 Posted September 16, 2010 Posted September 16, 2010 If you install this on Virtual machine it will show that window anyhow. I have also tried making unattended.xml with rt7lite, but when you will install it on actual machine it will not pop-up.I have observed it personally.
Mikka Posted September 16, 2010 Posted September 16, 2010 No kidding? Microsoft established this splendid behaviour specially for VM users? What a bunch of morons ...What a disgrace!
myselfidem Posted September 16, 2010 Posted September 16, 2010 Hello!I haven't this problem with Sun VirtualBox!Regards
nice_guy75 Posted September 16, 2010 Posted September 16, 2010 Hello!I haven't this problem with Sun VirtualBox!Regardsyeah virtual box is better but it doesn't support aero effect.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now