We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hey Jakoby,
I haven't had the opportunity to build this yet but though this might come in handy for enumerating remote storage tools that may not be signed into.
# New Feature: Cloud Services Enumeration try { $cloudServices = Get-WmiObject Win32_Process | Where-Object { $_.Name -match 'Dropbox|OneDrive|GoogleDrive' } | Select-Object Name } catch { $cloudServices = "Error in detecting cloud services" }
Response:
PS C:\Users\User> $cloudServices Name ---- OneDrive.exe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hey Jakoby,
I haven't had the opportunity to build this yet but though this might come in handy for enumerating remote storage tools that may not be signed into.
Response:
The text was updated successfully, but these errors were encountered: