I'll try to add Store to my Server IoT Enterprise and see what's going to happen. Edit:it works just fine. Spoiler
Hi dear friend @EeroS Can you share with us which method was used to obtain this result and, if possible, the files as well? Thanks in advanced. Regards, @JeepWillys58
"Turn Windows features On or Off" is controlled by: Client: OptionalFeatures.exe Server: ServerManager.exe Q: Is it possible to have them coexist?
Q: How to replace string in a text? A: Command: cscript replace.vbs *.txt "Source String" "Target String" replace.vbs Code: Const ForReading = 1 Const ForWriting = 2 strFileName = Wscript.Arguments(0) strOldText = Wscript.Arguments(1) strNewText = Wscript.Arguments(2) Set objFSO = CreateObject("Scripting.FileSystemObject") Set objFile = objFSO.OpenTextFile(strFileName, ForReading) strText = objFile.ReadAll objFile.Close strNewText = Replace(strText, strOldText, strNewText) Set objFile = objFSO.OpenTextFile(strFileName, ForWriting) objFile.Write strNewText 'WriteLine adds extra CR/LF objFile.Close
Q: How to stop Windows from locking downloaded files? A: Code: Windows Registry Editor Version 5.00 [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Attachments] "SaveZoneInformation"=dword:00000001 .
Q: Why vNext Preview Server and Client use diffrent build number? Code: <Phase seq="1"> <package id="Microsoft-Windows-StarterEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows Starter Edition" targetState="Installed" options="0"/> <package id="Microsoft-Windows-CoreEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows Core Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-CoreCountrySpecificEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows CoreCountrySpecific Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-EnterpriseEvalEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows EnterpriseEval Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-EnterpriseSEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows EnterpriseS Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-EnterpriseSEvalEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows EnterpriseSEval Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-PPIProEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows PPIPro Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows Professional Edition" targetState="Staged" options="9"/> <package id="Microsoft-Windows-EnterpriseGEdition~31bf3856ad364e35~amd64~~10.0.20303.1" name="Windows EnterpriseG Edition" targetState="Staged" options="9"/> </Phase>