You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
gb conversion
About this tag
The gb conversion tag on WindowsForum.com covers discussions about converting disk space values from bytes to gigabytes (GB), particularly using Windows Management Instrumentation Command (WMIC) scripts. Users seek help formatting outputs like FreeSpace and Size into human-readable GB units, often for logical drives such as C:. Common challenges include parsing raw byte values from WMIC and applying conversion formulas to display results as whole numbers or with decimal precision. The tag is relevant for system administrators and power users automating disk space reporting in Windows environments.
Hi guys ,
I am trying to convert the Freespace and Size to GB format
using the script command :
WMIC LOGICALDISK GET Name,Size,Freespace /format:value
FreeSpace=61612036096
Name=C:
Size=87780155392
The result I desire is something like :
FreeSpace=61GB
Name=C:
Size=87GB
Can anyone help...