Showing posts with label 2019. Show all posts
Showing posts with label 2019. Show all posts

Thursday, October 3, 2019

Microsoft Surface 2019 Lineup – Just mind-blowing!

So this post is just because Microsoft event yesterday was just…mind blowing. For the first time I must say that Microsoft completely delivered in every aspect of the event.

The perfect lineup adding exactly what fans asked for on the existing devices and than…it comes Surface Neo and of course…Surface Duo! A lot of things were said before the event but when you see the product, just couldn’t believe how perfect and consistent this product is.

And, after all of that we also have a glimpse of the new Windows OS (Windows 10X) aka Windows Core OS. This event was simply mind blowing!

So, here’s the complete lineup that was presented yesterday:

Surface Pro X

Surface Pro 7

Surface Laptop 3

Surface Neo and Surface Duo

You can view or review the full event here:

Monday, April 8, 2019

Visual Studio 2019 Network Installs

Here’s just a very quick guide for creating a Microsoft Visual Studio 2019 network/package install

The first thing you need to do is to download the install bootstrapper that you want (Enterprise or Professional):

Visual Studio Communityvs_community.exe
Visual Studio Professionalvs_professional.exe
Visual Studio Enterprisevs_enterprise.exe

You’ll notice that if you don’t use any parameters you’ll download a complete source of Visual Studio 2019. This means at least 35GB of source files, and I doubt you need that, so, to download exactly what you need and get a much lighter install source, follow these steps:

  1. You can download only the components you need and the language you need

  2. To determine the components and language IDs (this may vary between SKUs) visit this webpages:
    Workload or Components IDs
    Language IDs

  3. Now that you have all you need, just run the command-line below. In this example I’m creating an offline installer for Visual Studio 2019 Enterprise that includes:

    - Visual Studio Core Files
    - Managed Desktop components (for C# developing for example)
    - Recommend components (a Microsoft recommended files based on components id)

    Command-line
    vs_enterprise__2022417084.1542710334.exe --layout C:\Temp\MSVisualStudioEnterprise2019 --add Microsoft.VisualStudio.Workload.ManagedDesktop --includeRecommended --lang en-US

  4. Now that you have all files, just run the following command line for silent install:
    vs_setup.exe --quiet --wait --nocache --noweb --norestart