Skip to content

TechDirectArchive

Hands-on IT, Cloud, Security, Veeam & DevOps

  • Home
  • About
  • Advertise With US
  • Reviews
  • Tech News
  • Contact
  • Toggle search form

How to configure Network Unlock in Windows

Posted on 31/01/202130/08/2026 IT Expert By IT Expert 8 Comments on How to configure Network Unlock in Windows
  1. Home
  2. Windows Server
  3. How to configure Network Unlock in Windows
Diagram illustrating the process of obtaining a valid IP address in a BitLocker setup, including components like a DHCP server, clients with UEFI and TPM, and a domain controller.

The BitLocker Network Unlock allows automatic access to the BitLocker key needed to unlock the volume. This automatic access occurs over the corporate network when the machine boots up thereby bypassing any input from the user. In this guide, I will show you how to implement BitLocker PIN bypass: How to configure Network Unlock in Windows. Please see how to backup and restore a Windows DHCP Server via the DHCP Manager and PowerShell, and “How to backup and restore a Windows DHCP Server via the DHCP Manager and PowerShell“.

Network Unlock allows BitLocker-enabled systems that use TPM+PIN and that meet the hardware requirements to boot into Windows without user intervention. This feature requires the client hardware to have a DHCP driver implemented in its UEFI firmware.

This brings us to the point, what is BitLocker? See the following guides on how to enable or disable BitLocker on Windows 10” or this link.

Note: BitLocker Drive Encryption is a data protection feature that integrates with the operating system and addresses the threats of data theft or exposure from lost, stolen, or inappropriately decommissioned computers. BitLocker is Microsoft’s easy-to-use, proprietary encryption program for Windows that can encrypt your entire drive.

BitLocker Network Unlock requirements

For Network Unlock to work, it requires the following mandatory hardware and software configurations before it can automatically unlock domain-joined systems: You need to meet the following prerequisites

  • Run at least Windows 8 or Windows Server 2012 (But in this lab, I am testing on Windows 10 and Windows Server 2019).
  • Any supported operating system that uses UEFI DHCP drivers can be a Network Unlock client.
  • Network Unlock clients must have a TPM (trusted platform module) chip and at least one TPM protector.
  • You must have a server running the Windows Deployment Services (WDS) role installed and running in your environment.
  • The BitLocker Network Unlock optional feature can be installed in your environment.
  • A DHCP server is required and
  • A WDS Server is needed as well.
  • You must have a properly configured public/private key pairing.
  • Network Unlock Group Policy settings must be configured.

Configure Network Unlock in Windows

Network unlock uses MS-NKPU protocol encapsulated into DHCP packets”. To properly support DHCP within UEFI, the UEFI-based system should be in native mode and shouldn’t have a compatibility support module (CSM) enabled.

Step 1 – Install and Configure a DHCP Server

DHCP refers to Dynamic Host Configuration Protocol. Basically, it’s a mechanism that assigns IP addresses to computers dynamically. DHCP is a role (service) running on a server machine in the network in order to assign dynamic IP addresses to hosts. See this guide on how to configure DHCP Server option 60, 66, and 67 for WDS.

Note: If you have segmented your LAN/Network into VLANS, simply create other scopes as shown above for those VLANS then configure your router to get IPs’ from the DHCP Server accordingly.

Optional Step

I assumed you do not have a DHCP server. If you would like to create a DHCP Server via PowerShell, please follow the steps below. See how this can be done via the DHCP Manager “How to install DHCP on Windows Server 2019″. Ensure to run PowerShell as an Administrator.

Install-WindowsFeature DHCP -IncludeManagementTools
Screenshot of Windows PowerShell ISE displaying a script to install the DHCP feature with management tools, showing a success message and a warning about failed updates.

Since I am installing the DHCP Server in a domain environment, I have to perform the following steps to authorize the DHCP server to operate in the domain. See how this is done via the DHCP Management console “Perform Post-deployment of DHCP Server“.

Authorize the DHCP Server

To authorize the DHCP Server. Launch the Server Manager and you would see a flag as shown below.

Screenshot 2021 01 30 at 22.29.38

Click on it and complete the DHCP configuration.

Screenshot 2021 01 30 at 22.30.16

Skip the description window by clicking next and specify your desired credential and click on commit.

Screenshot of the DHCP Post-Install configuration wizard showing the authorization screen, with fields for user credentials and options to use alternate credentials or skip AD authorization.

Create a New scope and follow the prompts to complete it as described below. Please see BitLocker Drive Encryption architecture and implementation types on Windows.

Enter a “Scope Name” and “description” as shown below

- Input your start IP Address and end Address
- On the “Add Exclusion and Delay Page”, you can reserve some IPs’ in the range server if you have
- Enter the Default Gateway of the Subnet and activate the scope.
Screenshot of a DHCP management console showing the 'New Scope...' option being selected from the Action menu.

Step 2 – Install the WDS server role

As explained previously in this link, the BitLocker Network Unlock feature will install the WDS role if not already installed. If you decide to install it separately before you install BitLocker Network Unlock you can use ServerManager or Windows PowerShell.

To install the role using Server Manager, select the Windows Deployment Services role in Server Manager.

See this guide for more information on how to set up and install the WDS role and how to remove the WDS role via the GUI and PowerShell. For more information on WDS, see this link.

To install the role using Windows PowerShell, use the following command below. After installation, you do not necessarily have to configure WDS for Network Unlock to work.

Install-WindowsFeature WDS-Deployment
Screenshot 2021 01 28 at 17.09.30 1 1

Before proceeding to the next step, please ensure that the WDS service is running. As you can see below, the service is stopped and if you are having issues starting the WDS services, see this troubleshooting guide “An error occurred while trying to start the windows deployment services“.

Get-Service WDSServer
Screenshot of Windows PowerShell ISE displaying the output of the 'Get-Service WDSServer' command, showing the status of the Windows Deployment Services Server as 'Stopped' and 'Running'.

Here is a similar troubleshooting guide on WDS “The service could not be started either because it is disabled or because it has no enabled devices associated with it“.

Step 3 – Installing the Network Unlock Feature

Network Unlock is a Windows feature that can be installed via the Server Manager or Windows PowerShell cmdlets. In Server Manager, the feature name is BitLocker Network Unlock, and in Windows PowerShell, it is called “BitLocker-NetworkUnlock”.

In this guide, I will be using the command-line interface for these steps. To learn how to install Windows features via the GUI, please visit the following how-to article “How to install Telnet via the command line and GUI in Windows 10 and Windows Server”. To install the feature via Windows PowerShell, use the following command.

Install-WindowsFeature BitLocker-NetworkUnlock
Screenshot of Windows PowerShell ISE showing a script to install BitLocker Network Unlock feature, with an installation progress bar at 24%.

After the Feature is installed successfully, it should appear this way.

If you are interested in a Full Disk Encryption (FDE) solution with PBA, kindly see the following guide “How to download and install DriveLock” that I have tested. kindly take a look at this guide as well “Important DriveLock components to master.

Screenshot of Windows PowerShell ISE showing a command to install the BitLocker Network Unlock feature, with the output indicating success.

Step 4 – Create the Network Unlock certificate

The Network Unlock certificate is used to create Network Key Protectors and protects the information exchanged with the server to unlock the computer.

This step assumes you have a Certificate Authority, if you do not currently have this, kindly visit the following guide on how to set up and how to install and configure Active Directory Certificate Services (Microsoft Certification Authority). Also, see this guide on how to create a certificate template for BitLocker Network Unlock.

Note: Network Unlock can use imported certificates from an existing PKI infrastructure. If you have a CA already, please perform the following steps discussed below.
- Create a certification template,
- Installing the BitLocker Network Unlock component,
- Network Unlock Certificate Request. 

For other related content I have created around this topic, see these guides on how to request a certificate signing request in Windows using MMC and how to export a certificate in PFX format in Windows, and also the needed components to create a certificate signing request.

Step 5 – Create the Network Unlock certificate Request

It is worth noting again that the Network Unlock can use imported certificates from an existing public key infrastructure (PKI) or even a self-signed certificate. To create a certificate unlock, you must launch the WDS console described below.

On the WDS server, launch the MMC console or open Certificate Manager by using “certmgr.msc” to open the Current User snap-in.

Note: MMC offers a common framework in which various snap-ins can run so that you can manage several services by using a single interface.

Windows Run dialog box showing 'certmgr.msc' being typed, with an arrow pointing to the OK button.

Under Certificates, Current User, right-click Personal as shown below. Next, select All Tasks, and Request New Certificate.

Screenshot of the Windows Certificate Manager showing the 'Current User' section with options to find certificates, perform tasks, and request a new certificate.

This will open up the Certificate Enrollment wizard as shown below. Click on Next to continue

Certificate enrollment window indicating prerequisites for installing digital certificates, with a 'Next' button highlighted.

Now, Select Active Directory Enrollment Policy

Certificate enrollment window displaying options for selecting a certificate enrollment policy. It shows 'Active Directory Enrollment Policy' configured by the administrator, along with an Enrollment Policy ID. There are buttons for 'Properties', 'Add New', 'Next', and 'Cancel'.

Choose the certificate template

This is the certificate template that was created for Network Unlock on the domain controller. As you can see below, more information is required to enrol for this certificate. Click on the link to configure the settings

Screenshot of the Certificate Enrollment window showing various certificate types available for request, with 'BitLocker Network Unlock' selected and a warning indicating that more information is required to enroll.

This will open up the Certificate Properties.

Select the Subject Name and provide a friendly name value.

Screenshot 2021 01 30 at 13.21.27

Your friendly name should include information for the domain or organisational unit for the certificate.

Screenshot 2021 01 30 at 13.23.29

Next, select Enroll

Screenshot of a Certificate Enrollment window showing options to request different types of certificates, with 'BitLocker Network Unlock' selected and an 'Enroll' button highlighted.

Create on Finish to complete this step

Certificate enrollment results screen showing 'BitLocker Network Unlock' with status 'Enrollment pending' and a 'Finish' button

On the Certificate Authority Management console.

Screenshot 2021 01 30 at 18.42.22

You will have to approve as shown in the image below.

Screenshot 2021 01 30 at 18.42.31

To ensure the certificate appears in the Personal folder, just copy the certificate from the Certificate Enrolment Request to the Personal as shown below.

Screenshot of the Windows Certificate Manager showing 'Personal' certificates with focus on 'Certificate Enrollment Requests' and details for 'BitLocker Network Unlock'.

Step 6: Next, we will have to export the received certificate two times and because of this, I will be diving these steps into Part A and Part B. First, the public key certificate for Network Unlock and the other a public key with a private key for Network Unlock.

Here is an example of an FDE solution with PBA “how to download DriveLock software and install DriveLock” that I have tested. kindly take a look at this guide as well “Important DriveLock components to master.

Part A: Create a Public Key certificate for Network Unlock without exporting the private key

Please follow the below steps to do this. Right-click on the BitLocker Network Certificate, choose All Tasks and select Export as shown below.

Screenshot of the Certificate Manager in Windows, showing the 'Personal' certificates section with 'Certificates' highlighted. 'BitLocker Network Unlock' is displayed with an option menu open, and 'Export...' is indicated.

Click on Next on the Welcome to the Certificate Export Wizard.

Screenshot of the Certificate Export Wizard welcome page, with an arrow pointing to the 'Next' button.

Select No, do not export the private key because we only we take the DER format.

Certificate Export Wizard window showing the option to export the private key, with the 'No, do not export the private key' option selected and a 'Next' button at the bottom.

Select DER encoded binary X.509, and then finish exporting the certificate to a file.

Screenshot of the Certificate Export Wizard showing options for exporting certificates in various formats, with 'DER encoded binary X.509 (.CER)' selected and 'Next' button highlighted.

Enter the file a name, such as BitLocker-NetworkUnlock.cer and click on Next

Certificate Export Wizard screen showing the file name 'BitLocker\NetworkUnlock.cer' with a red arrow pointing at the 'Next' button.

Click on Finish to complete the task, and on the prompt, click on OK to have the Window close.

Screenshot 2021 01 30 at 21.12.26
Certificate exported

Also, see How to unlock a fixed drive protected by BitLocker via the Control Panel or Command Prompt in Windows, A guide to how Bitlocker Network Unlock works, and “Force BitLocker Recovery mode: How to unlock BitLocker Protected Drive“.

Part B – Export the public key with a private key for Network Unlock

We will follow the same steps as step 1 above but this time select Yes, and export the private key.

Screenshot of the Certificate Export Wizard with options to export a private key, featuring a highlighted 'Yes, export the private key' radio button and a 'Next' button at the bottom.

By default, the Personal Information Exchange – PKCS #12(.PFX) is selected. Ensure your set-up is similar to the image below.

Screenshot of the Certificate Export Wizard with options for exporting certificate file formats, including Personal Information Exchange (PKCS #12), checkboxes for including certificates in the certification path, deleting the private key, exporting extended properties, enabling certificate privacy, and a 'Next' button.

You will be requested to protect your private key for security reasons. This is the recommended best practice.

Screenshot of the Certificate Export Wizard showing password entry fields, options for group or user names, and an encryption method selection.

Enter a file you would like to export

Certificate Export Wizard displaying a field for entering the file name 'BitLocker-NetworkUnlock.pfx' with a 'Next' button below.

Finally, click on Finish to complete this setup, and on the prompt, click on OK to have the Window close.

Screenshot 2021 01 30 at 21.25.03
Screenshot 2021 01 30 at 21.25.10

Step 7 – Deploy the private key and certificate to the WDS server

Now that you’ve created the certificate and key, deploy them to the infrastructure to properly unlock systems. To deploy the certificates please follow the steps below. On the WDS server.

Open a new Microsoft Management Console (MMC) by using the Run dialog box

Windows Run dialog box with the text 'mmc' entered, and the OK button highlighted.


Accept the UAC control. for more UAC, please see the following link. And Afterward, the MMC console will open up.

Screenshot of a Windows Console application displaying the 'File' menu with 'Add/Remove Snap-in...' option highlighted and an arrow pointing to it.

Add the certificates snap-in. When you’re prompted, select the computer account and local computer.

Screenshot 2021 01 30 at 21.36.01
Screenshot 2021 01 30 at 21.35.14
Screenshot 2021 01 30 at 21.37.09

Finally, click on OK to

Dialog box for adding or removing snap-ins in a Windows management console, featuring available and selected snap-ins with an emphasis on the 'Certificates (Local Computer)' option and an 'OK' button.

Part 8: We will have to add the private key certificate to the BitLocker Drive Encryption Network Unlock store in the Local Computer console on the WDS server. To do this, Right-click Certificates (Local Computer).

BitLocker Drive Encryption Network Unlock, and Select All Tasks and then Import.

Screenshot of the Microsoft Management Console showing the BitLocker Drive Encryption Network Unlock section with options for importing certificates.

On the welcome to Certificate Import Wizard, click on Next

Screenshot of the Certificate Import Wizard interface, displaying a welcome message and options to select 'Current User' or 'Local Machine' for certificate storage, with a 'Next' button highlighted.

In the File to Import dialog box, choose the .pfx file that you created previously.

Screenshot 2021 01 30 at 21.43.45
File selection window in Windows showing the System32 directory with a highlighted BitLocker-NetworkUnlock.pfx file, and buttons for 'Cancel' and 'Open' for the Personal Information Exchange.

Click on Next to continue

Certificate Import Wizard interface showing the file path C:\Windows\System32\BitLocker-NetworkUnlock.pfx with a highlighted 'Next' button.

Enter the password that you used to create the .pfx file,

Screenshot of the Certificate Import Wizard, displaying a password entry field for private key protection, options for enabling strong protection, exportability, and virtualized-based security, with a 'Next' button highlighted.

Select to place the certificate in the BitLocker Drive Encryption Network Unlock certificate store.

Screenshot of the Certificate Import Wizard in Windows, showing options for selecting a certificate store with 'Place all certificates in the following store' highlighted and the 'Next' button at the bottom.

As you can see below, the import is successful

Screenshot 2021 01 30 at 21.52.30
Screenshot 2021 01 30 at 21.52.30
Screenshot 2021 01 30 at 21.52.30 1
Screenshot 2021 01 30 at 21.52.30 1

Part 9 – Configure Group Policy settings for Network Unlock

You will use Group Policy settings to deploy the public key certificate to computers that you want to be able to unlock by using the Network Unlock key.

For more information on Group Policy, please see the following guides “what is Group Policy Object and how can it be launched“, how to analyze group policies applied to a user and computer account, and for a comprehensive list of articles I have written on GPO, please visit the following link.

To create a new GPO with the minimum required parameters for network unlocking, fire up the Server Manager and click on Tool and Select Group Policy Management console as shown below.

Screenshot of the Windows Server Manager interface showing the Local Server section, with a menu highlighting various tools including Group Policy Management.

Usually, you will want to create a new Group Policy Object and Link it to your desired Domain, or Container as shown below.

Screenshot of the Group Policy Management interface showing a context menu with the 'New' option highlighted.

But Because I have created a Group Policy previously for BitLocker Disk Encryption, I will therefore be modifying that. To do this, I will select the Policy and right-click on it. If you are an experienced System Admin, this step should not be strange to you and select Edit.

Turn on BitLocker with TPM+PIN protectors on all domain-joined computers by linking the policy to an OU or Domain.

A screenshot of the Group Policy Management console displaying the domain structure with a highlighted BitLocker Group Policy Object (GPO) named 'TechDirectA BitLocker GPO' and a context menu open for editing options.

This will open up the Group Policy Management Editor. Navigate and find Group Policy settings for BitLocker in the following path below

Computer Configuration\Policies\Administrative Templates\Windows Components\BitLocker Drive Encryption

You will have to enable the policy Require additional authentication at startup, and then select Require startup PIN with TPM or Allow startup PIN with TPM.

Screenshot 2021 01 31 at 00.44.11 1
Screenshot 2021 01 30 at 23.27.56
Screenshot 2021 01 30 at 23.30.12

Part 10 – Enable the Group Policy setting that’s required to configure Network Unlock

You will need to configure the group policy setting on the domain controller to distribute this certificate to computers in your organization.

To do this, open Group Policy Management Console using the Server Manager or via “gpmc.msc“, it is the same thing and it will open up the Group Policy Management Console.

Windows Run dialog box displaying 'gpme.msc' in the Open field with the OK button highlighted.
Expand and navigate through the following path below.
Computer Configuration\Policies\Windows Settings\Security Settings\Public Key Policies

Click on BitLocker Drive Encryption Network Unlock Certificate in the context menu. Click on Add Network Unlock Certificate

Screenshot of the Group Policy Management Editor displaying the BitLocker Drive Encryption Network Unlock settings, highlighting the option to add a Network Unlock Certificate.

In the Add Network Unlock Certificate, click on Next as this is only informational.

Screen showing the 'Add Network Unlock Certificate Wizard' with instructions for designating a certificate for BitLocker encrypted volumes, featuring a 'Next' button highlighted with an arrow.

On the “Select Network Unlock Certificate” window, click o Browse Folders as shown below

Screenshot of the 'Add Network Unlock Certificate Wizard', showing options for selecting a network unlock certificate with highlighted 'Browse Folders' button.

Follow the steps and import the “.cer” file that you copied earlier in Step 6 (Part A) above. This is a Public Key certificate we created for Network Unlock without exporting the private key.

File dialog displaying the System32 directory with the 'BitLocker-NetworkUnlock.cer' file highlighted, ready to be opened.

When prompted, click on yes to install the certificate as shown below and click on Next to continue.

Screenshot 2021 01 31 at 00.06.20
Screenshot 2021 01 31 at 00.06.20
Screenshot 2021 01 31 at 00.07.26
Screenshot 2021 01 31 at 00.07.26

Finally, click on Finish to complete this step.

A screenshot of the 'Completing the Add Network Unlock Certificate Wizard' window, displaying a message of successful completion, a user labeled 'USER_UNKNOWN', and a button labeled 'Finish' highlighted with an arrow.

As you can see, the certificated has been successfully deployed needed to perform Network Unlock.

Screenshot of the Group Policy Management Editor displaying BitLocker Drive Encryption Network Unlock settings, including issued certificates and expiration date.

Run Group Policy update

Kindly perform a Group Policy update. See this guide for more information on GPUpdate Switches: GPUpdate vs GPUpdate force. Also, reboot the clients after you deploy the Group Policy.

Screenshot of a command prompt window displaying the output of the 'gpupdate /force' command, indicating successful updates for both computer and user policies.
The Network (Certificate Based) protector is added only after a reboot where the policy is enabled and a valid certificate is present in the FVE_NKP store.

Only one network unlock certificate can be available at a time. If you need a new certificate, delete the current certificate before you deploy a new one. The Network Unlock certificate is located in the following path below.

HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\SystemCertificates\FVE_NKP key on the client computer

Note: On Windows clients, ensure the first Network Adapter is configured to support DHCP and this adapter will be used for Network Unlock. This is because, if you have multiple adapters and you want to configure one without DHCP, such as for a lights-out management protocol.

The configuration is necessary because Network Unlock stops enumerating adapters when it reaches an adapter that has a DHCP port that has failed for any reason.

So if the first enumerated adapter doesn’t support DHCP, isn’t plugged into the network, or fails to report the availability of the DHCP port for any reason, then Network Unlock will fail. Here is an article on BitLocker Network Unlock FAQ.

I hope you found this blog post helpful on BitLocker PIN bypass: How to configure Network Unlock in Windows. If you have any questions, please let me know in the comment session.

5/5 - (1 vote)

Thank you for reading this post. Kindly share it with others.

  • Share on X (Opens in new window) X
  • Share on Reddit (Opens in new window) Reddit
  • Share on LinkedIn (Opens in new window) LinkedIn
  • Share on Facebook (Opens in new window) Facebook
  • Share on Pinterest (Opens in new window) Pinterest
  • Share on Tumblr (Opens in new window) Tumblr
  • Share on Telegram (Opens in new window) Telegram
  • Share on WhatsApp (Opens in new window) WhatsApp
  • Share on Mastodon (Opens in new window) Mastodon
  • Share on Bluesky (Opens in new window) Bluesky
  • Share on Threads (Opens in new window) Threads
  • Share on Nextdoor (Opens in new window) Nextdoor
Windows Server Tags:Bitlocker, BitLocker Network Unlock troubleshooting, BitLocker Status, BitLocker unlock, Certificate Templates, Certificates, configure BitLocker Network Unlock step by step, configure Network Unlock, deploy Network Unlock using WDS, enable Network Unlock Windows BitLocker, How to configure Network Unlock in Windows, how to enable BitLocker Network Unlock Windows Server, Network Unlock prerequisites Windows, Windows 10, Windows BitLocker bypass, Windows Network Unlock requirements TPM DHCP WDS, Windows Network Unlock setup, Windows Server 2016, Windows Server Network Unlock configuration

Post navigation

Previous Post: Create a certificate template for BitLocker Network Unlock
Next Post: MySQL Workbench could not connect to MySQL server

Related Posts

  • article 1280x720.192a2586
    Windows Deployment Services: How to setup and install WDS role Windows Server
  • SA
    How to Create Service Accounts, Organisation Units and Active Directory Security Groups Windows Server
  • Install Lets Encrypt Certificate on Windows with Certbot
    Install Lets Encrypt Certificate on Windows with Certbot Web Server
  • image 41
    INACCESSIBLE BOOT DEVICE: Fix Your PC ran into a problem and needs to restart Windows
  • mountedimagenotaccessible
    Unable to access the image: Make sure that the image path exist Windows
  • maxresdefault
    The following errors occurred attempting to join the domain: The specified domain either does not exist or could not be contacted Windows Server

More Related Articles

article 1280x720.192a2586 Windows Deployment Services: How to setup and install WDS role Windows Server
SA How to Create Service Accounts, Organisation Units and Active Directory Security Groups Windows Server
Install Lets Encrypt Certificate on Windows with Certbot Install Lets Encrypt Certificate on Windows with Certbot Web Server
image 41 INACCESSIBLE BOOT DEVICE: Fix Your PC ran into a problem and needs to restart Windows
mountedimagenotaccessible Unable to access the image: Make sure that the image path exist Windows
maxresdefault The following errors occurred attempting to join the domain: The specified domain either does not exist or could not be contacted Windows Server

Comments (8) on “How to configure Network Unlock in Windows”

  1. Avatar photo Heorhii says:
    02/06/2021 at 3:30 PM

    Hello. How can i use WDS server in other subnet if i have, for example, client in vlan 100, dhcp server in vlan 101 and WDS in vlan 102. On router i can config only one IP helper for vlan ( to dhcp). How can PC send dhcp request to WDS server after receiving IPV4 address? how does my computer know where WDS is? Thanks.

    Log in to Reply
    1. chris Christian says:
      02/06/2021 at 6:29 PM

      I think this guide might help you “WDS and DHCP deployment scenarios”: The clients will have to find WDS through option 66 and 67 set in DHCP: https://techdirectarchive.com/2020/05/26/wds-and-dhcp-deployment-scenarios-how-to-configure-dhcp-server-option-60-66-and-67-for-windows-deployment-services/

      Log in to Reply
      1. Avatar photo Heorhii says:
        03/06/2021 at 8:19 AM

        If I only need to use Network Unlock (not Network Boot) do I only need to configure Option 66?

      2. Avatar photo Heorhii says:
        03/06/2021 at 2:54 PM

        Also if i disable ipv6 on UEFI config, i don`t see any request to WDS server.
        Should i need some configure ip helper on IPv6?

      3. chris Christian says:
        03/06/2021 at 4:07 PM

        With DHCP Options or IP Helper configured, I am sure you can achieve this goal. Unfortunately, I haven’t tested with IPv6. Therefore, I cannot advise further.

      4. Avatar photo Heorhii says:
        03/06/2021 at 5:28 PM

        Can you give me dump wireshark (steps for network unlock)?
        When wds is on broadcast domain i see :
        1. Uefi get ipv4 ip address
        2. Send icmpv6 and dhcpv6 requests
        3. Wds reply
        4. It works great.

        But when my wds server in other network it doesn’t work.
        1. Uefi get ipv4 ip address
        2. Send ipv6 requests
        My wds server cannot see requests from PC
        I don’t see any ipv4 request (( i see only ipv6 icmpv6 and dhcpv6
        How can i use ipv4 requesting to wds server?
        georgiyyatskovskiy@gmail.com
        Thank

  2. Avatar photo Trooper says:
    12/06/2023 at 6:45 PM

    I got stuck on importing the certificate to the GPO. However, I do Group Policy on my domain controller. The cert was created on the WDS server. It states that it does not have a 2048 bit RSA encryption key. Any advice?

    Log in to Reply
    1. chris Christian says:
      12/06/2023 at 10:38 PM

      Hi, I would advise you to regenerate (create) a new certificate on the WDS server with a 2048-bit RSA encryption key. This should address the certificate import issue due to the required encryption standards 

      Log in to Reply

Leave a Reply Cancel reply

You must be logged in to post a comment.

Microsoft MVP

VEEAMLEGEND

vexpert-badge-stars-5

Virtual Background

GoogleNews

Categories

veeaam100

Veeam Vanguard

  • 05kvj2jzbpj1ugp4etb4gdf 19.fit scale.size 2698x1517 e1690630247655
    Various methods to launch the Event Viewer Windows Server
  • Implement Azure Bicep
    How to Deploy Azure Resources Using Azure Bicep Automation
  • Docker Volumes
    Create and Mount Volume to Docker Container Containers
  • image 10
    Change Visual Studio Code UI language JIRA|Confluence|Apps
  • screenshot 2020 04 07 at 02.14.53
    SSH and Telnet on Cisco ASA 5505: Quick Setup Guide Network | Monitoring
  • cookies9
    How to remove third-party cookies from Microsoft Edge Windows
  • zoom
    How to update Zoom Desktop Client on macOS Mac
  • trip wire feature
    How to install and configure Tripwire on Ubuntu Linux

Subscribe to Blog via Email

Enter your email address to subscribe to this blog and receive notifications of new posts by email.

Join 1,762 other subscribers
  • RSS - Posts
  • RSS - Comments
  • About
  • Authors
  • Write for us
  • Advertise with us
  • General Terms and Conditions
  • Privacy policy
  • Feedly
  • Telegram
  • Youtube
  • Facebook
  • Instagram
  • LinkedIn
  • Tumblr
  • Pinterest
  • Twitter
  • mastodon

Tags

Active Directory Azure Bitlocker Microsoft Windows PowerShell WDS Windows 10 Windows 11 Windows Deployment Services Windows Server 2016

Copyright © 2026 TechDirectArchive

Loading Comments...

You must be logged in to post a comment.