Skip to main content

64 Gb usb stick showing only 32gb to re-format to 64Gb


I had issue with my 64Gb USB stick showing only 32 GB and not allow me to format to 64Gb with disk management or file explorer. so I got to Diskpart to get this done.

What is Diskpart(Disk Partition Utility)?

Diskpart is a command-line utility used to manipulate disk partitions in windows Vistar, XP and windows server 2003 family. This tool enables you to manage objects (disks, partitions, or volumes) by using scripts or direct input at a command prompt.

DiskPart Command-Line Options


Formatting USB drive 

we will wiped up all in the usb drive including partition and re-initialized with full capacity of the usb.

1. Start  CMD with run as administrator.
2. type in diskpart


3. list disk
4. select disk 2


 make sure you selected correct one with asterisk mark(*) in front of disk before proceed to below steps.
5. clean
6. create partition primary
7. active
8. format fs=ntfs label="MyUSB" quick
9. assign
10. exit

Done.

Comments

Popular posts from this blog

How to configure LDAPS, LDAP over SSL, using CA Certificate Service on Domain Controller in Windows Server 2016

This post is to provide an instruction on how to set up LDAPS (LDAP over SSL) on Domain Controller using single-tier CA hierachy. Reasons for Enabling LDAPS By default, LDAP communications between client and server applications are not encrypted. This means that it would be possible to use a network monitoring device or software and view the communications traveling between LDAP client and server computers. This is especially problematic when an LDAP simple bind is used because credentials (username and password) is passed over the network unencrypted. This could quickly lead to the compromise of credentials.  Reasons for enabling Lightweight Directory Access Protocol (LDAP) over Secure Sockets Layer (SSL) / Transport Layer Security (TLS) also known as LDAPS include: Some applications authenticate with Active Directory Domain Services (AD DS) through simple BIND. As simple BIND exposes the users’ credentials in clear text, use of Kerberos is preferred. If simp...

Upgrade ESXi server 6.0 to 6.5 using ISO usb

Please note that this is tested with standalone ESXi server 6.0 to upgrade to 6.5. for vCenter users, vCenter 6.5 must be upgraded before upgrade each ESXi host. Preparation It is good idea for you to have a review on follow docs during preparation for the upgrade. 1.  VMware vSphere 6.5 Release notes 2.  KB article about VMware update sequence for vSphere 6.5 and compatible VMware product 3.  Important information before upgrading to vSphere 6.5 Prerequisite 1. Download VMWare vSphere Hypervisor (ESXi) offline bundle ISO file from  vmware download page . 2. Create USB stick with bootable ISO of ESXi 6.5 upgrade. => I am using  rufus tool  to create bootable USB stick. This is free software. How to do steps 1. Reboot ESXi server and change boot order to USB first 2. You will be directed to installation process. -> select disk with ESXi 6.9 installed on . ->  Select Upgrade option and OK -> Once it's done reboot syst...

Setting up AD LDS on Windows Server 2016

What Is Active Directory Lightweight Directory Services? Microsoft Active Directory Lightweight Directory Services (AD LDS) is an independent mode of Active Directory that provides dedicated directory services for applications. AD LDS is a mode of Active Directory that provides directory services for applications. AD LDS provides dedicated directory services for applications. It provides a data store and services for accessing the data store. It uses standard application programming interfaces (APIs) for accessing the application data. The APIs include those of Active Directory, Active Directory Service Interfaces, Lightweight Data Access Protocol, and System.DirectoryServices. AD LDS operates independently of Active Directory and independently of Active Directory domains or forests. It operates either as a standalone data store, or it operates with replication. Its independence enables local control and autonomy of directory services for specific applications. It al...