Skip to content

Instantly share code, notes, and snippets.

@jborean93
Created March 18, 2025 21:15
Show Gist options
  • Save jborean93/6fdc85a519f3b7f8d428203804f85566 to your computer and use it in GitHub Desktop.
Save jborean93/6fdc85a519f3b7f8d428203804f85566 to your computer and use it in GitHub Desktop.
Ctypes call to GetDiskFreeSpaceExW
$k32 = New-CtypesLib Kernel32.dll
$free = $total = $totalFree = [int64]0
$res = $k32.SetLastError().GetDiskFreeSpaceExW(
$k32.MarshalAs('C:\', 'LPWStr'),
[ref]$free,
[ref]$total,
[ref]$totalFree)
if (-not $res) {
throw [System.ComponentModel.Win32Exception]::new($k32.LastError)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment