OneDriveHelpers.psd1
@{ RootModule = 'OneDriveHelpers.psm1' ModuleVersion = '1.0.2' GUID = 'e3b0c442-98fc-1c14-9afb-4c2b3f4f4f4f' Author = 'Robin Hu' CompanyName = 'Robin Hu' Copyright = '(c) 2025 Robin Hu. All rights reserved.' Description = 'Helper functions for OneDrive file/folder attributes and logging.' PowerShellVersion = '5.1' RequiredModules = @('InitHelpers') RequiredAssemblies= @() TypesToProcess = @() FormatsToProcess = @() ScriptsToProcess = @() FunctionsToExport = @( 'Resolve-FullPath', 'Test-OneDriveOnlineOnly', 'Invoke-AttribInternal', 'Set-OneDriveLocalAvailable', 'Clear-OneDriveLocalSpace', 'Wait-ForAttributeState_AttribOnly', 'Wait-OneDriveLocalAvailable', 'Wait-ClearOneDriveLocalSpace' ) CmdletsToExport = @() VariablesToExport = @() AliasesToExport = @() DscResourcesToExport = @() CompatiblePSEditions = @('Desktop','Core') HelpInfoURI = $null DefaultCommandPrefix = '' PrivateData = @{} } |