FSLogix profile storage space intimation to end user

Munaswamy, Mohan(GLOBAL-V) 11 Reputation points
2021-08-23T07:19:58.757+00:00

Hi Team,

We are using WVD with FSLogix profile solutions, and currently, we have a requirement, The User should get a notification about his profile space.
Example: As default user assigned 30GB, If 15 GB is utilized then the user should get a notification saying " You have used 15GB of your profile space. left with 15GB"

Azure Virtual Desktop
Azure Virtual Desktop
A Microsoft desktop and app virtualization service that runs on Azure. Previously known as Windows Virtual Desktop.
1,362 questions
FSLogix
FSLogix
A set of solutions that enhance, enable, and simplify non-persistent Windows computing environments and may also be used to create more portable computing sessions when using physical devices.
463 questions
0 comments No comments
{count} vote

3 answers

Sort by: Most helpful
  1. Munaswamy, Mohan(GLOBAL-V) 11 Reputation points
    2021-08-26T02:04:48.533+00:00

    Thank you for update Vipul,

    Do you have any feature plan to enable this feature using GPO (by adding feature in admx template). If not is it possible to sent information from Log analytics to end user?

    1 person found this answer helpful.
    0 comments No comments

  2. vipullag-MSFT 24,106 Reputation points Microsoft Employee
    2021-08-23T18:30:43.807+00:00

    @Munaswamy, Mohan(GLOBAL-V)

    Currently, there is no built in notification for your ask. However, the utilization is written to the FSLogix log file. You can use log analytics to collect the logs and create the required alerts.

    Hope this helps.

    Please 'Accept as answer' if it helped, so that it can help others in the community looking for help on similar topics.

    0 comments No comments

  3. EdisRR89 1 Reputation point
    2022-08-12T08:59:44.957+00:00

    So far I have figured out the only way other than using PS scripts to create an alert based on the HostPool informations.
    In the Log Analytic Workspace where the HP is sending the diagnostic you can run this, and then create alert based on the CodeSymbolic value which will be:

    ≤ErrorCode: 112.

    // Top 10 connection errors
    // Top 10 non-service-related connection errors by user count.
    // You can replace "UserName" in the query by "CorrelationId" to see how often the error has occurred.
    // The "CorrelationId" is uniquea for each connection attempt.
    // The flag on "ServiceError" helps to focus on issues that are more likely mitigated by administrative tasks.
    // Change the ActivityType based on the issues you are troubleshooting.
    WVDErrors
    | where TimeGenerated > ago(1h)
    | where ServiceError == "false"
    | where ActivityType == "Connection"
    | summarize UserCount = dcount(UserName) by CodeSymbolic, Message
    |project Message, UserCount, CodeSymbolic
    | sort by UserCount desc
    | top 10 by UserCount
    // Go to https://aka.ms/wvdgetstarted and review additional guidance for diagnostics in the How To section.
    // Our troubleshooting guidance has information on escalation paths.

    0 comments No comments