Setting up VMware workstation player for insider ring testing


Recommended Posts

The aim of this short guide is to document and demonstrate how easy it is to set up a virtual environment for trying new features in windows 10 insider ring.

 

While this guide assumes you have virtualisation technologies enabled for your CPU and system, its worth checking your respective system bios before installing Workstation player.

 

download link

Latest build of workstation player (free for personal use)

 

  • Download and install workstation player. 
  • Accept the licence agreement
  • Select install location (i install on my host OS drive due to space available)
  • tick enhanced keyboard driver option.
  • tick check for product updates, CEIP is optional.
  • Post install, your PC will require restarted.

 

As the product installs, it will install virtual nic adapters etc, this is so it can share your hosts network interface, you can do more advanced network features post install.

 

  • Load up workstation player
  • Select use vmware workstation player for free for non-commercial use.

 

You are presented with the main player window.

 

image.thumb.png.03a768dc62a60a8f0446bceff1523ba3.png

 

To begin building some virtual hardware, click Create a new Virtual Machine.

 

If you have the installer ISO file of the OS you wish to have a virtual machine based on, point the program to the location. For the purpose of this how to, we will select the bottom option, I will install an operating system later.

 

  • Click Next
  • Select intended operating system to be installed. (Ms windows and W10 x64)
  • Click Next
  • I usually go with 60Gb and store the virtual disk as a single file. (60gb for desktop OS, 100Gb for Server OS)
  • Click Next

    You can then further amend the vms "hardware" by clicking customise hardware, i personally add the following.
     
  • Memory ( For a single vm host, I allow 50% of physical memory, otherwise i leave above recommended).
  • Processors (i allow half the physical cores in my system and enable the virtualisation cpu options).
  • CD/DVD option, this is where you can link your iso for install, (also available later when vm is powered off)
  • USB controller will allow pass-thru to your hosts USB posts.

 

Once you have tweaked the hardware you wish to be applied to this new project, click Finish. 

 

You will now have an offline virtual machine all ready for an installation.

 

image.thumb.png.9fbadac7efc1345ad256db24a725145e.png

 

Installing vms OS

 

You can choose to boot off either an ISO file or a setup CD/USB stick

 

  • power on the vm and when it asks to install vmtools, click accept.
  • Go up to the main player window
  • Click Player and select Removeable devices and navigate to the usb setup of W10
  • Connect said usb to the host.
  • Restart vm & the vm should start to install W10 from the usb stick.
  • image.thumb.png.02fe3f8aca13110759a160a10543da41.png

 

Proceed to setup windows 10 in the normal fashion.

 

Once windows setup is completed, and you are logged into windows, click "I finished installing" in the yellow banner, this indicates to vmware when to try to install vmtools in the windows virtual environment.

 

image.thumb.png.8a18ecd6ff8c20bf6d3e6d24d2de00be.png

 

VMtools

It is advisable to instruct workstation player to mount the vmtools as a cd and run setup,m it gives enhanced networking ability, VMCI driver and a svga video driver.

the vm will require a restart post install.

 

You can now use this virtual machine to sign up for insider rings :) 

 

 

image.thumb.png.063e525af0c3fe19a6140d6a7402f09d.png

 

if your badgered about a key and activation, either log into your Ms account where you have digital entitlement, or use the old W7 retail key you have lying about from preW10 days it will activate just fine if the right sku ;) (April 2018)

 

you can now play to your hearts content with the latest previews and ofc the guide can also be used for other operating systems, why not try Linux mint for example, just spin up a new vm and config, with zero risk to your daily driver.

 

the limit ultimately is enough space for all your vDisks ;) 

 

  • Like 3
  • Mando changed the title to Setting up VMware workstation player for insider ring testing
This topic is now closed to further replies.
  • Posts

    • Meta will now use data from outside businesses to personalize AI responses by David Uzondu In an update that's rolling out globally (except in a handful of countries), Meta will use your data from outside businesses to personalize your AI responses and your primary feeds. Meta already utilizes your shopping activity to target ads, but the company now plans to expand this tracking to personalize other "parts of your experience" like feed algorithms and AI assistant chats. The company is replacing the two settings ("Your activity off Meta technologies" and "Activity from other businesses") that currently let you disconnect off-platform activity with a single, renamed setting called Activity from other businesses. If you don't want Meta to manipulate your feed and AI responses using your outside history, you can just turn the Activity from other businesses setting off in your account settings. This toggle resides within your Accounts Center, applying your choice to every connected profile. Turning this off will not stop companies from sending your data to Meta. The company will still collect your web interactions, but it only uses them to train products, while still accessing external accounts you connect. When The Verge spoke to Meta spokesperson, Emil Vazquez, the representative said that this update will exclude several locations at launch including the European region, the UK, Brazil, Thailand, South Africa, Turkey, South Korea, Ecuador, Nigeria, and Kenya. The new update comes at a time when the social media giant is recovering from a major PR disaster involving generative AI. Last week, there was a huge security issue on Instagram where attackers figured out a way to exploit a prompt injection vulnerability. Hackers managed to trick Meta AI into handing over account ownership (even if the victim had 2FA enabled). Some of the affected accounts include the dormant Obama White House profile, cosmetics brand Sephora, the Chief Master Sergeant of the Space Force, and security researcher Jane Manchun Wong. Internally, the company also had to scale back plans on its Model Capability Initiative (MCI), an employee-monitoring program designed to train corporate AI models by recording worker keystrokes and screen activity, after employees raised privacy concerns and complained about severe battery life drain.
    • JetBrains is working to cut false positives in RustRover 2026.2 by David Uzondu Recently, JetBrains released the fifth EAP build of its dedicated IDE, RustRover 2026.2, bringing improvements like a Run gutter icon for criterion_main! macro benchmarking and a feature that alerts you when there are unused traits in your current scope. Now, the company is out with a blog post addressing one of the "most common" complaints from users: false positives. In RustRover, a false positive occurs when the editor incorrectly highlights something as an error even though the project compiles and runs successfully. This mismatch flags a gap between the IDE's internal intelligence and the actual compiler. When the editor flashes red warnings over perfectly valid code, developers lose trust in the tool, which stalls momentum. Traditionally, RustRover runs cargo check to detect compiler errors and warnings, but it also relies on its own code analysis engine to power real-time features. To provide quick feedback, this engine parses your source code into a syntax tree while inferring types and resolving names as you type. Because this engine must work on broken, half-written code and react instantly, its logic sometimes diverges from the compiler's, producing false positives that do not exist in the compiler's eyes. JetBrains said that it has a "dedicated task force" focused specifically on identifying and fixing false positives by analyzing user reports and examining large-scale open-source projects. To speed up this process, the team built an internal system modeled after Crater, the famous Rust project that compiles and runs tests for every single crate published on crates.io. This automated pipeline compares the diagnostics from RustRover's analysis with actual compiler output to catch discrepancies before they reach users, ensuring smoother workflows. RustRover, for those who're unaware, is a dedicated IDE designed specifically for Rust developers. It's been around for a couple of years now, providing features like built-in debugging via LLDB, seamless cargo integration, advanced macro expansion, and HTML support. JetBrains distributes the app under two licensing models: a paid commercial subscription and a free option for non-commercial use.
    • Last year I bought the 2TB variant for $114 on Amazon. That's crazy that the 1TB is now 67% more expensive for half the storage, even with the newer T9 already on the market. And that's considered a good deal.
    • You can disable all non needed features from Brave. There is also Brave Origin which removes them entirely and it is free for Linux.
    • I wish I could use Brave but the tab suspension feature is horrible. It doesn't suspend them like Edge does. Even after 2h open with 70+ tabs (same as Edge), it has 2GB more consumption than Edge for no reason.
  • Recent Achievements

    • One Year In
      Primer1st earned a badge
      One Year In
    • Experienced
      JayZJay went up a rank
      Experienced
    • Reacting Well
      Sir_Timbit earned a badge
      Reacting Well
    • Week One Done
      rubentuben8 earned a badge
      Week One Done
    • Week One Done
      ARaclen earned a badge
      Week One Done
  • Popular Contributors

    1. 1
      +primortal
      512
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Edouard
      135
    4. 4
      ATLien_0
      87
    5. 5
      Steven P.
      81
  • Tell a friend

    Love Neowin? Tell a friend!