Skip to main content

Redstone 10



Microsoft Finally Releasing Redstone 5 ISO's




Microsoft has steadily released new builds to its Windows Insider Program members over the last few months, and it seems to mostly be squashing bugs now, but the company had yet to make the next major version of Windows 10 available in the ISO format.

If you're a Windows Insider on the Fast ring, it's once again time to check for updates. Today, the team released Windows 10 Insider Preview build 17672. The build is from the Redstone 5 development branch, so it's a preview for the next feature update for the OS that's due out this fall.Microsoft said this release also offers the option to install the following versions of Windows 10:
  • Windows 10 Insider Preview Enterprise is built to address the needs of large and midsize organizations and comes with the management tools IT administrators need.
  • Windows 10 Insider Preview Education is built for students and faculty and comes with the management tools IT administrators need.
  • Windows 10 Insider Preview Home Single Language is built for consumers in emerging markets and can only run a single language.
Redstone 5 is currently available to Slow ring members of the Windows Insider Program. Following the release of these ISOs, Microsoft's upcoming Bug Bash and then requisite testing, Redstone 5 should be commercially launched this fall.





Comments

Popular posts from this blog

"samba-tool" to Manage a Linux based Active Directory

A linux based Active Directory server can be managed from a Windows client using the Remote System Administration Tool very easily, and it is the convenient way for system administrators with only Microsoft Windows background. But for administrators who love to use the command line,  "samba-tool" is a great command line tool to manage Active Directory configured on a Linux Box. Throughout this post and on my future posts I will be showing hands-on examples about using the  "samba-tool"  command. User Management using samba-tool Create a new user using samba-tool Syntax: samba-tool user create <username> [<password>] [options] samba-tool user create user1 password --given-name=firstname --surname=surname The above command will create a new user with the name as user1 and password will be password, you can type your desired password. The options --given-name and --surname are to assign user first name and surname. To make the user change ...