In my post from April on Making sure your Citrix Desktops are utilized in 35 lines of PoSH I mentioned I would be looking to expand the powershell script and I’ve added just a few lines of code to do that expantion.
The v1 version of the powershell script was able to grab all the desktops that were inactive for x amount of days (30 in my example) and emails the end user.
With this v1.1 release it will grab all the desktops that haven’t been used within x amount of days, notify the user and set the desktop to maintenance mode effectively making sure that the desktop can’t be used anymore. There’s an “if” statement added which will remove the desktop from the machine catalog if the desktop is older than 30 days and already in maintenance mode.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
<# .SYNOPSIS Gets all desktops that haven't been used within x amount of days (30 days is the default) and emails the end user. .DESCRIPTION Gets all desktops that haven't been used within x amount of days (30 days is the default) and emails the end user. .EXAMPLE PS C:\PSScript > .\desktop_ultil_v1.ps1 .INPUTS None. You cannot pipe objects to this script. .OUTPUTS No objects are output from this script. This script creates an email to the end user. .NOTES NAME: desktop_ultil_v1.1.ps1 VERSION: 1.1 AUTHOR: Kees Baggerman LASTEDIT: Aug 2017 #> # Setting the variables for this script $DDC = "" $cred = get-credential $adminmail = "" # Making sure the appropriate cmdlets are loaded, Microsoft RSAT and Citrix PoSH Cmdlets need to be installed Import-Module ActiveDirectory Add-PSSnapin Citrix* # Set current date minus 30 days $logonDate = (get-date).AddDays(-30) # Get all pre assigned desktops where the last login date is 30 days or longer $Desktops = Get-BrokerDesktop -maxrecordcount 5000 -adminaddress $DDC | Select-Object MachineName, HostedMachineName, AssociatedUserNames,LastConnectionTime | where-object {$_.LastConnectionTime -le $logonDate} # Loop through the results, fetch the corresponding email address of the user account and send out an email with a BCC to an additional email address foreach($Desktop in $Desktops){ $user = Get-ADUser $Desktop.AssociatedUserNames.Split("\")[1] -Properties * $ComputerName = $Desktop.HostedMachineName $MachineName = $Desktop.MachineName $body = “Your desktop ($ComputerName) will be deleted within 3 days” Send-MailMessage -To $user.EmailAddress -bcc $adminmail -from xd-admin@ltd.com -Subject 'Your Virtual Desktop will be deleted soon' -Body $body -BodyAsHtml -smtpserver smtp.office365.com -usessl -Credential $cred -Port 587 if(Get-BrokerMachine $MachineName | where-object {$_.InMaintenanceMode -eq "true"}) { remove-brokermachine -InputObject $MachineName- Force } else { Set-BrokerMachineMaintenanceMode -InputObject $MachineName $true } } |
As said before I had to use the Office 365 SMTP servers hence why you’d see the additional parameters for SSL, Creds and ports. This might be different for your own environment, also you need to make sure that the account you’re using to send the email has send-as rights for the alias you’re using for the -from parameter. This piece of script fetches all assigned desktops in a XD site, determines the last logon time and if it’s longer than 30 days it will collect the user assigned to the desktop all while utilizing posh cmdlets. Based on the user AD will be queried and the email address will be fetched to send out an email. So far, so good.. Result!
Kees Baggerman
Latest posts by Kees Baggerman (see all)
- Nutanix AHV and Citrix MCS: Adding a persistent disk via Powershell – v2 - November 19, 2019
- Recovering a Protection Domain snapshot to a VM - September 13, 2019
- Checking power settings on VMs using powershell - September 11, 2019
- Updated: VM Reporting Script for Nutanix with Powershell - July 3, 2019
- Updated (again!): VM Reporting Script for Nutanix AHV/vSphere with Powershell - June 17, 2019
[…] Catalogs > Maintenance – added link to CTP Kees Baggerman’s script to Make sure Citrix Desktops are utilized […]
[…] Baggerman has a script at Making sure your Citrix Desktops are utilized with Powershell v2 that does the […]
[…] Catalogs > Maintenance – added link to CTP Kees Baggerman’s script to Make sure Citrix Desktops are utilized […]
[…] Making sure your Citrix Desktops are utilized with Powershell v2 […]