Showing posts with label deployment. Show all posts
Showing posts with label deployment. Show all posts

Thursday, June 22, 2023

Windows Autopilot Ultimate Guide by Robin Hobo

 


If you're looking for the most comprehensive step-by-step guide for Windows Autopilot, I strongly recommend you to take a look to Robin Hobo's "Windows Autopilot – The ultimate step-by-step deployment guide".

It's just so simple, accessible and straight forward that you will start using Autopilot in a couple of hours.

So, go ahead and take a look to Robin Hobo's post:
Robin Hobo - Windows Autopilot – The ultimate step-by-step deployment guide

Monday, June 24, 2019

M365 Series - Windows Autopilot White Glove – What is it?

The world of Windows deployment is radically changing in the last couple of years with Windows 10.

With the introduction of Windows as a Service, Windows Autopilot and the Microsoft 365 ecosystem, the need to create a golden image and deploying it massively is no more the “only good scenario” available for enterprises.

Specifically the Windows Autopilot was a very nice way to give the user a machine where he only needed to login with it’s corporate device and the machine get all the corporate configurations.

But…in a lot of scenarios this was a poor experience for the end user that needed to wait a lot of time before he really could use the machine, specially in a poor network environment.

Thinking on this issue, Microsoft developed Windows Autopilot White Glove.
This basically allows IT Administrator to do all the initial work of pre-provisioning all “non-user specific” data. For example, corporate wide software.

After this pre-provisioning, when the user receives the machine, the Autopilot process just resumes the process for the “user-specific” configuration.

Take a look at Windows Autopilot White Glove in action:

M365 Series – Understanding Microsoft 365

Everyday more and more IT Professionals are getting in touch with something called Microsoft 365. And no, this is not Office 365, or better said, it’s not ONLY Office 365. It’s really more than that.

In fact…it’s a lot more than that!

Microsoft 365 it’s a large number of software solutions, almost all relying in the cloud, that allows users and IT Professionals to take advantage of the always connected world, making users get more productive everywhere but also allowing IT Administrators to manage users and devices…everywhere.

That’s one of the major benefits of Microsoft 365.

In this first post, I would like to share a Microsoft video that introduces some of the features available and the big picture of Microsoft 365. It’s a video about Windows and Office modern deployment but shows a lot of Microsoft 365 experience:

Monday, January 21, 2019

A day in a life of an OSD Guru

Here’s one excellent presentation during Microsoft Ignite 2018 with Johan and Ami Arwidmark.
Although not a in-depth presentation, it really touch's all different themes about Windows 10 deployment, from the traditional scenarios to the new one’s, like AutoPilot.

Take a look here:

Thursday, January 17, 2019

Office 365 – Office Customization Tool – Online!

Microsoft Office 365 is starting to be the “standard” version of Office suite all over the world.
For enterprises there’s always the need to customize this installation.
Sometime because you don’t want to install the all package, you need to install an additional language, configure the license activation method, etc.

For those with Microsoft System Center Configuration Manager (SCCM), Office Customization Tool it’s like “embedded”, for others there was the need to download Office Customization Tool.

Well, now you can create your xml file for Office 365 installation directly from the web!

With Office Customization Tool online you create and download the generated xml file to use with your deployment.

So, go ahead and give it a try here:
Microsoft Office Customization Tool


For more information about Office Customization Tool:
Overview of the Office Customization Tool

Sunday, July 29, 2018

Deployment Tips – Micro Focus / Novell Open Enterprise Client

Just a quick link if you need to deploy Micro Focus (formerly Novell) Client.
It’s a nice and detailed website from Micro Focus on how to silently install, generate response files, etc.

Thumbs up to Micro Focus, would love other big companies do the same.

Novell Client - Understanding the Client Install Manager (nciman.exe)

Sunday, May 13, 2018

Deployment Tips – Extracting All Microsoft Office Updates in a Folder

image

Because you may need to create a new source installation of your Microsoft Office and gather all the necessary security updates, here’s a quick tip extract all *.exe Office updates to the Updates sources folder.

This is particularly useful because most of the time you’ll download the updates on *.exe format and has you may know, the automated install will look for *.msp files inside the Updates folder instead.

So, here are the necessary steps to do it:

For this example we’ll use the folder D:\Temp\10\Office where you’ll put all your downloaded *.exe files and you should create also D:\Temp\10\Office\Updates where the files will be extracted.

  1. Download all your *.exe files and move them to D:\Temp\10\Office

  2. Open a command-line as Administrator

  3. On the command-line, navigate to D:\Temp\10\Office

  4. Know just execute the following command:
    for %g in (D:\Temp\10\Office\*.exe) do %g /extract:D:\Temp\10\Office\Updates /quiet

  5. All *.msp files will be extracted to D:\Temp\10\Office\Updates and now you just need to copy them to your “OfficeSource\updates”.


And you’re done!

Wednesday, November 1, 2017

Deploy Tips&Tricks – Removing Superseded Components After Base Image Creation

If you’re creating a base or golden image with a lot of updates, it’s good to cleanup superseded components before saving your new wim file.

Here’s a simple way using DISM command line tool:

  1. Just before finish your image (on a task sequence for example)
  2. Run the following command: DISM /Online /Cleanup-Image /StartComponentCleanup /ResetBase

This will cleanup the superseded components.
Just be aware that after running the DISM command all existing service packs or updates cannot be uninstalled.

For a complete list of available commands and options just type this on an elevated prompt:
DISM /Online /Cleanup-Image /?

Tuesday, July 18, 2017

Win10 Deploy – Forcing Start Menu Layout and Allow Users to Pin Shortcuts

Following the previous article (Win10 Deploy – Customizing Start Menu and Forcing it with GPO) you could create a customized layout, force the layout to be applied but, the users could not pin any shortcuts they need.

If you want users to be able to do that, just follow these steps after exporting the xml file:

  • Edit the xml file exported
  • Located the tag “<DefaultLayoutOverride>
  • Change the tag to the following:
    <DefaultLayoutOverride LayoutCustomizationRestrictionType=”OnlySpecifiedGroups”>
  • Save the xml file

And it’s all done.

Now, you’re Start Menu layout has the pinned shortcuts you want (locked) and users are able to add they’re own shortcuts.

Sunday, July 9, 2017

Win10 Deploy – Customizing Start Menu and Forcing it with GPO


One of the most notable and visible changes on Windows 10 O.S. is the new Start  Menu. A mix of “the old” Start Menu with an highlight on UWP and apps.

Now, for an enterprise it’s usually important to make sure that they’re line-of-business (LoB) applications are always there or even make sure that there’s an harmony on every machine of the enterprise, where everyone have access through Start Menu to the same applications or links.
So, if you want to customize and force a specific Start Menu layout, here’s how.

Customizing and Exporting Layout
First things first. Let’s start by customizing the Start Menu you want to give to all users:
  • Login the reference machine (preferably with a “model user”)
  • Now customize you layout has you like it
  • When finished, open Powershell console and export the Start Menu layout like in this example:
    Export-StartLayout –Path C:\Themes\StartMenu\StartLayout001.xml
Now that you have your new Start Menu layout, you just have to force it using a Group Policy.

Forcing Start Menu Layout

  1. Open GPMC
  2. Edit your GPO
  3. Navigate to Computer Configuration (or User Configuration) | Administrative Templates | Start Menu and Taskbar 
  4. Double-click “Start Layout"
  5. Select “Enabled
  6. Write down the path where you xml file is located
    (in our example would be C:\Themes\StartMenu\StartLayout001.xml)
And you’re done!

Wednesday, July 5, 2017

Win10 Deploy– Microsoft TechNet - Windows 10 Deployment and Management Lab Kit

Here’s a nice option if you want to quickly start testing Microsoft Windows 10 deployment without all the troubles and hurdles of creating your environment.
Microsoft TechNet gives you a 32GB virtual lab with all that you need.

This is specially nice to test before creating your final production environment.

In this virtual lab you’ll get:

  • Windows 10 Enterprise v1703 (aka Creators Update)
  • System Center 2012 Configuration Manager 1702 (aka SCCM)
  • Windows Assessment and Deployment Kit for Windows 10 v1703 (aka Windows ADK)
  • Microsoft Deployment Toolkit v8443 (aka MDT)
  • Microsoft Application Virtualization 5.1 (aka App-V)
  • Microsoft BitLocker Administration and Monitoring 2.5 Service Pack 1 (aka MBAM)
  • Windows Server 2016
  • Microsoft SQL

More information about this lab kit can be found here:
Windows 10 deployment and management lab kit

To download the lab kit directly:
Windows 10 Deployment and Management Lab Kit

Saturday, June 10, 2017

Windows Deployment–The Importance of WinSAT Formal

WinSAT was formally introduced with Windows Vista to give some kind of benchmark of the PC and also to optimize a system based on a series of ratings.

A good example of this, it’s the ability to detect if your computer has a SSD drive, and if so, it disables Prefetch.

Here’s an excellent article from the guru Johan Arwidmark based on the research of Steven Kister where it shows the importance of using WinSAT formal at the end of your task sequences:
Why adding WinSAT formal to your task sequence can be a shiny thing to do

Tuesday, February 7, 2017

Deployment Tips - Lenovo ThinkPad Drivers Pack for SCCM

Following other posts about drivers packs, today I would like to post about Lenovo Thinkpad drivers.
Lenovo uses a different terminology (SCCM Drivers) but of course they can be used direclty on MDT.

You’ll find this SCCM packages directly on Lenovo support website and basically you just need to select the model you need and you’ll find the drivers pack, or you can just Google something like “thinkpad t450 sccm drivers pack” and you’ll get directly to the download website.

Here’s an example: After searching for “thinkpad 440 sccm drivers” you’ll be redirect to http://support.lenovo.com/pt/en/downloads/ds030230 and you get the list of SCCM drivers available for that model and compatible models.

sccmlenovo

Tuesday, January 24, 2017

Deployment Tips – HP Driver Packs

Following a series of posts about driver packs from the most notorious OEM manufacturers in the worlds, here’s the tip for HP manufacturer.

The website it’s well designed and very easy to navigate. You can always use HP SoftPaq Download Manager but…well..I just like to use this website instead.

Here’s the link:
HP Client Management Solutions - HP Driver Packs

Saturday, January 14, 2017

Deployment Tips – Dell Drivers Packs for Enterprise Client OS

Following the previous post about Intel PROSet/Wireless drivers for IT Administrators, here’s also a nice website, this time from Dell where you can download packs with CABs for Dell Enterprise class systems like Latitude, Optiplex and Precision.

This packs helps to simplify OS deployments on Dell systems using the usual deployment tools like Microsoft System Center Configuration Manager (SCCM) or Microsoft Deployment Kit (MDT).

Dell Command | Deploy - Driver Packs for Enterprise Client OS Deployment

Thursday, January 12, 2017

Deployment Tips – Intel PROSet/Wireless Drivers for IT Administrators

So today, here’s a tip for every IT Administrator that need to download Intel PROSet/Wireless drivers.

Intel provides the below website where you can find drivers-only packages and also software for WiFi, Bluetooth, and WiMax.
This is obviously recommended for large corporations where packages size matters and of course, it helps to avoid installing a lot of “bloatware” usually available on drivers setup.

Intel® PROSet/Wireless Software and Drivers for IT Administrators

Saturday, December 3, 2016

VDISM – Easy WIM Servicing and Control

image

So…although you’re a geek and you really like to create your own scripts for managing your WIM files, sometimes you feel that a GUI app would be just great and it would really be a time saver.

Some of you may already know a tool called GImageX but from my experience I think this one its superior.

VDISM, available throungh SourceForge website, it’s a fenomenal tool with a very simple interface that gives you access through a graphical interface to all things you need for servicing WIM files.
It’s really really easy to use and so intuitive that you will probably will not use command-line anymore.

Features:

  • Driver Servicing
  • Package Servicing
  • Unattend Servicing
  • Windows Edition Servicing
  • Appx Servicing
  • Application Servicing
  • WIM Boot Entry Servicing
  • Append Image Servicing
  • Apply Image Servicing
  • Capture Image Servicing
  • Delete Image Servicing
  • Export Image Servicing
  • Image Info Servicing
  • List Image Servicing
  • Mount Image Servicing
  • Split Image Servicing
  • International Servicing
  • Provisioning Package Servicing
  • Default Associations

Go ahead and try this great tool: SourceForge – VDISM

Monday, August 22, 2016

Windows Deployment - Back to Basics - DISM - Drivers Management

Here's a post just to review some basic DISM (Deployment Image Servicing and Management tool) commands that are always useful when managing your base image:

Injecting drivers to boot.wim
DISM.exe /Mount-Wim /WimFile:C:\Mount\boot.wim /Index:1 /MountDir:C:\Mount\BootWIM
DISM.exe /Image:C:\Mount\BootWIM /Add-Driver /Driver:C:\Mount\Drivers /recurse
DISM.exe /Unmount-Wim /MountDir:C:\Mount\BootWIM /Commit


Viewing drivers on wim file
DISM.exe /Mount-Wim /WimFile:C:\Mount\boot.wim /Index:1 /MountDir:C:\Mount\BootWIM
DISM.exe /image:C:\Mount\BootWim /Get-Drivers


Monday, August 8, 2016

Windows 10 ADK v1607 Available



Following the this early August release of Windows 10 v1607, Microsoft also made available a new version of Windows 10 ADK (Windows Assessement and Deployment Kit) v1607.

Grab the new version from the download link:
Microsoft Windows 10 ADK v1607


Remember that, like other versions of Windows 10 ADK, therer's no in-place upgrade, so you'll have to uninstall the previous versions you've install first.