출처 : http://pantarei.tistory.com/918
1. dir 명령을 사용하면 사용가능한 용량이 나온다.
> dir | findstr 남음
2개 디렉터리 6,948,356,096 바이트 남음
2개 디렉터리 6,948,356,096 바이트 남음
2. 찾아보니 fsutil 이라는게 있다.
> fsutil volume diskfree E:
사용 가능한 공간(KB): 1119924224
전체 공간(KB): 20971528192
사용 가능한 빈 공간(KB): 1119924224
사용 가능한 공간(KB): 1119924224
전체 공간(KB): 20971528192
사용 가능한 빈 공간(KB): 1119924224
그래도 부족하다.
3. NTFAQ에 원하는 내용이 있다.
- df.vbs
Set oWMIService = GetObject("winmgmts:")
Set oLogicalDisks = oWMIService.InstancesOf("Win32_LogicalDisk")
'Wscript.Echo "Filesystem Size Used Available Use%"
Wscript.Echo "Filesystem Size Available"
For Each oLogicalDisk In oLogicalDisks
Wscript.Echo oLogicalDisk.DeviceID & " " & oLogicalDisk.Size & " " & oLogicalDisk.Freespace
Next
Set oLogicalDisks = Nothing
Set oWMIService = Nothing
Set oLogicalDisks = oWMIService.InstancesOf("Win32_LogicalDisk")
'Wscript.Echo "Filesystem Size Used Available Use%"
Wscript.Echo "Filesystem Size Available"
For Each oLogicalDisk In oLogicalDisks
Wscript.Echo oLogicalDisk.DeviceID & " " & oLogicalDisk.Size & " " & oLogicalDisk.Freespace
Next
Set oLogicalDisks = Nothing
Set oWMIService = Nothing
- df.bat
@echo off
CScript E:\bin\df.vbs //NoLogo
CScript E:\bin\df.vbs //NoLogo
> df
Filesystem Size Available
C: 20971528192 1120002048
D: 20971528192 16167817216
E: 38072369152 6948356096
F:
Filesystem Size Available
C: 20971528192 1120002048
D: 20971528192 16167817216
E: 38072369152 6948356096
F:
[todo] \t 로 제대로 정렬되게 할 것
'Windows' 카테고리의 다른 글
Raid Controller Driver 설치 ( 구 서버 ) (0) | 2013.05.08 |
---|---|
Install Windows Components from Command Line (0) | 2013.03.28 |
windows server 2008 제품군별 기능 차이 (0) | 2013.01.02 |
net advfirewall firewall 사용 방법 (0) | 2012.11.20 |
Windows Server 2008 Active directory 설치 실패 (0) | 2012.06.01 |