set devmgr_show_nonpresent_devices=1
devmgmt.msc
More at https://blogs.msdn.microsoft.com/virtual_pc_guy/2015/04/01/removing-a-missing-network-adapter/
echo %LOGONSERVER%
To determine computer / server DC use NLTEST:
nltest /dsgetdc:<domain_name>
To list all DC's with their appropriate site, try:
nltest /dclist:<domain_name>
od 2012, w8+ je SMBv3, který je automaticky aktivní, pokud je aktivní v2 (sdílí stejný základ)
viz: http://answers.oreilly.com/topic/1180-how-to-configure-wireless-settings-in-windows-7/
Netsh wlan show networks
Netsh wlan export profile name="SSID"
Netsh wlan add profile filename="C:\profiles\contoso1.xml"
netsh firewall set opmode disable
net user <username> <heslo>
resp.
net user <username> *
a ono se to zeptá jaké heslo použít.
na instalaci jazyka se dá použít lpksetup http://technet.microsoft.com/en-us/library/dd744260(WS.10).aspx
lpksetup.exe /i de-DE /r /p %SYSTEMDRIVE%\LangPacks
resp. jiný postup přes dism:
For all other versions you will have to get the appropriate “lp.cab”, i.e. from the Language Pack DVD. Then, type this in a command prompt as Administrator (change path and language code appropriately):
dism /online /add-package /packagepath:D:\langpacks\de-de\lp.cab bcdedit /set {current} locale de-DE bcdboot %WinDir% /l de-DE
Note : change de-DE to your language symbol Arabic : ar-SA French : fr-FR German : de-DE …. etc After that, remove the registry folder
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\MUI\UILanguages\en-US
Then Reboot .
Zdroj:
poslední metoda, jak se to dá dělat přes autounattend
<FirstLogonCommands> <SynchronousCommand wcm:action="add"> <CommandLine>lpksetup.exe /i hi-IN /r /s /p %SYSTEMDRIVE%\MyLIPs\hi-IN</CommandLine> <Description>Install Hindi (India)</Description> <Order>1</Order> </SynchronousCommand> </FirstLogonCommands>
(http://technet.microsoft.com/en-us/library/dd799270%28WS.10%29.aspx)