We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 82b6dd2 commit c725f60Copy full SHA for c725f60
Modules/CIPPCore/Private/Get-ExoOnlineStringBytes.ps1
@@ -4,7 +4,7 @@ function Get-ExoOnlineStringBytes {
4
# This exists because various exo cmdlets like to return a human readable string like "3.322 KB (3,402 bytes)" but not the raw bytes value
5
6
if ($SizeString -match '\(([0-9,]+) bytes\)') {
7
- return [int]($Matches[1] -replace ',','')
+ return [int64]($Matches[1] -replace ',','')
8
}
9
10
return 0
0 commit comments